2011-04-17 06:07:31 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
class CakePlugin {
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Holds a list of all loaded plugins and their configuration
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
private static $_plugins = array();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Loads a plugin and optionally loads bootstrapping, routing files or loads a initialization function
|
|
|
|
*
|
|
|
|
* Examples:
|
|
|
|
*
|
|
|
|
* `CakePlugin::load('DebugKit')` will load the DebugKit plugin and will not load any bootstrap nor route files
|
|
|
|
* `CakePlugin::load('DebugKit', array('bootstrap' => true, 'routes' => true))` will load the bootstrap.php and routes.php files
|
|
|
|
* `CakePlugin::load('DebugKit', array('bootstrap' => false, 'routes' => true))` will load routes.php file but not bootstrap.php
|
|
|
|
* `CakePlugin::load('DebugKit', array('bootstrap' => array('config1', 'config2')))` will load config1.php and config2.php files
|
|
|
|
* `CakePlugin::load('DebugKit', array('bootstrap' => 'aCallableMethod'))` will run the aCallableMethod function to initialize it
|
|
|
|
*
|
|
|
|
* Bootstrap initialization functions can be expressed as a PHP callback type, including closures. Callbacks will receive two
|
|
|
|
* parameters (plugin name, plugin configuration)
|
|
|
|
*
|
|
|
|
* It is also possible to load multiple plugins at once. Examples:
|
2011-05-16 22:01:20 +00:00
|
|
|
*
|
2011-04-17 06:07:31 +00:00
|
|
|
* `CakePlugin::load(array('DebugKit', 'ApiGenerator'))` will load the DebugKit and ApiGenerator plugins
|
|
|
|
* `CakePlugin::load(array('DebugKit', 'ApiGenerator'), array('bootstrap' => true))` will load bootstrap file for both plugins
|
2011-05-16 22:01:20 +00:00
|
|
|
*
|
2011-04-17 06:07:31 +00:00
|
|
|
* {{{
|
|
|
|
* CakePlugin::load(array(
|
|
|
|
* 'DebugKit' => array('routes' => true),
|
|
|
|
* 'ApiGenerator'
|
|
|
|
* ), array('bootstrap' => true))
|
|
|
|
* }}}
|
2011-05-16 22:01:20 +00:00
|
|
|
*
|
2011-04-17 06:07:31 +00:00
|
|
|
* Will only load the bootstrap for ApiGenerator and only the routes for DebugKit
|
2011-05-16 22:01:20 +00:00
|
|
|
*
|
2011-04-17 06:07:31 +00:00
|
|
|
* @param mixed $plugin name of the plugin to be loaded in CamelCase format or array or plugins to load
|
|
|
|
* @param array $config configuration options for the plugin
|
|
|
|
* @throws MissingPluginException if the folder for the plugin to be loaded is not found
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public static function load($plugin, $config = array()) {
|
|
|
|
if (is_array($plugin)) {
|
|
|
|
foreach ($plugin as $name => $conf) {
|
|
|
|
list($name, $conf) = (is_numeric($name)) ? array($conf, $config) : array($name, $conf);
|
2011-04-26 05:26:19 +00:00
|
|
|
self::load($name, $conf);
|
2011-04-17 06:07:31 +00:00
|
|
|
}
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
$config += array('bootstrap' => false, 'routes' => false);
|
2011-04-26 05:26:19 +00:00
|
|
|
if (empty($config['path'])) {
|
2011-04-17 06:07:31 +00:00
|
|
|
foreach (App::path('plugins') as $path) {
|
2011-04-29 17:19:46 +00:00
|
|
|
if (is_dir($path . $plugin)) {
|
|
|
|
self::$_plugins[$plugin] = $config + array('path' => $path . $plugin . DS);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
//Backwards compatibility to make easier to migrate to 2.0
|
|
|
|
$underscored = Inflector::underscore($plugin);
|
2011-04-17 06:07:31 +00:00
|
|
|
if (is_dir($path . $underscored)) {
|
|
|
|
self::$_plugins[$plugin] = $config + array('path' => $path . $underscored . DS);
|
2011-04-29 17:19:46 +00:00
|
|
|
break;
|
2011-04-17 06:07:31 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
self::$_plugins[$plugin] = $config;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (empty(self::$_plugins[$plugin]['path'])) {
|
|
|
|
throw new MissingPluginException(array('plugin' => $plugin));
|
|
|
|
}
|
|
|
|
if (!empty(self::$_plugins[$plugin]['bootstrap'])) {
|
|
|
|
self::bootstrap($plugin);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-05-06 05:23:30 +00:00
|
|
|
/**
|
|
|
|
* Will load all the plugins located in the configured plugins folders
|
|
|
|
* If passed an options array, it will be used as a common default for all plugins to be loaded
|
|
|
|
* It is possible to set specific defaults for each plugins in the options array. Examples:
|
|
|
|
*
|
|
|
|
* {{{
|
|
|
|
* CakePlugin::loadAll(array(
|
|
|
|
* array('bootstrap' => true),
|
|
|
|
* 'DebugKit' => array('routes' => true),
|
|
|
|
* ))
|
|
|
|
* }}}
|
|
|
|
*
|
|
|
|
* The above example will load the bootstrap file for all plugins, but for DebugKit it will only load the routes file
|
|
|
|
* and will not look for any bootstrap script.
|
|
|
|
*
|
2011-05-16 22:01:20 +00:00
|
|
|
* @param array $options
|
2011-05-06 05:23:30 +00:00
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public function loadAll($options = array()) {
|
|
|
|
$plugins = App::objects('plugins');
|
|
|
|
foreach ($plugins as $p) {
|
2011-07-15 05:35:53 +00:00
|
|
|
$opts = isset($options[$p]) ? $options[$p] : null;
|
|
|
|
if ($opts === null && isset($options[0])) {
|
|
|
|
$opts = $options[0];
|
|
|
|
}
|
|
|
|
self::load($p, (array) $opts);
|
2011-05-06 05:23:30 +00:00
|
|
|
}
|
|
|
|
}
|
2011-04-17 06:07:31 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns the filesystem path for a plugin
|
|
|
|
*
|
|
|
|
* @param string $plugin name of the plugin in CamelCase format
|
|
|
|
* @return string path to the plugin folder
|
|
|
|
* @throws MissingPluginException if the folder for plugin was not found or plugin has not been loaded
|
|
|
|
*/
|
|
|
|
public static function path($plugin) {
|
2011-04-26 03:12:33 +00:00
|
|
|
if (empty(self::$_plugins[$plugin])) {
|
2011-04-17 06:07:31 +00:00
|
|
|
throw new MissingPluginException(array('plugin' => $plugin));
|
|
|
|
}
|
2011-04-26 03:12:33 +00:00
|
|
|
return self::$_plugins[$plugin]['path'];
|
2011-04-17 06:07:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Loads the bootstrapping files for a plugin, or calls the initialization setup in the configuration
|
|
|
|
*
|
|
|
|
* @param string $plugin name of the plugin
|
|
|
|
* @return mixed
|
|
|
|
* @see CakePlugin::load() for examples of bootstrap configuration
|
|
|
|
*/
|
|
|
|
public static function bootstrap($plugin) {
|
|
|
|
$config = self::$_plugins[$plugin];
|
|
|
|
if ($config['bootstrap'] === false) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
if (is_callable($config['bootstrap'])) {
|
|
|
|
return call_user_func_array($config['bootstrap'], array($plugin, $config));
|
|
|
|
}
|
|
|
|
|
|
|
|
$path = self::path($plugin);
|
2011-04-26 05:26:19 +00:00
|
|
|
if ($config['bootstrap'] === true) {
|
2011-05-13 08:06:45 +00:00
|
|
|
return include($path . 'Config' . DS . 'bootstrap.php');
|
2011-04-17 06:07:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
$bootstrap = (array)$config['bootstrap'];
|
|
|
|
foreach ($bootstrap as $file) {
|
2011-05-13 08:06:45 +00:00
|
|
|
include $path . 'Config' . DS . $file . '.php';
|
2011-04-17 06:07:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2011-05-23 02:20:56 +00:00
|
|
|
* Loads the routes file for a plugin, or all plugins configured to load their respective routes file
|
2011-04-17 06:07:31 +00:00
|
|
|
*
|
2011-05-23 02:20:56 +00:00
|
|
|
* @param string $plugin name of the plugin, if null will operate on all plugins having enabled the
|
|
|
|
* loading of routes files
|
2011-04-17 06:07:31 +00:00
|
|
|
* @return boolean
|
|
|
|
*/
|
2011-05-23 02:20:56 +00:00
|
|
|
public static function routes($plugin = null) {
|
|
|
|
if ($plugin === null) {
|
|
|
|
foreach (self::loaded() as $p) {
|
|
|
|
self::routes($p);
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
2011-04-17 06:07:31 +00:00
|
|
|
$config = self::$_plugins[$plugin];
|
|
|
|
if ($config['routes'] === false) {
|
|
|
|
return false;
|
|
|
|
}
|
2011-05-13 08:06:45 +00:00
|
|
|
return (bool) include self::path($plugin) . 'Config' . DS . 'routes.php';
|
2011-04-17 06:07:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2011-05-09 03:49:00 +00:00
|
|
|
* Retruns true if the plugin $plugin is already loaded
|
|
|
|
* If plugin is null, it will return a list of all loaded plugins
|
2011-04-17 06:07:31 +00:00
|
|
|
*
|
2011-05-09 03:49:00 +00:00
|
|
|
* @return mixed boolean true if $plugin is already loaded.
|
|
|
|
* If $plugin is null, returns a list of plugins that have been loaded
|
2011-04-17 06:07:31 +00:00
|
|
|
*/
|
2011-05-09 03:49:00 +00:00
|
|
|
public static function loaded($plugin = null) {
|
|
|
|
if ($plugin) {
|
|
|
|
return isset(self::$_plugins[$plugin]);
|
|
|
|
}
|
2011-05-16 22:01:20 +00:00
|
|
|
$return = array_keys(self::$_plugins);
|
|
|
|
sort($return);
|
|
|
|
return $return;
|
2011-04-17 06:07:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Forgets a loaded plugin or all of them if first parameter is null
|
|
|
|
*
|
|
|
|
* @param string $plugin name of the plugin to forget
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public static function unload($plugin = null) {
|
|
|
|
if (is_null($plugin)) {
|
|
|
|
self::$_plugins = array();
|
|
|
|
} else {
|
2011-04-26 05:26:19 +00:00
|
|
|
unset(self::$_plugins[$plugin]);
|
2011-04-17 06:07:31 +00:00
|
|
|
}
|
|
|
|
}
|
2011-05-16 22:01:20 +00:00
|
|
|
}
|