Lines Matching defs:start
31 protected $start = 0; // index of first user to be displayed
91 * @return int current start value for pageination
95 return $this->start;
137 $this->start = $INPUT->int('start', 0);
156 $this->start = 0;
173 case 'start':
174 $this->start = 0;
177 $this->start -= $this->pagesize;
180 $this->start += $this->pagesize;
183 $this->start = $this->users_total;
205 $user_list = $this->auth->retrieveUsers($this->start, $this->pagesize, $this->filter);
222 $this->start + 1,
295 echo '<button type="submit" name="fn[start]" ' . $page_buttons['start'] . '>' .
296 $this->lang['start'] . '</button>';
571 echo '<input type="hidden" name="start" value="' . $this->start . '" />';
979 if ($this->start >= $this->users_total) {
980 $this->start = $this->users_total - $this->pagesize;
982 if ($this->start < 0) $this->start = 0;
984 $this->last = min($this->users_total, $this->start + $this->pagesize);
998 $buttons['start'] = $buttons['prev'] = ($this->start == 0) ? $disabled : '';
1005 (($this->start + $this->pagesize) >= $this->users_total) ? $disabled : '';