Lines Matching refs:this

13  * need to inherit from this class
25 if (array_key_exists($ID, $this->formCounter)) {
26 return $this->formCounter[$ID]++;
28 $this->formCounter[$ID] = 1;
36 if (array_key_exists($ID, $this->formCounter)) {
37 return $this->formCounter[$ID];
72 $this->Lexer->addSpecialPattern("\{\{tagfilter>.*?\}\}", $mode, 'plugin_tagfilter_filter');
82 return $this->getOpts($match);
91 * string 'ns' list only pages from this namespace,
100 $HtagfilterSyntax = $this->loadHelper('tagfilter_syntax');
101 $opts['id'] = $this->incrementFormCounter();
158 $HtagfilterSyntax = $this->loadHelper('tagfilter_syntax');
178 //build cache dependencies TODO check if this bruteforce method (adds just all pages of namespace as dependency) is proportional
220 $html = $this->htmlOutput($tagFilters, $allPageids, $preparedPages, $opt);
231 $this->htmlPrepareOutput($tagFilters, $allPageids, $preparedPages, $opt);
232 $renderer->doc .= $this->htmlFormOutput($tagFilters, $allPageids, $opt);
235 $includeHelper = $this->loadHelper('include');
260 $this->htmlPrepareOutput($tagFilters, $allPageids, $preparedPages, $opt);
262 $output = $this->htmlFormOutput($tagFilters, $allPageids, $opt)
263 . $this->htmlPagelistOutput($preparedPages, $opt);
271 $Htagfilter = $this->loadHelper('tagfilter');
302 $Htagfilter = $this->loadHelper('tagfilter');
340 'data-placeholder' => hsc($label . ' ' . $this->getLang('choose')),
345 $attrs['size'] = $this->getConf("DropDownList_size");
377 'data-placeholder' => hsc($label . ' ' . $this->getLang('choose')),
383 $attrs['size'] = $this->getConf("DropDownList_size");
413 $form->addElement(form_makeButton('button', '', $this->getLang('Delete filter'), ['onclick' => 'tagfilter_cleanform(' . $opt['id'] . ',true)']));
415 $form->addElement('<div class="tagfilter_count">' . $this->getLang('found_count') . ': ' . '<span class="tagfilter_count_number"></span></div>');
425 $HtagfilterSyntax = $this->loadHelper('tagfilter_syntax');