Show
Ignore:
Timestamp:
11/29/2007 04:46:21 PM (12 months ago)
Author:
PugFish
Message:

Converted most of config files

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/system/config/pagination.php

    r1230 r1325  
    11<?php defined('SYSPATH') or die('No direct access allowed.'); 
    22/** 
    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. 
    104 */ 
    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;