. */ /** * Doctrine_Task_LoadData * * @package Doctrine * @subpackage Task * @license http://www.opensource.org/licenses/lgpl-license.php LGPL * @link www.doctrine-project.org * @since 1.0 * @version $Revision: 2761 $ * @author Jonathan H. Wage */ class Doctrine_Task_LoadData extends Doctrine_Task { public $description = 'Load data from a yaml data fixture file.', $requiredArguments = array('data_fixtures_path' => 'Specify the complete path to load the yaml data fixtures files from.', 'models_path' => 'Specify path to your Doctrine_Record definitions.'), $optionalArguments = array('append' => 'Whether or not to append the data'); public function execute() { Doctrine_Core::loadModels($this->getArgument('models_path')); Doctrine_Core::loadData($this->getArgument('data_fixtures_path'), $this->getArgument('append', false)); $this->notify('Data was successfully loaded'); } }