Lines Matching refs:this

25         $this->defaults['noheader']  = $this->getConf('noheader');
26 $this->defaults['firstsec'] = $this->getConf('firstseconly');
27 $this->defaults['editbtn'] = $this->getConf('showeditbtn');
28 $this->defaults['taglogos'] = $this->getConf('showtaglogos');
29 $this->defaults['footer'] = $this->getConf('showfooter');
30 $this->defaults['redirect'] = $this->getConf('doredirect');
31 $this->defaults['date'] = $this->getConf('showdate');
32 $this->defaults['mdate'] = $this->getConf('showmdate');
33 $this->defaults['user'] = $this->getConf('showuser');
34 $this->defaults['comments'] = $this->getConf('showcomments');
35 $this->defaults['linkbacks'] = $this->getConf('showlinkbacks');
36 $this->defaults['tags'] = $this->getConf('showtags');
37 $this->defaults['link'] = $this->getConf('showlink');
38 $this->defaults['permalink'] = $this->getConf('showpermalink');
39 $this->defaults['indent'] = $this->getConf('doindent');
40 $this->defaults['linkonly'] = $this->getConf('linkonly');
41 $this->defaults['title'] = $this->getConf('title');
42 $this->defaults['pageexists'] = $this->getConf('pageexists');
43 $this->defaults['parlink'] = $this->getConf('parlink');
44 $this->defaults['inline'] = false;
45 $this->defaults['order'] = $this->getConf('order');
46 $this->defaults['rsort'] = $this->getConf('rsort');
47 $this->defaults['depth'] = $this->getConf('depth');
48 $this->defaults['readmore'] = $this->getConf('readmore');
69 $flags = $this->defaults;
239 $this->includes[$key] = true; // legacy code for keeping compatibility with other plugins
275 $this->_convert_instructions($ins, $lvl, $page, $sect, $flags, $root_id, $included_pages);
298 $this->_get_section($ins, $sect); // section required
302 $this->_get_firstsec($ins, $page, $flags); // only first section
315 $this->adapt_links($ins, $page, $included_pages);
337 // get max level of this instructions set
353 $this->adapt_links($ins[$i][1][0], $page, $included_pages);
425 $this->_permalink($ins[$idx], $page, $sect, $flags);
464 $this->_editbtn($ins, $page, $sect, $sect_title, ($flags['redirect'] ? $root_id : false), $include_secid);
469 $ins[] = $this->_footer($page, $sect, $sect_title, $flags, $footer_lvl, $root_id);
497 if($lvl != 0 && $this->sec_close && !$flags['inline']) {
571 // this id is internal (i.e. absolute) now, add ':' to make resolve_id work again
592 // hopefully the hash is also unique in the including page (otherwise this might be the wrong link target)
596 // the include section ids are different from normal section ids (so they won't conflict) but this
669 * always (unless some plugin modifies this) around a header instruction this means that the last
713 if (!$this->taghelper)
714 $this->taghelper = plugin_load('helper', 'tag');
715 if(!$this->taghelper) {
716 msg('You have to install the tag plugin to use this functionality!', -1);
721 $pagearrays = $this->taghelper->getTopic('', null, $tag);
727 $page = $this->_apply_macro($page, $parent_id);
743 usort($pages, array($this, '_r_strnatcasecmp'));
776 uksort($ordered_pages, array($this, '_r_strnatcasecmp'));
798 * @return int Similar to other string comparison functions, this one returns < 0 if
819 $pages = array_merge($pages, $this->_get_included_pages($mode, $page, $sect, $parent_id, $flags));
845 $testpage = $this->_apply_macro(str_replace('@BROWSER_LANG@', $lang, $id), $parent_id);
866 // this function can be called from within pageinfo() in
924 '@BROWSER_LANG@' => $this->_get_language_of_wiki($id, $parent_id),