Contao\Pagination::hasPrevious PHP 메소드

hasPrevious() 공개 메소드

Return true if the pagination menu has a "< previous" link
public hasPrevious ( ) : boolean
리턴 boolean True if the pagination menu has a "< previous" link
    public function hasPrevious()
    {
        return $this->intPage > 1 ? true : false;
    }