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