Lines Matching refs:this

28  * need to inherit from this class
32 $this->Lexer->addSpecialPattern('<nspages[^>]*>', $aMode, 'plugin_nspages');
45 $return = $this->_getDefaultOptions();
78 optionParser::checkSimpleStringArgument($match, $return['textPages'], $this, 'textPages');
79 optionParser::checkSimpleStringArgument($match, $return['customTitle'], $this, 'customTitle');
80 optionParser::checkSimpleStringArgument($match, $return['sortByMetadata'], $this, 'sortByMetadata');
81 optionParser::checkSimpleStringArgument($match, $return['textNS'], $this, 'textNS');
82 optionParser::checkDictOrder($match, $return['dictOrder'], $this);
92 optionParser::checkGlobalExclude($this->getConf('global_exclude'), $return['excludedPages'], $return['excludedNS']);
96 optionParser::checkSimpleStringArgument($match, $return['defaultPicture'], $this, 'defaultPicture');
101 // Don't bother resolving or sanitizing now: it will be done at render-time in this mode
138 $this->_deactivateTheCacheIfNeeded($renderer);
147 $this->_denullifyLangOptions($data);
148 $this->_denullifyPictureOptions($data);
149 $printer = $this->_selectPrinter($mode, $renderer, $data);
157 // In this case $INFO is null so there is not much we can do,
169 if( ! $this->_isNamespaceUsable($data))
177 $fileHelper = new fileHelper($data, $this->getConf('custom_title_allow_list_metadata'));
180 if ( $this->_shouldPrintPagesAmongNamespaces($data) ){
185 $this->_print($printer, $data, $subnamespaces, $pages);
192 $data['textNS'] = $this->getLang('subcats');
196 $data['textPages'] = $this->getLang('pagesinthiscat');
202 $data['defaultPicture'] = $this->getConf('default_picture');
215 if(!$this->_shouldPrintPagesAmongNamespaces($data)) {
217 if ( $this->_shouldPrintTransition($data) ){
238 return new nspages_printerSimpleList($this, $mode, $renderer, $data);
240 return new nspages_printerSimpleList($this, $mode, $renderer, $data, true);
242 return new nspages_printerOneLine($this, $mode, $renderer, $data);
244 return new nspages_printerLineBreak($this, $mode, $renderer, $data);
246 return new nspages_printerPictures($this, $mode, $renderer, $data);
248 return new nspages_printerTree($this, $mode, $renderer, $data);
250 return new nspages_printerNice($this, $mode, $renderer, $data['nbCol'], $data['anchorName'], $data);
252 return new nspages_printerSimpleList($this, $mode, $renderer, $data);
256 if ($this->getConf('cache') == 1){