Changeset 1325 for trunk/system/config/pagination.php
- Timestamp:
- 11/29/2007 04:46:21 PM (12 months ago)
- Files:
-
- 1 modified
-
trunk/system/config/pagination.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/system/config/pagination.php
r1230 r1325 1 1 <?php defined('SYSPATH') or die('No direct access allowed.'); 2 2 /** 3 * File: Pagination 4 * 5 * Options: 6 * directory - Views folder in which your pagination style templates reside 7 * style - Style name (matches template filename) 8 * uri_segment - URI segment (or 'label') in which the current page number can be found 9 * items_per_page - Number of items in a page of results 3 * Views folder in which your pagination style templates reside. 10 4 */ 11 $config = array 12 ( 13 'directory' => 'pagination', 14 'style' => 'classic', 15 'uri_segment' => 3, 16 'items_per_page' => 20 17 ); 5 $config['directory'] = 'pagination'; 6 7 /** 8 * Style name (matches template filename). 9 */ 10 $config['style'] = 'classic'; 11 12 /** 13 * URI segment (or 'label') in which the current page number can be found. 14 */ 15 $config['uri_segment'] = 3; 16 17 /** 18 * Number of items in a page of results. 19 */ 20 $config['items_per_page'] = 20;
