Prado\Collections\TPagedList::nextPage PHP Method

nextPage() public method

Switches to the next page.
public nextPage ( ) : integer | boolean
return integer | boolean the new page index, false if next page is not available.
    public function nextPage()
    {
        return $this->gotoPage($this->_currentPageIndex + 1);
    }

Usage Example

Beispiel #1
0
 /**
  * Switches to the next page.
  * @return integer|boolean the new page index, false if next page is not availabe.
  */
 public function nextPage()
 {
     return $this->getIsNextPageAvailable() ? parent::nextPage() : false;
 }
All Usage Examples Of Prado\Collections\TPagedList::nextPage