| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118 |
- <?php
- /**
- * CakePHP(tm) : Rapid Development Framework (http://cakephp.org)
- * Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
- *
- * Licensed under The MIT License
- * For full copyright and license information, please see the LICENSE.txt
- * Redistributions of files must retain the above copyright notice.
- *
- * @copyright Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
- * @link http://cakephp.org CakePHP(tm) Project
- * @since 3.0.0
- * @license http://www.opensource.org/licenses/mit-license.php MIT License
- */
- namespace Cake\Shell\Task;
- use Cake\Console\Shell;
- use Cake\Filesystem\File;
- /**
- * Task for loading plugins.
- *
- */
- class LoadTask extends Shell
- {
- /**
- * Path to the bootstrap file.
- *
- * @var string
- */
- public $bootstrap = null;
- /**
- * Execution method always used for tasks.
- *
- * @param string $plugin The plugin name.
- * @return bool if action passed.
- *
- */
- public function main($plugin = null)
- {
- $this->bootstrap = ROOT . DS . 'config' . DS . 'bootstrap.php';
- if (empty($plugin)) {
- $this->err('<error>You must provide a plugin name in CamelCase format.</error>');
- $this->err('To load an "Example" plugin, run <info>`cake plugin load Example`</info>.');
- return false;
- }
- $write = $this->_modifyBootstrap($plugin, $this->params['bootstrap'], $this->params['routes'], false);
- if ($write) {
- return true;
- }
- return false;
- }
- /**
- * Update the applications bootstrap.php file.
- *
- * @param string $plugin Name of plugin.
- * @param bool $hasBootstrap Whether or not bootstrap should be loaded.
- * @param bool $hasRoutes Whether or not routes should be loaded.
- * @param bool $hasAutoloader Whether or not there is an autoloader configured for
- * the plugin.
- * @return bool If modify passed.
- */
- protected function _modifyBootstrap($plugin, $hasBootstrap, $hasRoutes, $hasAutoloader)
- {
- $bootstrap = new File($this->bootstrap, false);
- $contents = $bootstrap->read();
- if (!preg_match("@\n\s*Plugin::loadAll@", $contents)) {
- $_autoload = $hasAutoloader ? null : "'autoload' => true, ";
- $_bootstrap = $hasBootstrap ? "'bootstrap' => true, " : "'bootstrap' => false, ";
- $_routes = $hasRoutes ? "'routes' => true" : "'routes' => false";
- $append = "\nPlugin::load('%s', [%s%s%s]);\n";
- $bootstrap->append(sprintf($append, $plugin, $_autoload, $_bootstrap, $_routes));
- $this->out('');
- $this->out(sprintf('%s modified', $this->bootstrap));
- return true;
- }
- return false;
- }
- /**
- * GetOptionParser method.
- *
- * @return \Cake\Console\ConsoleOptionParser
- */
- public function getOptionParser()
- {
- $parser = parent::getOptionParser();
- $parser->addOption('bootstrap', [
- 'short' => 'b',
- 'help' => 'Will load bootstrap.php from plugin.',
- 'boolean' => true,
- 'default' => false,
- ]);
- $parser->addOption('routes', [
- 'short' => 'r',
- 'help' => 'Will load routes.php from plugin.',
- 'boolean' => true,
- 'default' => false,
- ]);
- $parser->addArgument('plugin', [
- 'help' => 'Name of the plugin to load.',
- ]);
- return $parser;
- }
- }
|