Lines Matching refs:_start
62 var $_start = 0; // index of first user to be displayed variable in syntax_plugin_groupmanager
334 $this->_start = $_REQUEST['start'];
356 $this->_start = 0;
372 $this->_start = 0;
376 $this->_start -= $this->_pagesize;
379 $this->_start += $this->_pagesize;
382 $this->_start = $this->_user_total;
404 … $this->userlist = $this->_auth->retrieveUsers($this->_start, $this->_pagesize, $this->_filter);
415 …$renderer->doc .= "<p>" . sprintf($this->lang['summary'], $this->_start + 1, $this->_last, $this->…
568 … $renderer->doc .= "<input type=\"hidden\" name=\"start\" value=\"" . $this->_start . "\" />";
829 … $renderer->doc .= "<input type=\"hidden\" name=\"start\" value=\"" . $this->_start . "\" />";
904 if ($this->_start >= $this->_user_total) {
905 $this->_start = $this->_user_total - $this->_pagesize;
907 if ($this->_start < 0) $this->_start = 0;
909 $this->_last = min($this->_user_total, $this->_start + $this->_pagesize);
920 $buttons['start'] = $buttons['prev'] = ($this->_start == 0) ? $disabled : '';
926 …$buttons['last'] = $buttons['next'] = (($this->_start + $this->_pagesize) >= $this->_user_total) ?…