Skip to content

Instantly share code, notes, and snippets.

@emayk
Forked from yaranaio/pagination.php
Created July 19, 2012 08:05
Show Gist options
  • Save emayk/3141494 to your computer and use it in GitHub Desktop.
Save emayk/3141494 to your computer and use it in GitHub Desktop.
Twitter bootstrap was applied to the CodeIgniter Pagination
<?php
$config['first_link'] = false;
$config['next_link'] = '次へ >>';
$config['prev_link'] = '<< 前へ';
$config['last_link'] = false;
$config['full_tag_open'] = '<div class="pagination"><ul>';
$config['full_tag_close'] = '</ul></div>';
$config['first_tag_open'] = '<li>';
$config['first_tag_close'] = '</li>;';
$config['last_tag_open'] = '<li>';
$config['last_tag_close'] = '</li>';
$config['cur_tag_open'] = '<li class="active"><a href="#">';
$config['cur_tag_close'] = '</a></li>';
$config['next_tag_open'] = '<li>';
$config['next_tag_close'] = '</li>';
$config['prev_tag_open'] = '<li>';
$config['prev_tag_close'] = '</li>';
$config['num_tag_open'] = '<li>';
$config['num_tag_close'] = '</li>';
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment