Contao\Pagination::hasFirst PHP Method

hasFirst() public method

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