2017 © Pedro Peláez
 

kohana-module pagination

The kohana module for pagination

image

caojiabin/pagination

The kohana module for pagination

  • Thursday, November 30, 2017
  • by caojiabin2012
  • Repository
  • 1 Watchers
  • 1 Stars
  • 9 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 1 Versions
  • 13 % Grown

The README.md

kohana 3.3 pagination

安装

composer require "caojiabin/pagination"

使用admin模板,在config.php下添加pagination.php

<?php
defined('SYSPATH') or die('No direct script access.');

return array(

    // Application defaults
    'default' => array(
        'current_page'      => array('source' => 'query_string', 'key' => 'page'), // source: "query_string" or "route"
        'total_items'       => 0,
        'items_per_page'    => 20,
        'view'              => 'pagination/admin',
        'auto_hide'         => TRUE,
        'first_page_in_url' => FALSE,
    ),

);

The Versions

30/11 2017

dev-master

9999999-dev http://kohanaframework.org

The kohana module for pagination

  Sources   Download

BSD-3-Clause

The Requires

 

The Development Requires

by caojiabin

framework task kohana