summaryrefslogtreecommitdiffstats
path: root/system/libraries/Pagination.php
diff options
context:
space:
mode:
authorDumk0 <dmitri.klimeko@gmail.com>2012-06-19 11:02:27 +0200
committerDumk0 <dmitri.klimeko@gmail.com>2012-06-19 11:02:27 +0200
commit9e5a9b55d6bd3588a35f42d62f76934b4a7582f4 (patch)
tree988a39ee3b9b2bc432f3ae24226c7b4118034643 /system/libraries/Pagination.php
parent16151c814b103b4cf67a5721028c493d9e2111e5 (diff)
Property values aligned into one vertical line
Diffstat (limited to 'system/libraries/Pagination.php')
-rw-r--r--system/libraries/Pagination.php34
1 files changed, 17 insertions, 17 deletions
diff --git a/system/libraries/Pagination.php b/system/libraries/Pagination.php
index 9a5a0bf62..5a4ca8f10 100644
--- a/system/libraries/Pagination.php
+++ b/system/libraries/Pagination.php
@@ -36,36 +36,36 @@
*/
class CI_Pagination {
- public $base_url = ''; // The page we are linking to
- public $prefix = ''; // A custom prefix added to the path.
- public $suffix = ''; // A custom suffix added to the path.
- public $total_rows = 0; // Total number of items (database results)
- public $per_page = 10; // Max number of items you want shown per page
- public $num_links = 2; // Number of "digit" links to show before/after the currently viewed page
- public $cur_page = 0; // The current page being viewed
- public $use_page_numbers = FALSE; // Use page number for segment instead of offset
- public $first_link = '&lsaquo; First';
- public $next_link = '&gt;';
- public $prev_link = '&lt;';
- public $last_link = 'Last &rsaquo;';
- public $uri_segment = 3;
+ public $base_url = ''; // The page we are linking to
+ public $prefix = ''; // A custom prefix added to the path.
+ public $suffix = ''; // A custom suffix added to the path.
+ public $total_rows = 0; // Total number of items (database results)
+ public $per_page = 10; // Max number of items you want shown per page
+ public $num_links = 2; // Number of "digit" links to show before/after the currently viewed page
+ public $cur_page = 0; // The current page being viewed
+ public $use_page_numbers = FALSE; // Use page number for segment instead of offset
+ public $first_link = '&lsaquo; First';
+ public $next_link = '&gt;';
+ public $prev_link = '&lt;';
+ public $last_link = 'Last &rsaquo;';
+ public $uri_segment = 3;
public $full_tag_open = '';
public $full_tag_close = '';
public $first_tag_open = '';
public $first_tag_close = '&nbsp;';
public $last_tag_open = '&nbsp;';
public $last_tag_close = '';
- public $first_url = ''; // Alternative URL for the First Page.
- public $cur_tag_open = '&nbsp;<strong>';
+ public $first_url = ''; // Alternative URL for the First Page.
+ public $cur_tag_open = '&nbsp;<strong>';
public $cur_tag_close = '</strong>';
public $next_tag_open = '&nbsp;';
public $next_tag_close = '&nbsp;';
public $prev_tag_open = '&nbsp;';
public $prev_tag_close = '';
- public $num_tag_open = '&nbsp;';
+ public $num_tag_open = '&nbsp;';
public $num_tag_close = '';
public $page_query_string = FALSE;
- public $query_string_segment = 'per_page';
+ public $query_string_segment = 'per_page';
public $display_pages = TRUE;
protected $_attributes = '';
protected $_link_types = array();