Changeset 5318 for branches/1.1/lib/Doctrine/Import/Builder.php
- Timestamp:
- 12/19/08 15:44:54 (15 months ago)
- Files:
-
- 1 modified
-
branches/1.1/lib/Doctrine/Import/Builder.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
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()) {