*/ public array $templates = [ 'default_full' => 'CodeIgniter\Pager\Views\default_full', 'default_simple' => 'CodeIgniter\Pager\Views\default_simple', 'default_head' => 'CodeIgniter\Pager\Views\default_head', ]; /** * -------------------------------------------------------------------------- * Items Per Page * -------------------------------------------------------------------------- * * The default number of results shown in a single page. */ public int $perPage = 20; /** * -------------------------------------------------------------------------- * Bootstrap 3 pagination links styling * -------------------------------------------------------------------------- * * Source code from http://stackoverflow.com/questions/20088779/bootstrap-3-pagination-with-codeigniter */ public $config = [ 'full_tag_open' => '', 'num_tag_open' => '
  • ', 'num_tag_close' => '
  • ', 'cur_tag_open' => '
  • ', 'cur_tag_close' => '
  • ', 'next_tag_open' => '
  • ', 'next_tagl_close' => '
  • ', 'prev_tag_open' => '
  • ', 'prev_tagl_close' => '
  • ', 'first_tag_open' => '
  • ', 'first_tagl_close' => '
  • ', 'last_tag_open' => '
  • ', 'last_tagl_close' => '
  • ' ]; }