Changeset 5318
- Timestamp:
- 12/19/08 20:44:54 (7 months ago)
- Location:
- branches
- Files:
-
- 4 modified
-
1.0/lib/Doctrine/Import/Builder.php (modified) (1 diff)
-
1.0/lib/Doctrine/Import/Schema.php (modified) (2 diffs)
-
1.1/lib/Doctrine/Import/Builder.php (modified) (1 diff)
-
1.1/lib/Doctrine/Import/Schema.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
branches/1.0/lib/Doctrine/Import/Builder.php
r5145 r5318 1037 1037 // If is the package class then we need to make the path to the complete package 1038 1038 else if (isset($definition['is_package_class']) && $definition['is_package_class']) { 1039 $writePath = $packagesPath . DIRECTORY_SEPARATOR . $definition['package_path']; 1039 if (isset($definition['package_custom_path'])) { 1040 $writePath = $definition['package_custom_path']; 1041 } else { 1042 $writePath = $packagesPath . DIRECTORY_SEPARATOR . $definition['package_path']; 1043 } 1040 1044 1041 1045 if ($this->generateTableClasses()) { -
branches/1.0/lib/Doctrine/Import/Schema.php
r5234 r5318 84 84 'options', 85 85 'package', 86 'package_custom_path', 86 87 'inheritance', 87 88 'detect_relations', … … 314 315 'options', 315 316 'package', 317 'package_custom_path', 316 318 'inheritance', 317 319 'detect_relations'); -
branches/1.1/lib/Doctrine/Import/Builder.php
r5270 r5318 1149 1149 // If is the package class then we need to make the path to the complete package 1150 1150 else if (isset($definition['is_package_class']) && $definition['is_package_class']) { 1151 $writePath = $packagesPath . DIRECTORY_SEPARATOR . $definition['package_path']; 1151 if (isset($definition['package_custom_path'])) { 1152 $writePath = $definition['package_custom_path']; 1153 } else { 1154 $writePath = $packagesPath . DIRECTORY_SEPARATOR . $definition['package_path']; 1155 } 1152 1156 1153 1157 if ($this->generateTableClasses()) { -
branches/1.1/lib/Doctrine/Import/Schema.php
r5234 r5318 84 84 'options', 85 85 'package', 86 'package_custom_path', 86 87 'inheritance', 87 88 'detect_relations', … … 288 289 'options', 289 290 'package', 291 'package_custom_path', 290 292 'inheritance', 291 293 'detect_relations');