Extends
lithium\core\Object
Set and get method for page, in relation to limit, of which records to get
Parameters
- integer $page
Returns
integerSource
public function page($page = null) {
if ($page) {
$this->_config['page'] = $page = (intval($page) ?: 1);
$this->offset(($page - 1) * $this->_config['limit']);
return $this;
}
return $this->_config['page'];
}