本文整理匯總了PHP中Model_Table::count方法的典型用法代碼示例。如果您正苦於以下問題:PHP Model_Table::count方法的具體用法?PHP Model_Table::count怎麽用?PHP Model_Table::count使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類Model_Table
的用法示例。
在下文中一共展示了Model_Table::count方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: action_index
/**
* Действие для отображения списка таблиц результатов
*/
public function action_index()
{
// Пагинация
$config = array('pagination_url' => \URI::create('admin/competitions/tables/index'), 'total_items' => \Model_Table::count(), 'per_page' => 10, 'uri_segment' => 5);
$pagination = \Pagination::forge('tables_pagination', $config);
$data['pagination'] = $pagination->render();
// Извлечения данных из БД
$data['tables'] = \Model_Table::find('all', array('related' => 'season', 'order_by' => array('id' => 'DESC'), 'offset' => $pagination->offset, 'limit' => $pagination->per_page));
$this->template->content = \View::forge('competitions/tables/index', $data);
}