Skip to content

Instantly share code, notes, and snippets.

@yaranaio
Created March 15, 2012 06:41
Show Gist options
  • Save yaranaio/2042558 to your computer and use it in GitHub Desktop.
Save yaranaio/2042558 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