blob: 5dc0e277fcce31b41d46c03e961699fbafb67ae9 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
|
<?php
/**
* UserFrosting (http://www.userfrosting.com)
*
* @link https://github.com/userfrosting/UserFrosting
* @license https://github.com/userfrosting/UserFrosting/blob/master/licenses/UserFrosting.md (MIT License)
*/
namespace UserFrosting\System\Bakery\Command;
use Symfony\Component\Console\Input\InputInterface;
use Symfony\Component\Console\Output\OutputInterface;
use Symfony\Component\Console\Input\InputArgument;
use Symfony\Component\Console\Input\InputOption;
use UserFrosting\System\Bakery\BaseCommand;
/**
* Bake command.
* Shortcut to run multiple commands at once
*
* @author Alex Weissman (https://alexanderweissman.com)
*/
class Bake extends BaseCommand
{
/**
* @var string Path to the build/ directory
*/
protected $buildPath;
/**
* @var String $ufArt The UserFrosting ASCII art.
*/
public $title = "
_ _ ______ _ _
| | | | | ___| | | (_)
| | | |___ ___ _ __| |_ _ __ ___ ___| |_ _ _ __ __ _
| | | / __|/ _ \ '__| _| '__/ _ \/ __| __| | '_ \ / _` |
| |_| \__ \ __/ | | | | | | (_) \__ \ |_| | | | | (_| |
\___/|___/\___|_| \_| |_| \___/|___/\__|_|_| |_|\__, |
__/ |
|___/";
/**
* {@inheritDoc}
*/
protected function configure()
{
$this->setName("bake")
->setDescription("UserFrosting installation command")
->setHelp("This command combine the <info>debug</info>, <info>migrate</info> and <info>build-assets</info> commands.");
}
/**
* {@inheritDoc}
*/
protected function execute(InputInterface $input, OutputInterface $output)
{
$this->io->writeln("<info>{$this->title}</info>");
$command = $this->getApplication()->find('setup');
$command->run($input, $output);
$command = $this->getApplication()->find('debug');
$command->run($input, $output);
$command = $this->getApplication()->find('migrate');
$command->run($input, $output);
$command = $this->getApplication()->find('create-admin');
$command->run($input, $output);
$command = $this->getApplication()->find('build-assets');
$command->run($input, $output);
$command = $this->getApplication()->find('clear-cache');
$command->run($input, $output);
}
}
|