mirror of
https://github.com/atlanticbiomedical/portal-legacy.git
synced 2025-07-02 01:47:28 -04:00
initial commit
This commit is contained in:
13
lib/symfony/vendor/propel-generator/templates/data/dtd/dataset.tpl
vendored
Executable file
13
lib/symfony/vendor/propel-generator/templates/data/dtd/dataset.tpl
vendored
Executable file
@ -0,0 +1,13 @@
|
||||
<!ELEMENT dataset (
|
||||
<?php
|
||||
$vc = 0;
|
||||
foreach($tables as $tbl) {
|
||||
if($vc++) {
|
||||
echo ",";
|
||||
}
|
||||
echo $tbl->getPhpName() ?>*<?php } ?>
|
||||
)>
|
||||
<!ATTLIST dataset
|
||||
name CDATA #REQUIRED
|
||||
>
|
||||
|
6
lib/symfony/vendor/propel-generator/templates/data/dtd/table.tpl
vendored
Executable file
6
lib/symfony/vendor/propel-generator/templates/data/dtd/table.tpl
vendored
Executable file
@ -0,0 +1,6 @@
|
||||
<!ELEMENT <?php echo $table->getPhpName() ?> EMPTY>
|
||||
<!ATTLIST <?php echo $table->getPhpName() ?>
|
||||
<?php foreach ($table->getColumns() as $col) { ?>
|
||||
<?php echo $col->getPhpName() ?> CDATA <?php if($col->isNotNull()) { ?>#REQUIRED<?php } else { ?>IMPLIED<?php } ?><?php } ?>
|
||||
>
|
||||
|
1
lib/symfony/vendor/propel-generator/templates/data/dump/bottom.tpl
vendored
Executable file
1
lib/symfony/vendor/propel-generator/templates/data/dump/bottom.tpl
vendored
Executable file
@ -0,0 +1 @@
|
||||
</dataset>
|
2
lib/symfony/vendor/propel-generator/templates/data/dump/row.tpl
vendored
Executable file
2
lib/symfony/vendor/propel-generator/templates/data/dump/row.tpl
vendored
Executable file
@ -0,0 +1,2 @@
|
||||
<?php echo $row ?>
|
||||
|
3
lib/symfony/vendor/propel-generator/templates/data/dump/top.tpl
vendored
Executable file
3
lib/symfony/vendor/propel-generator/templates/data/dump/top.tpl
vendored
Executable file
@ -0,0 +1,3 @@
|
||||
<?php echo '<' /* in case short_tags=On */ ?>?xml version="1.0" encoding="ISO-8859-1" standalone="no" ?>
|
||||
<!DOCTYPE dataset SYSTEM "file://<?php echo $project ?>-data.dtd">
|
||||
<dataset name="<?php echo $dataset ?>">
|
Reference in New Issue
Block a user