Show
Ignore:
Timestamp:
11/03/2007 05:11:03 AM (13 months ago)
Author:
Geert
Message:

Various updates:

  • directory setting in Pagination library allows you to set the path to the view folder that contains your pagination templates, defaults to 'pagination'
  • finished log.threshold functionality
  • other code clean ups
Files:
1 modified

Legend:

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

    r866 r968  
    44 * 
    55 * Options: 
    6  *  style          - Style name 
     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 
    79 *  items_per_page - Number of items in a page of results 
    810 */ 
    911$config = array 
    1012( 
     13        'directory'      => 'pagination', 
    1114        'style'          => 'classic', 
     15        'uri_segment'    => 3, 
    1216        'items_per_page' => 20 
    1317);