Subversion-Projekte lars-tiefland.php_share

Revision

Details | Letzte Änderung | Log anzeigen | RSS feed

Revision Autor Zeilennr. Zeile
1 lars 1
<?php
2
 
3
/*
4
 * This file is part of the symfony package.
5
 * (c) Fabien Potencier <fabien.potencier@symfony-project.com>
6
 * (c) Jonathan H. Wage <jonwage@gmail.com>
7
 *
8
 * For the full copyright and license information, please view the LICENSE
9
 * file that was distributed with this source code.
10
 */
11
 
12
require_once(dirname(__FILE__).'/sfDoctrineBaseTask.class.php');
13
 
14
/**
15
 * Inserts SQL for current model.
16
 *
17
 * @package    symfony
18
 * @subpackage doctrine
19
 * @author     Fabien Potencier <fabien.potencier@symfony-project.com>
20
 * @author     Jonathan H. Wage <jonwage@gmail.com>
21
 * @version    SVN: $Id: sfDoctrineGenerateMigrationsModelsTask.class.php 23922 2009-11-14 14:58:38Z fabien $
22
 */
23
class sfDoctrineGenerateMigrationsModelsTask extends sfDoctrineBaseTask
24
{
25
  /**
26
   * @see sfTask
27
   */
28
  protected function configure()
29
  {
30
    $this->addOptions(array(
31
      new sfCommandOption('application', null, sfCommandOption::PARAMETER_OPTIONAL, 'The application name', true),
32
      new sfCommandOption('env', null, sfCommandOption::PARAMETER_REQUIRED, 'The environment', 'dev'),
33
    ));
34
 
35
    $this->namespace = 'doctrine';
36
    $this->name = 'generate-migrations-models';
37
    $this->briefDescription = 'Generate migration classes from an existing set of models';
38
 
39
    $this->detailedDescription = <<<EOF
40
The [doctrine:generate-migrations-models|INFO] task generates migration classes
41
from an existing set of models:
42
 
43
  [./symfony doctrine:generate-migrations-models|INFO]
44
EOF;
45
  }
46
 
47
  /**
48
   * @see sfTask
49
   */
50
  protected function execute($arguments = array(), $options = array())
51
  {
52
    $databaseManager = new sfDatabaseManager($this->configuration);
53
    $config = $this->getCliConfig();
54
 
55
    $this->logSection('doctrine', 'generating migration classes from models');
56
 
57
    if (!is_dir($config['migrations_path']))
58
    {
59
      $this->getFilesystem()->mkdirs($config['migrations_path']);
60
    }
61
 
62
    $this->callDoctrineCli('generate-migrations-models');
63
  }
64
}