1
|
|
|
<?php |
2
|
|
|
|
3
|
|
|
/* |
4
|
|
|
* This file is part of the Doctrine MongoDBBundle |
5
|
|
|
* |
6
|
|
|
* The code was originally distributed inside the Symfony framework. |
7
|
|
|
* |
8
|
|
|
* (c) Fabien Potencier <[email protected]> |
9
|
|
|
* (c) Doctrine Project |
10
|
|
|
* |
11
|
|
|
* For the full copyright and license information, please view the LICENSE |
12
|
|
|
* file that was distributed with this source code. |
13
|
|
|
*/ |
14
|
|
|
|
15
|
|
|
namespace Saxulum\DoctrineMongodbOdmCommands\Command; |
16
|
|
|
|
17
|
|
|
use Doctrine\ODM\MongoDB\Tools\Console\Command\Schema\CreateCommand; |
18
|
|
|
use Symfony\Component\Console\Input\InputInterface; |
19
|
|
|
use Symfony\Component\Console\Input\InputOption; |
20
|
|
|
use Symfony\Component\Console\Output\OutputInterface; |
21
|
|
|
|
22
|
|
|
/** |
23
|
|
|
* Command to create the database schema for a set of classes based on their |
24
|
|
|
* mappings. |
25
|
|
|
* |
26
|
|
|
* @author Justin Hileman <[email protected]> |
27
|
|
|
*/ |
28
|
|
|
class CreateSchemaDoctrineODMCommand extends CreateCommand |
29
|
|
|
{ |
30
|
|
|
protected function configure() |
31
|
|
|
{ |
32
|
|
|
parent::configure(); |
33
|
|
|
|
34
|
|
|
$this |
35
|
|
|
->setName('doctrine:mongodb:schema:create') |
36
|
|
|
->addOption('dm', null, InputOption::VALUE_REQUIRED, 'The document manager to use for this command.') |
37
|
|
|
->setHelp(<<<EOT |
38
|
|
|
The <info>doctrine:mongodb:schema:create</info> command creates the default document manager's schema: |
39
|
|
|
|
40
|
|
|
<info>./app/console doctrine:mongodb:schema:create</info> |
41
|
|
|
|
42
|
|
|
You can also optionally specify the name of a document manager to create the schema for: |
43
|
|
|
|
44
|
|
|
<info>./app/console doctrine:mongodb:schema:create --dm=default</info> |
45
|
|
|
EOT |
46
|
|
|
); |
47
|
|
|
} |
48
|
|
|
|
49
|
|
|
protected function execute(InputInterface $input, OutputInterface $output) |
50
|
|
|
{ |
51
|
|
|
DoctrineCommandHelper::setApplicationDocumentManager($this->getApplication(), $input->getOption('dm')); |
52
|
|
|
|
53
|
|
|
parent::execute($input, $output); |
54
|
|
|
} |
55
|
|
|
} |
56
|
|
|
|