Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
D
doctrine-dbal
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Tomáš Trávníček
doctrine-dbal
Commits
583d2765
Commit
583d2765
authored
Mar 19, 2010
by
jwage
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[2.0] Removing old unused files
parent
089b5dd8
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
0 additions
and
28 deletions
+0
-28
annotation.tpl.php
lib/Doctrine/ORM/Tools/Export/Driver/annotation.tpl.php
+0
-15
annotation_body.tpl.php
lib/Doctrine/ORM/Tools/Export/Driver/annotation_body.tpl.php
+0
-13
No files found.
lib/Doctrine/ORM/Tools/Export/Driver/annotation.tpl.php
deleted
100644 → 0
View file @
089b5dd8
[?php
<?php
if
(
$this
->
_hasNamespace
(
$metadata
))
:
?>
namespace
<?php
echo
$this
->
_getNamespace
(
$metadata
)
?>
;
<?php
endif
;
?>
<?php
if
(
$this
->
_extendsClass
())
:
?>
use
<?php
echo
$this
->
_getClassToExtendNamespace
()
?>
;
<?php
endif
;
?>
<?php
echo
$this
->
_getEntityAnnotation
(
$metadata
)
?>
class
<?php
echo
$this
->
_getClassName
(
$metadata
);
?><?php
if
(
$this
->
_extendsClass
())
:
?>
extends
<?php
echo
$this
->
_getClassToExtendName
()
?><?php
endif
;
?>
{
<?php
include
(
'annotation_body.tpl.php'
)
?>
}
\ No newline at end of file
lib/Doctrine/ORM/Tools/Export/Driver/annotation_body.tpl.php
deleted
100644 → 0
View file @
089b5dd8
<?php
foreach
(
$metadata
->
fieldMappings
as
$fieldMapping
)
:
?><?php
if
(
$this
->
_hasProperty
(
$fieldMapping
[
'fieldName'
],
$metadata
))
continue
;
?>
<?php
echo
$this
->
_getFieldMappingAnnotation
(
$fieldMapping
,
$metadata
)
.
"
\n
"
?>
<?php
echo
str_repeat
(
' '
,
$this
->
_numSpaces
)
?>
private $
<?php
echo
$fieldMapping
[
'fieldName'
]
?>
;
<?php
endforeach
?>
<?php
foreach
(
$metadata
->
associationMappings
as
$associationMapping
)
:
?><?php
if
(
$this
->
_hasProperty
(
$associationMapping
->
sourceFieldName
,
$metadata
))
continue
;
?>
<?php
echo
$this
->
_getAssociationMappingAnnotation
(
$associationMapping
,
$metadata
)
.
"
\n
"
?>
<?php
echo
str_repeat
(
' '
,
$this
->
_numSpaces
)
?>
private $
<?php
echo
$associationMapping
->
sourceFieldName
?><?php
if
(
$associationMapping
->
isManyToMany
())
:
?>
= array()
<?php
endif
;
?>
;
<?php
endforeach
;
?>
<?php
foreach
(
$this
->
_getMethods
(
$metadata
)
as
$method
)
:
?>
<?php
echo
$method
?>
<?php
endforeach
?>
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment