Contao\Pagination::hasFirst PHP Méthode

hasFirst() public méthode

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