1
1
Fork 0

more cleanup - start on ajax

This commit is contained in:
Mike Macgirvin 2010-07-19 22:52:31 -07:00
commit ba8da761e6
11 changed files with 104 additions and 20 deletions

View file

@ -96,9 +96,14 @@ class App {
$this->path = ltrim(trim($p),'/');
}
function get_path() {
return $this->path;
}
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'];