Prado\Collections\TPagedList::nextPage PHP Метод

nextPage() публичный Метод

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

Usage Example

Пример #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