📄 adminplugincenteraction.class.php
字号:
<?php lt_include( PLOG_CLASS_PATH."class/action/admin/adminaction.class.php" ); lt_include( PLOG_CLASS_PATH."class/view/admin/admintemplatedview.class.php" ); lt_include( PLOG_CLASS_PATH."class/view/admin/adminerrorview.class.php" ); lt_include( PLOG_CLASS_PATH."class/plugin/pluginmanager.class.php" ); /** * \ingroup Action * @private * * Shows the list of plugins loaded. * * In the future it'll be possible to do more things from within the * "Plugin Center", but for now this is enough... Planned things: * <ul> * <li>per blog enable/disable plugin</li> * <li>add/remove plugins</li> * <li>I'll add more when I can think of more :)</li> * </ul> */ class AdminPluginCenterAction extends AdminAction { /** * Constructor. If nothing else, it also has to call the constructor of the parent * class, BlogAction with the same parameters */ function AdminPluginCenterAction( $actionInfo, $request ) { $this->AdminAction( $actionInfo, $request ); $this->requireAdminPermission( "view_plugins" ); } /** * Carries out the specified action */ function perform() { // initialize the plugin manager and load the plugins $pluginManager =& PluginManager::getPluginManager(); // check if the plugin manager is enabled or not, since if it's not // there is no point in this feature... if( !$pluginManager->isEnabled()) { $this->_view = new AdminErrorView( $this->_blogInfo ); $this->_view->setMessage( $this->_locale->tr("error_plugins_disabled")); $this->setCommonData(); return false; } // we need to get an array with the plugins $pluginManager->refreshPluginList(); $pluginManager->setBlogInfo( $this->_blogInfo ); $pluginManager->setUserInfo( $this->_userInfo ); $plugins = $pluginManager->getPlugins(); // create a view and put the plugin objects in the template $this->_view = new AdminTemplatedView( $this->_blogInfo, "plugincenter" ); $this->_view->setValue( "plugins", $plugins ); $this->setCommonData(); // better to return true if everything fine return true; } }?>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -