Contao\Pagination::hasNext PHP Méthode

hasNext() public méthode

Return true if the pagination menu has a "next >" link
public hasNext ( ) : boolean
Résultat boolean True if the pagination menu has a "next >" link
    public function hasNext()
    {
        return $this->intPage < $this->intTotalPages ? true : false;
    }