added pager

This commit is contained in:
Mike Macgirvin 2010-07-10 00:45:18 -07:00
parent cb54cda174
commit a4850cb3d7
3 changed files with 107 additions and 6 deletions

View File

@ -28,7 +28,7 @@ class App {
public $argv; public $argv;
public $argc; public $argc;
public $module; public $module;
public $pager;
private $scheme; private $scheme;
private $hostname; private $hostname;
private $path; private $path;
@ -38,6 +38,7 @@ class App {
$this->config = array(); $this->config = array();
$this->page = array(); $this->page = array();
$this->pager= array();
$this->scheme = ((isset($_SERVER['HTTPS']) $this->scheme = ((isset($_SERVER['HTTPS'])
&& ($_SERVER['HTTPS'])) ? 'https' : 'http' ); && ($_SERVER['HTTPS'])) ? 'https' : 'http' );
@ -49,9 +50,9 @@ class App {
if(substr($_SERVER['QUERY_STRING'],0,2) == "q=") if(substr($_SERVER['QUERY_STRING'],0,2) == "q=")
$_SERVER['QUERY_STRING'] = substr($_SERVER['QUERY_STRING'],2); $_SERVER['QUERY_STRING'] = substr($_SERVER['QUERY_STRING'],2);
// $this->cmd = trim($_SERVER['QUERY_STRING'],'/');
$this->cmd = trim($_GET['q'],'/'); $this->cmd = trim($_GET['q'],'/');
$this->argv = explode('/',$this->cmd); $this->argv = explode('/',$this->cmd);
$this->argc = count($this->argv); $this->argc = count($this->argv);
if((array_key_exists('0',$this->argv)) && strlen($this->argv[0])) { if((array_key_exists('0',$this->argv)) && strlen($this->argv[0])) {
@ -60,6 +61,10 @@ class App {
else { else {
$this->module = 'home'; $this->module = 'home';
} }
$this->pager['page'] = ((x($_GET,'page')) ? $_GET['page'] : 1);
$this->pager['itemspage'] = 50;
$this->pager['start'] = ($this->pager['page'] * $this->pager['itemspage']) - $this->pager['itemspage'];
$this->pager['total'] = 0;
} }
function get_baseurl($ssl = false) { function get_baseurl($ssl = false) {
@ -73,6 +78,15 @@ class App {
$this->path = ltrim(trim($p),'/'); $this->path = ltrim(trim($p),'/');
} }
function set_pager_total($n) {
$this->pager['total'] = intval($n);
}
function set_pager_itemspage($n) {
$this->pager['itemspage'] = intval($n);
$this->pager['start'] = ($this->pager['page'] * $this->pager['itemspage']) - $this->pager['itemspage'];
}
function init_pagehead() { function init_pagehead() {
if(file_exists("view/head.tpl")) if(file_exists("view/head.tpl"))
$s = file_get_contents("view/head.tpl"); $s = file_get_contents("view/head.tpl");
@ -358,3 +372,54 @@ function hex2bin($s) {
return(pack("H*",$s)); return(pack("H*",$s));
} }
function paginate(&$a) {
$o = '';
$stripped = ereg_replace("(&page=[0-9]*)","",$_SERVER['QUERY_STRING']);
$stripped = str_replace('q=','',$stripped);
$stripped = trim($stripped,'/');
$url = $a->get_baseurl() . '/' . $stripped;
if($a->pager['total'] > $a->pager['itemspage']) {
$o .= '<div class="pager">';
if($a->pager['page'] != 1)
$o .= '<span class="pager_prev">'."<a href=\"$url".'&page='.($a->pager['page'] - 1).'">prev</a></span> ';
$o .= "<span class=\"pager_first\"><a href=\"$url"."&page=1\">first</a></span> ";
$numpages = $a->pager['total'] / $a->pager['itemspage'];
$numstart = 1;
$numstop = $numpages;
if($numpages > 14) {
$numstart = (($pagenum > 7) ? ($pagenum - 7) : 1);
$numstop = (($pagenum > ($numpages - 7)) ? $numpages : ($numstart + 14));
}
for($i = $numstart; $i <= $numstop; $i++){
if($i == $pagenum)
$o .= '<span class="pager_current">'.(($i < 10) ? '&nbsp;'.$i : $i);
else
$o .= "<span class=\"pager_n\"><a href=\"$url"."&page=$i\">".(($i < 10) ? '&nbsp;'.$i : $i)."</a>";
$o .= '</span> ';
}
if(($a->pager['total'] % $a->pager['itemspage']) != 0) {
if($i == $a->pager['page'])
$o .= '<span class="pager_current">'.(($i < 10) ? '&nbsp;'.$i : $i);
else
$o .= "<span class=\"pager_n\"><a href=\"$url"."&page=$i\">".(($i < 10) ? '&nbsp;'.$i : $i)."</a>";
$o .= '</span> ';
}
$lastpage = (($numpages > intval($numpages)) ? intval($numpages)+1 : $numpages);
$o .= "<span class=\"pager_last\"><a href=\"$url"."&page=$lastpage\">last</a></span> ";
if(($a->pager['total'] - ($a->pager['itemspage'] * $a->pager['page'])) > 0)
$o .= '<span class="pager_next">'."<a href=\"$url"."&page=".($a->pager['page'] + 1).'">next</a></span>';
$o .= '</div>'."\r\n";
}
return $o;
}

View File

@ -1,8 +1,10 @@
<?php <?php
function directory_init(&$a) {
$a->set_pager_itemspage(60);
}
function directory_content(&$a) { function directory_content(&$a) {
dbg(2);
$search = ((x($_GET,'search')) ? notags(trim($_GET['search'])) : ''); $search = ((x($_GET,'search')) ? notags(trim($_GET['search'])) : '');
$tpl .= file_get_contents('view/directory_header.tpl'); $tpl .= file_get_contents('view/directory_header.tpl');
@ -16,7 +18,17 @@ function directory_content(&$a) {
$search = dbesc($search); $search = dbesc($search);
$sql_extra = ((strlen($search)) ? " AND MATCH (`profile`.`name`, `user`.`nickname`, `locality`,`region`,`country-name`,`gender`,`marital`,`sexual`,`about`,`romance`,`employer`,`school`) AGAINST ('$search' IN BOOLEAN MODE) " : ""); $sql_extra = ((strlen($search)) ? " AND MATCH (`profile`.`name`, `user`.`nickname`, `locality`,`region`,`country-name`,`gender`,`marital`,`sexual`,`about`,`romance`,`employer`,`school`) AGAINST ('$search' IN BOOLEAN MODE) " : "");
$r = q("SELECT `profile`.*, `profile`.`uid` AS `profile_uid`, `user`.`nickname`, `user`.`timezone` FROM `profile` LEFT JOIN `user` ON `user`.`uid` = `profile`.`uid` WHERE `is-default` = 1 AND `publish` = 1 $sql_extra ORDER BY `name` ASC");
$r = q("SELECT COUNT(*) AS `total` FROM `profile` LEFT JOIN `user` ON `user`.`uid` = `profile`.`uid` WHERE `is-default` = 1 AND `publish` = 1 AND `user`.`blocked` = 0 $sql_extra ");
if(count($r))
$a->set_pager_total($r[0]['total']);
$r = q("SELECT `profile`.*, `profile`.`uid` AS `profile_uid`, `user`.`nickname`, `user`.`timezone` FROM `profile` LEFT JOIN `user` ON `user`.`uid` = `profile`.`uid` WHERE `is-default` = 1 AND `publish` = 1 AND `user`.`blocked` = 0 $sql_extra ORDER BY `name` ASC LIMIT %d , %d ",
intval($a->pager['start']),
intval($a->pager['itemspage'])
);
if(count($r)) { if(count($r)) {
$tpl = file_get_contents('view/directory_item.tpl'); $tpl = file_get_contents('view/directory_item.tpl');
@ -62,6 +74,8 @@ function directory_content(&$a) {
} }
$o .= "<div class=\"directory-end\" ></div>\r\n"; $o .= "<div class=\"directory-end\" ></div>\r\n";
$o .= paginate($a);
} }
else else
notice("No entries (some entries may be hidden)."); notice("No entries (some entries may be hidden).");

View File

@ -499,4 +499,26 @@ input#dfrn-url {
#directory-search-end { #directory-search-end {
clear: both; clear: both;
} }
.pager {
padding: 10px;
text-align: center;
font-size: 1.0em;
}
.pager_first,
.pager_last,
.pager_prev,
.pager_next,
.pager_n {
border: 1px solid black;
background: #EEE;
padding: 4px;
}
.pager_current {
border: 1px solid black;
background: #E33;
padding: 4px;
}