/var/www/vhosts/ihelp.ro/httpdocs/vendor/cakephp/cakephp/src/Command
NameSizeModeActions
CacheClearallCommand.php21310644editdlrm
CacheClearCommand.php32160644editdlrm
CacheListCommand.php20050644editdlrm
Command.php20990644editdlrm
CompletionCommand.php93970644editdlrm
I18nCommand.php29170644editdlrm
I18nExtractCommand.php299950644editdlrm
I18nInitCommand.php36500644editdlrm
PluginAssetsCopyCommand.php24980644editdlrm
PluginAssetsRemoveCommand.php24290644editdlrm
PluginAssetsSymlinkCommand.php26170644editdlrm
PluginAssetsTrait.php71670644editdlrm
PluginLoadCommand.php44100644editdlrm
PluginLoadedCommand.php18020644editdlrm
PluginUnloadCommand.php33050644editdlrm
RoutesCheckCommand.php32340644editdlrm
RoutesCommand.php47590644editdlrm
RoutesGenerateCommand.php30790644editdlrm
SchemacacheBuildCommand.php28760644editdlrm
SchemacacheClearCommand.php28760644editdlrm
ServerCommand.php53520644editdlrm
VersionCommand.php11880644editdlrm
Edit: /var/www/vhosts/ihelp.ro/httpdocs/vendor/cakephp/cakephp/src/Command/PluginUnloadCommand.php (3305B)
getArgument('plugin'); if (!$plugin) { $io->err('You must provide a plugin name in CamelCase format.'); $io->err('To unload an "Example" plugin, run `cake plugin unload Example`.'); return static::CODE_ERROR; } $app = APP . 'Application.php'; if (file_exists($app) && $this->modifyApplication($app, $plugin)) { $io->out(''); $io->out(sprintf('%s modified', $app)); return static::CODE_SUCCESS; } return static::CODE_ERROR; } /** * Modify the application class. * * @param string $app Path to the application to update. * @param string $plugin Name of plugin. * @return bool If modify passed. */ protected function modifyApplication(string $app, string $plugin): bool { $plugin = preg_quote($plugin, '/'); $finder = "/ # whitespace and addPlugin call \s*\\\$this\-\>addPlugin\( # plugin name in quotes of any kind \s*['\"]{$plugin}['\"] # method arguments assuming a literal array with multiline args (\s*,[\s\\n]*\[(\\n.*|.*){0,5}\][\\n\s]*)? # closing paren of method \);/mx"; $content = file_get_contents($app); $newContent = preg_replace($finder, '', $content); if ($newContent === $content) { return false; } file_put_contents($app, $newContent); return true; } /** * Get the option parser. * * @param \Cake\Console\ConsoleOptionParser $parser The option parser to update * @return \Cake\Console\ConsoleOptionParser */ public function buildOptionParser(ConsoleOptionParser $parser): ConsoleOptionParser { $parser->setDescription([ 'Command for unloading plugins.', ]) ->addArgument('plugin', [ 'help' => 'Name of the plugin to unload.', ]); return $parser; } }