Changeset 6097
- Timestamp:
- 11/18/07 09:30:48 (1 year ago)
- Files:
-
- trunk/lib/plugins/sfPropelPlugin/lib/task/sfPropelGenerateCrudTask.class.php (modified) (1 diff)
- trunk/lib/plugins/sfPropelPlugin/lib/task/sfPropelInitAdminTask.class.php (modified) (1 diff)
- trunk/lib/plugins/sfPropelPlugin/lib/task/sfPropelInitCrudTask.class.php (modified) (1 diff)
- trunk/lib/task/generator/sfGenerateBatchTask.class.php (modified) (1 diff)
- trunk/lib/task/generator/sfGenerateControllerTask.class.php (modified) (1 diff)
- trunk/lib/task/generator/sfGenerateModuleTask.class.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/lib/plugins/sfPropelPlugin/lib/task/sfPropelGenerateCrudTask.class.php
r5504 r6097 77 77 78 78 $constants = array( 79 'PROJECT_NAME' => isset($properties[' name']) ? $properties['name'] : 'symfony',79 'PROJECT_NAME' => isset($properties['symfony']['name']) ? $properties['symfony']['name'] : 'symfony', 80 80 'APP_NAME' => $arguments['application'], 81 81 'MODULE_NAME' => $arguments['module'], 82 82 'MODEL_CLASS' => $arguments['model'], 83 'AUTHOR_NAME' => isset($properties[' author']) ? $properties['author'] : 'Your name here',83 'AUTHOR_NAME' => isset($properties['symfony']['author']) ? $properties['symfony']['author'] : 'Your name here', 84 84 ); 85 85 trunk/lib/plugins/sfPropelPlugin/lib/task/sfPropelInitAdminTask.class.php
r5504 r6097 64 64 65 65 $constants = array( 66 'PROJECT_NAME' => isset($properties[' name']) ? $properties['name'] : 'symfony',66 'PROJECT_NAME' => isset($properties['symfony']['name']) ? $properties['symfony']['name'] : 'symfony', 67 67 'APP_NAME' => $arguments['application'], 68 68 'MODULE_NAME' => $arguments['module'], 69 69 'MODEL_CLASS' => $arguments['model'], 70 'AUTHOR_NAME' => isset($properties[' author']) ? $properties['author'] : 'Your name here',70 'AUTHOR_NAME' => isset($properties['symfony']['author']) ? $properties['symfony']['author'] : 'Your name here', 71 71 'THEME' => $options['theme'], 72 72 ); trunk/lib/plugins/sfPropelPlugin/lib/task/sfPropelInitCrudTask.class.php
r5504 r6097 67 67 68 68 $constants = array( 69 'PROJECT_NAME' => isset($properties[' name']) ? $properties['name'] : 'symfony',69 'PROJECT_NAME' => isset($properties['symfony']['name']) ? $properties['symfony']['name'] : 'symfony', 70 70 'APP_NAME' => $arguments['application'], 71 71 'MODULE_NAME' => $arguments['module'], 72 72 'MODEL_CLASS' => $arguments['model'], 73 'AUTHOR_NAME' => isset($properties[' author']) ? $properties['author'] : 'Your name here',73 'AUTHOR_NAME' => isset($properties['symfony']['author']) ? $properties['symfony']['author'] : 'Your name here', 74 74 ); 75 75 trunk/lib/task/generator/sfGenerateBatchTask.class.php
r4743 r6097 77 77 78 78 $constants = array( 79 'PROJECT_NAME' => isset($properties[' name']) ? $properties['name'] : 'symfony',79 'PROJECT_NAME' => isset($properties['symfony']['name']) ? $properties['symfony']['name'] : 'symfony', 80 80 'APP_NAME' => $app, 81 81 'BATCH_NAME' => $batch, trunk/lib/task/generator/sfGenerateControllerTask.class.php
r4743 r6097 70 70 71 71 $constants = array( 72 'PROJECT_NAME' => isset($properties[' name']) ? $properties['name'] : 'symfony',72 'PROJECT_NAME' => isset($properties['symfony']['name']) ? $properties['symfony']['name'] : 'symfony', 73 73 'APP_NAME' => $app, 74 74 'CONTROLLER_NAME' => $controller, trunk/lib/task/generator/sfGenerateModuleTask.class.php
r4743 r6097 78 78 79 79 $constants = array( 80 'PROJECT_NAME' => isset($properties[' name']) ? $properties['name'] : 'symfony',80 'PROJECT_NAME' => isset($properties['symfony']['name']) ? $properties['symfony']['name'] : 'symfony', 81 81 'APP_NAME' => $app, 82 82 'MODULE_NAME' => $module, 83 'AUTHOR_NAME' => isset($properties[' author']) ? $properties['author'] : 'Your name here',83 'AUTHOR_NAME' => isset($properties['symfony']['author']) ? $properties['symfony']['author'] : 'Your name here', 84 84 ); 85 85