Lines Matching refs:this

16         if ($this->getConf('group_by_name')) {
18 …$this->private_ns = cleanID($this->getConf('users_namespace').':'.strtolower(substr($this->private…
21 … $this->private_ns = cleanID($this->getConf('users_namespace').':'. $this->privateNamespace());
24 return $this->private_page = $this->private_ns.':'.$this->privateStart();
34 if (strpos($this->getConf('public_pages_ns'),':%NAME%:%START%') !== false) {
35 $target = str_replace('%NAME%', $userLogin, $this->getConf('public_pages_ns'));
38 $target = $this->getConf('public_pages_ns').':'.$userLogin;
40 return $this->public_page = cleanID($target);
48 $pageId = $this->getPrivateID();
49 …$classes = 'class="'.$this->getLinkClasses($pageId, "uhp_private_".$this->getConf('userlink_icons'…
51 …dinas'].' <a href="'.wl($pageId).'" '.$classes.' rel="nofollow" title="'.$this->getLang('privatena…
53 …return '<a href="'.wl($pageId).'" '.$classes.' rel="nofollow" title="'.$this->getLang('privatename…
55 ….wl($pageId).'" '.$classes.' rel="nofollow" title="'.$this->getLang('privatenamespace').'">'.$this
64 $pageId = $this->getPublicID();
65 …$classes = 'class="'.$this->getLinkClasses($pageId, "uhp_public_".$this->getConf('userlink_icons')…
67 …dinas'].' <a href="'.wl($pageId).'" '.$classes.' rel="nofollow" title="'.$this->publicString().'">…
69 …return '<a href="'.wl($pageId).'" '.$classes.' rel="nofollow" title="'.$this->publicString().'">'.…
71 …href="'.wl($pageId).'" '.$classes.' rel="nofollow" title="'.$this->publicString().'">'.$this->publ…
79 $ret = $this->getConf('userlink_classes');
100 if ((page_exists($this->getPrivateID())) && (page_exists($this->getPublicID()))) {
102 …return '<li>'.$lang['loggedinas'].' '.$this->getPrivateLink($INFO['userinfo']['name']).' ('.$this-…
104 } elseif (page_exists($this->getPrivateID())) {
105 return $this->getPrivateLink("loggedinas");
107 } elseif (page_exists($this->getPublicID())) {
108 return $this->getPublicLink("loggedinas");
120 $publicID = $this->getPublicID($userLogin);
121 …$classes = 'class="'.$this->getLinkClasses($publicID, "uhp_public_".$this->getConf('userlink_icons…
122 …$result = '<a href="'.wl($publicID).'" '.$classes.' rel="nofollow" title="'.$this->publicString().…
170 $out .= $this->getAnyPublicLink($INFO['editor']);
178 $out .= $this->getAnyPublicLink($INFO['locked']);
194 …" method="post" action="doku.php?id='.$this->getPrivateID().'"><input class="button" type="submit"…
196 …w" method="post" action="doku.php?id='.$this->getPublicID().'"><input class="button" type="submit"…
208 if ($this->getConf('create_private_ns')) {
210 $return['private']['id'] = $this->getPrivateID();
211 $return['private']['title'] = $this->getLang('privatenamespace');
213 … $return['private']['classes'] = $this->getLinkClasses($this->getPrivateID(), null, $default);
216 if ($this->getConf('create_public_page')) {
218 $return['public']['id'] = $this->getPublicID();
219 $return['public']['title'] = $this->publicString();
221 … $return['public']['classes'] = $this->getLinkClasses($this->getPublicID(), null, $default);
228 if ($this->getConf('use_name_string')) {
240 if ( $this->getConf('use_start_page')) {
244 return $this->privateNamespace();
249 if (strpos($this->getConf('public_pages_ns'),':%NAME%:%START%') !== false) {
250 return $this->getLang('publicnamespace');
252 return $this->getLang('publicpage');