PDO4You\Pagination::setTotalOfPages PHP Method

setTotalOfPages() private static method

Sets the total number of pages
private static setTotalOfPages ( integer $limit )
$limit integer Limit of records
    private static function setTotalOfPages($limit)
    {
        self::$total_of_pages = ceil(self::$total_records / $limit);
    }