Home
last modified time | relevance | path

Searched refs:currentpage (Results 1 – 3 of 3) sorted by relevance

/plugin/blogtng/
H A Dadmin.php396 if($currentpage-1 > 0) $pages[] = $currentpage-1;
397 if($currentpage-2 > 0) $pages[] = $currentpage-2;
398 if($currentpage-3 > 0) $pages[] = $currentpage-3;
399 if($currentpage+1 < $lastpage) $pages[] = $currentpage+1;
400 if($currentpage+2 < $lastpage) $pages[] = $currentpage+2;
401 if($currentpage+3 < $lastpage) $pages[] = $currentpage+3;
408 if($currentpage > 1) {
409 … $this->htmlPaginationurl($query, ($currentpage - 2) * $limit, '&laquo;', $currentpage - 1);
417 if($page == $currentpage) {
425 if($currentpage < $lastpage) {
[all …]
/plugin/blogtng/helper/
H A Dentry.php318 $currentpage = floor($conf['offset']/$conf['limit'])+1;
322 $pages[] = $currentpage; // current always
330 if($currentpage-1 > 0) $pages[] = $currentpage-1;
331 if($currentpage-2 > 0) $pages[] = $currentpage-2;
332 if($currentpage-3 > 0) $pages[] = $currentpage-3;
333 if($currentpage+1 < $lastpage) $pages[] = $currentpage+1;
334 if($currentpage+2 < $lastpage) $pages[] = $currentpage+2;
335 if($currentpage+3 < $lastpage) $pages[] = $currentpage+3;
342 if($currentpage > 1){
354 if($page == $currentpage){
[all …]
/plugin/linkfix/
H A Dadmin.php135 * @param string $currentpage the page to rewrite
137 protected function updatepage($currentpage) { argument
138 $currentns = getNS($currentpage);
140 $text = rawWiki($currentpage);
146 $this->prnt($this->getLang('checking') . ' <b>' . hsc($currentpage) . "</b><br />");
206 saveWikiText($currentpage, $text, $this->getLang('summary'), true);