Blame | Letzte Änderung | Log anzeigen | RSS feed
<?php/** This file is part of the symfony package.* (c) 2004-2006 Fabien Potencier <fabien.potencier@symfony-project.com>** For the full copyright and license informationation, please view the LICENSE* file that was distributed with this source code.*/require_once(dirname(__FILE__).'/sfPropelBaseTask.class.php');/*** Create filter form classes for the current model.** @package symfony* @subpackage propel* @author Fabien Potencier <fabien.potencier@symfony-project.com>* @version SVN: $Id: sfPropelBuildFiltersTask.class.php 23927 2009-11-14 16:10:57Z fabien $*/class sfPropelBuildFiltersTask extends sfPropelBaseTask{/*** @see sfTask*/protected function configure(){$this->addOptions(array(new sfCommandOption('connection', null, sfCommandOption::PARAMETER_REQUIRED, 'The connection name', 'propel'),new sfCommandOption('model-dir-name', null, sfCommandOption::PARAMETER_REQUIRED, 'The model dir name', 'model'),new sfCommandOption('filter-dir-name', null, sfCommandOption::PARAMETER_REQUIRED, 'The filter form dir name', 'filter'),new sfCommandOption('application', null, sfCommandOption::PARAMETER_OPTIONAL, 'The application name', true),new sfCommandOption('generator-class', null, sfCommandOption::PARAMETER_REQUIRED, 'The generator class', 'sfPropelFormFilterGenerator'),));$this->namespace = 'propel';$this->name = 'build-filters';$this->briefDescription = 'Creates filter form classes for the current model';$this->detailedDescription = <<<EOFThe [propel:build-filters|INFO] task creates filter form classes from the schema:[./symfony propel:build-filters|INFO]The task read the schema information in [config/*schema.xml|COMMENT] and/or[config/*schema.yml|COMMENT] from the project and all installed plugins.The task use the [propel|COMMENT] connection as defined in [config/databases.yml|COMMENT].You can use another connection by using the [--connection|COMMENT] option:[./symfony propel:build-filters --connection="name"|INFO]The model filter form classes files are created in [lib/filter|COMMENT].This task never overrides custom classes in [lib/filter|COMMENT].It only replaces base classes generated in [lib/filter/base|COMMENT].EOF;}/*** @see sfTask*/protected function execute($arguments = array(), $options = array()){$this->logSection('propel', 'generating filter form classes');$generatorManager = new sfGeneratorManager($this->configuration);$generatorManager->generate($options['generator-class'], array('connection' => $options['connection'],'model_dir_name' => $options['model-dir-name'],'filter_dir_name' => $options['filter-dir-name'],));$properties = parse_ini_file(sfConfig::get('sf_config_dir').'/properties.ini', true);$constants = array('PROJECT_NAME' => isset($properties['symfony']['name']) ? $properties['symfony']['name'] : 'symfony','AUTHOR_NAME' => isset($properties['symfony']['author']) ? $properties['symfony']['author'] : 'Your name here');// customize php and yml files$finder = sfFinder::type('file')->name('*.php');$this->getFilesystem()->replaceTokens($finder->in(sfConfig::get('sf_lib_dir').'/filter/'), '##', '##', $constants);$this->reloadAutoload();}}