| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495 |
- <?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 unloading plugins.
- */
- class UnloadTask extends Shell
- {
- /**
- * Path to the bootstrap file.
- *
- * @var string
- */
- public $bootstrap = null;
- /**
- * Execution method always used for tasks.
- *
- * @param string|null $plugin The plugin name.
- * @return bool if action passed.
- */
- public function main($plugin = null)
- {
- $this->bootstrap = ROOT . DIRECTORY_SEPARATOR . 'config' . DIRECTORY_SEPARATOR . 'bootstrap.php';
- if (empty($plugin)) {
- $this->err('You must provide a plugin name in CamelCase format.');
- $this->err('To unload an "Example" plugin, run `cake plugin unload Example`.');
- return false;
- }
- return (bool)$this->_modifyBootstrap($plugin);
- }
- /**
- * Update the applications bootstrap.php file.
- *
- * @param string $plugin Name of plugin.
- * @return bool If modify passed.
- */
- protected function _modifyBootstrap($plugin)
- {
- $finder = "/\nPlugin::load\((.|.\n|\n\s\s|\n\t|)+'$plugin'(.|.\n|)+\);\n/";
- $bootstrap = new File($this->bootstrap, false);
- $contents = $bootstrap->read();
- if (!preg_match("@\n\s*Plugin::loadAll@", $contents)) {
- $contents = preg_replace($finder, "", $contents);
- $bootstrap->write($contents);
- $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->addArgument('plugin', [
- 'help' => 'Name of the plugin to load.',
- ]);
- return $parser;
- }
- }
|