Lines Matching defs:plugin
93 foreach ($plugins as $plugin) {
94 $this->plugins[$plugin] = plugin_load('helper', $plugin);
98 public function getPlugin($plugin)
100 if (plugin_isdisabled($plugin)) {
104 if (!isset($this->plugins[$plugin])) {
108 return $this->plugins[$plugin];
128 * Get the content to include from the tplinc plugin
140 if ($plugin = $this->getPlugin('tplinc')) {
141 $content = $plugin->renderIncludes($location);
1240 # FIX for Purplenumbers renderer plugin
2025 if (($plugin = plugin_load('admin', $INPUT->str('page'))) !== null) {
2026 if (method_exists($plugin, 'getMenuIcon')) {
2027 $svg_icon = $plugin->getMenuIcon();
2218 // try to load admin plugin TOC
2219 /** @var $plugin DokuWiki_Admin_Plugin */
2220 if ($plugin = plugin_getRequestAdminPlugin()) {
2221 $toc = $plugin->getTOC();