/var/www/vhosts/ihelp.ro/httpdocs/vendor/cakephp/cakephp/src/Core
NameSizeModeActions
Configure/-0755rm
Exception/-0755rm
Retry/-0755rm
TestSuite/-0755rm
App.php81780644editdlrm
BasePlugin.php65980644editdlrm
ClassLoader.php40020644editdlrm
composer.json12190644editdlrm
Configure.php165820644editdlrm
ConsoleApplicationInterface.php13020644editdlrm
Container.php8610644editdlrm
ContainerApplicationInterface.php15460644editdlrm
ContainerInterface.php11200644editdlrm
ConventionsTrait.php43530644editdlrm
functions.php116010644editdlrm
HttpApplicationInterface.php13550644editdlrm
InstanceConfigTrait.php81300644editdlrm
LICENSE.txt12040644editdlrm
ObjectRegistry.php127290644editdlrm
Plugin.php41240644editdlrm
PluginApplicationInterface.php25340644editdlrm
PluginCollection.php97400644editdlrm
PluginInterface.php37950644editdlrm
README.md11570644editdlrm
ServiceConfig.php15270644editdlrm
ServiceProvider.php41390644editdlrm
StaticConfigTrait.php98710644editdlrm
Edit: /var/www/vhosts/ihelp.ro/httpdocs/vendor/cakephp/cakephp/src/Core/PluginInterface.php (3795B)
*/ public const VALID_HOOKS = ['bootstrap', 'console', 'middleware', 'routes', 'services']; /** * Get the name of this plugin. * * @return string */ public function getName(): string; /** * Get the filesystem path to this plugin * * @return string */ public function getPath(): string; /** * Get the filesystem path to configuration for this plugin * * @return string */ public function getConfigPath(): string; /** * Get the filesystem path to configuration for this plugin * * @return string */ public function getClassPath(): string; /** * Get the filesystem path to templates for this plugin * * @return string */ public function getTemplatePath(): string; /** * Load all the application configuration and bootstrap logic. * * The default implementation of this method will include the `config/bootstrap.php` in the plugin if it exist. You * can override this method to replace that behavior. * * The host application is provided as an argument. This allows you to load additional * plugin dependencies, or attach events. * * @param \Cake\Core\PluginApplicationInterface $app The host application * @return void */ public function bootstrap(PluginApplicationInterface $app): void; /** * Add console commands for the plugin. * * @param \Cake\Console\CommandCollection $commands The command collection to update * @return \Cake\Console\CommandCollection */ public function console(CommandCollection $commands): CommandCollection; /** * Add middleware for the plugin. * * @param \Cake\Http\MiddlewareQueue $middlewareQueue The middleware queue to update. * @return \Cake\Http\MiddlewareQueue */ public function middleware(MiddlewareQueue $middlewareQueue): MiddlewareQueue; /** * Add routes for the plugin. * * The default implementation of this method will include the `config/routes.php` in the plugin if it exists. You * can override this method to replace that behavior. * * @param \Cake\Routing\RouteBuilder $routes The route builder to update. * @return void */ public function routes(RouteBuilder $routes): void; /** * Disables the named hook * * @param string $hook The hook to disable * @return $this */ public function disable(string $hook); /** * Enables the named hook * * @param string $hook The hook to disable * @return $this */ public function enable(string $hook); /** * Check if the named hook is enabled * * @param string $hook The hook to check * @return bool */ public function isEnabled(string $hook): bool; }