本文整理匯總了PHP中PluginManager::getPluginObjects方法的典型用法代碼示例。如果您正苦於以下問題:PHP PluginManager::getPluginObjects方法的具體用法?PHP PluginManager::getPluginObjects怎麽用?PHP PluginManager::getPluginObjects使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類PluginManager
的用法示例。
在下文中一共展示了PluginManager::getPluginObjects方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: admin
/**
* show list of plugins
*
* @return void
* @author Andy Bennett
*/
function admin()
{
$pm = new PluginManager();
$view = new View('plugins/index');
$view->set('plugins', $pm->getPluginObjects());
$copy = $view->render();
$this->render($copy);
}
示例2: edit
function edit()
{
$c = new Container($this->uri->segment(3, $_POST['container']));
// This includes deactivated plugins! They need to be filtered out
$pm = new PluginManager();
$all_plugins = $pm->getPluginObjects();
$container_plugins = $c->getPlugins();
/* print Kohana::debug($all_plugins);
print Kohana::debug($container_plugins);
// This returns only the instantiated objects
print Kohana::debug(array_intersect_key($all_plugins, $container_plugins));*/
$view = new View('containers_edit');
$view->container = $c;
objectSort($all_plugins, 'column');
$view->all_plugins = $all_plugins;
$view->plugin_instances = $container_plugins;
$copy = $view->render();
$this->render($copy);
}