Lines Matching defs:plugins
14 /** @var array loaded plugins */
15 protected $plugins = array(
51 * Load all the plugins we support directly
54 $this->plugins['sqlite'] = plugin_load('helper', 'sqlite');
55 if($this->plugins['sqlite']) {
56 $this->plugins['tagging'] = plugin_load('helper', 'tagging');
57 $this->plugins['magicmatcher'] = plugin_load('syntax', 'magicmatcher_issuelist');
59 $this->plugins['tplinc'] = plugin_load('helper', 'tplinc');
60 $this->plugins['sitemapnavi'] = plugin_load('helper', 'sitemapnavi');
87 if(!$this->plugins['tplinc']) return '';
88 $content = $this->plugins['tplinc']->renderIncludes($location);
97 if ($this->plugins['sitemapnavi'] === null) return;
123 if ($this->plugins['sitemapnavi'] !== null) {
136 $nav .= $this->plugins['sitemapnavi']->getSiteMap(':');
190 if($this->plugins['tagging']) {
194 'tab' => $this->plugins['tagging']->tpl_tags(false),
195 'count' => count($this->plugins['tagging']->findItems(array('pid' => $INFO['id']), 'tag')),
199 if ($this->plugins['magicmatcher']) {
203 'tab' => $this->plugins['magicmatcher']->getIssueListHTML(),
204 'count' => $this->plugins['magicmatcher']->getCountIssues(),