Lines Matching defs:start
30 protected $start = 0; // index of first user to be displayed
90 * @return int current start value for pageination
94 return $this->start;
136 $this->start = $INPUT->int('start', 0);
155 $this->start = 0;
172 case 'start':
173 $this->start = 0;
176 $this->start -= $this->pagesize;
179 $this->start += $this->pagesize;
182 $this->start = $this->users_total;
204 $user_list = $this->auth->retrieveUsers($this->start, $this->pagesize, $this->filter);
221 $this->start + 1,
294 echo '<button type="submit" name="fn[start]" ' . $page_buttons['start'] . '>' .
295 $this->lang['start'] . '</button>';
570 echo '<input type="hidden" name="start" value="' . $this->start . '" />';
978 if ($this->start >= $this->users_total) {
979 $this->start = $this->users_total - $this->pagesize;
981 if ($this->start < 0) $this->start = 0;
983 $this->last = min($this->users_total, $this->start + $this->pagesize);
997 $buttons['start'] = $buttons['prev'] = ($this->start == 0) ? $disabled : '';
1004 (($this->start + $this->pagesize) >= $this->users_total) ? $disabled : '';