Changeset 12537
- Timestamp:
- 11/01/08 15:43:27 (5 years ago)
- Files:
-
- plugins/sfPropelPlugin/trunk/lib/task/sfPropelBuildAllLoadTask.class.php (modified) (1 diff)
- plugins/sfPropelPlugin/trunk/lib/task/sfPropelBuildAllTask.class.php (modified) (1 diff)
- plugins/sfPropelPlugin/trunk/lib/task/sfPropelBuildFiltersTask.class.php (modified) (1 diff)
- plugins/sfPropelPlugin/trunk/lib/task/sfPropelBuildFormsTask.class.php (modified) (1 diff)
- plugins/sfPropelPlugin/trunk/lib/task/sfPropelDataDumpTask.class.php (modified) (1 diff)
- plugins/sfPropelPlugin/trunk/lib/task/sfPropelDataLoadTask.class.php (modified) (1 diff)
- plugins/sfPropelPlugin/trunk/lib/task/sfPropelInsertSqlTask.class.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
plugins/sfPropelPlugin/trunk/lib/task/sfPropelBuildAllLoadTask.class.php
r12317 r12537 27 27 { 28 28 $this->addOptions(array( 29 new sfCommandOption('application', null, sfCommandOption::PARAMETER_OPTIONAL, 'The application name', null),29 new sfCommandOption('application', null, sfCommandOption::PARAMETER_OPTIONAL, 'The application name', true), 30 30 new sfCommandOption('env', null, sfCommandOption::PARAMETER_REQUIRED, 'The environment', 'dev'), 31 31 new sfCommandOption('connection', null, sfCommandOption::PARAMETER_REQUIRED, 'The connection name', 'propel'), plugins/sfPropelPlugin/trunk/lib/task/sfPropelBuildAllTask.class.php
r12317 r12537 27 27 { 28 28 $this->addOptions(array( 29 new sfCommandOption('application', null, sfCommandOption::PARAMETER_OPTIONAL, 'The application name', null),29 new sfCommandOption('application', null, sfCommandOption::PARAMETER_OPTIONAL, 'The application name', true), 30 30 new sfCommandOption('env', null, sfCommandOption::PARAMETER_REQUIRED, 'The environment', 'dev'), 31 31 new sfCommandOption('connection', null, sfCommandOption::PARAMETER_REQUIRED, 'The connection name', 'propel'), plugins/sfPropelPlugin/trunk/lib/task/sfPropelBuildFiltersTask.class.php
r11675 r12537 30 30 new sfCommandOption('model-dir-name', null, sfCommandOption::PARAMETER_REQUIRED, 'The model dir name', 'model'), 31 31 new sfCommandOption('filter-dir-name', null, sfCommandOption::PARAMETER_REQUIRED, 'The filter form dir name', 'filter'), 32 new sfCommandOption('application', null, sfCommandOption::PARAMETER_OPTIONAL, 'The application name', true), 32 33 )); 33 34 plugins/sfPropelPlugin/trunk/lib/task/sfPropelBuildFormsTask.class.php
r10527 r12537 30 30 new sfCommandOption('model-dir-name', null, sfCommandOption::PARAMETER_REQUIRED, 'The model dir name', 'model'), 31 31 new sfCommandOption('form-dir-name', null, sfCommandOption::PARAMETER_REQUIRED, 'The form dir name', 'form'), 32 new sfCommandOption('application', null, sfCommandOption::PARAMETER_OPTIONAL, 'The application name', true), 32 33 )); 33 34 plugins/sfPropelPlugin/trunk/lib/task/sfPropelDataDumpTask.class.php
r11302 r12537 31 31 32 32 $this->addOptions(array( 33 new sfCommandOption('application', null, sfCommandOption::PARAMETER_OPTIONAL, 'The application name', null),33 new sfCommandOption('application', null, sfCommandOption::PARAMETER_OPTIONAL, 'The application name', true), 34 34 new sfCommandOption('env', null, sfCommandOption::PARAMETER_REQUIRED, 'The environement', 'cli'), 35 35 new sfCommandOption('connection', null, sfCommandOption::PARAMETER_REQUIRED, 'The connection name', 'propel'), plugins/sfPropelPlugin/trunk/lib/task/sfPropelDataLoadTask.class.php
r12151 r12537 27 27 { 28 28 $this->addOptions(array( 29 new sfCommandOption('application', null, sfCommandOption::PARAMETER_OPTIONAL, 'The application name', null),29 new sfCommandOption('application', null, sfCommandOption::PARAMETER_OPTIONAL, 'The application name', true), 30 30 new sfCommandOption('env', null, sfCommandOption::PARAMETER_REQUIRED, 'The environment', 'cli'), 31 31 new sfCommandOption('append', null, sfCommandOption::PARAMETER_NONE, 'Don\'t delete current data in the database'), plugins/sfPropelPlugin/trunk/lib/task/sfPropelInsertSqlTask.class.php
r12129 r12537 27 27 { 28 28 $this->addOptions(array( 29 new sfCommandOption('application', null, sfCommandOption::PARAMETER_OPTIONAL, 'The application name', null),29 new sfCommandOption('application', null, sfCommandOption::PARAMETER_OPTIONAL, 'The application name', true), 30 30 new sfCommandOption('env', null, sfCommandOption::PARAMETER_REQUIRED, 'The environment', 'cli'), 31 31 new sfCommandOption('connection', null, sfCommandOption::PARAMETER_REQUIRED, 'The connection name', null),