1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586 |
- <?php
- /**
- * Part of the Fuel framework.
- *
- * @package Fuel
- * @version 1.5
- * @author Fuel Development Team
- * @license MIT License
- * @copyright 2010 - 2013 Fuel Development Team
- * @link http://fuelphp.com
- */
- /**
- * NOTICE:
- *
- * If you need to make modifications to the default configuration, copy
- * this file to your app/config folder, and make them in there.
- *
- * This will allow you to upgrade fuel without losing your custom config.
- */
- return array(
- // the active pagination template
- 'active' => 'default',
- // default FuelPHP pagination template, compatible with pre-1.4 applications
- 'default' => array(
- 'wrapper' => "<div class=\"pagination\">\n\t{pagination}\n</div>\n",
- 'first' => "<span class=\"first\">\n\t{link}\n</span>\n",
- 'first-link' => "\t\t<a href=\"{uri}\">{page}</a>\n",
- 'previous' => "<span class=\"previous\">\n\t{link}\n</span>\n",
- 'previous-link' => "\t\t<a href=\"{uri}\">{page}</a>\n",
- 'previous-inactive' => "<span class=\"previous-inactive\">\n\t{link}\n</span>\n",
- 'previous-inactive-link' => "\t\t<a href=\"{uri}\">{page}</a>\n",
- 'regular' => "<span>\n\t{link}\n</span>\n",
- 'regular-link' => "\t\t<a href=\"{uri}\">{page}</a>\n",
- 'active' => "<span class=\"active\">\n\t{link}\n</span>\n",
- 'active-link' => "\t\t<a href=\"{uri}\">{page}</a>\n",
- 'next' => "<span class=\"next\">\n\t{link}\n</span>\n",
- 'next-link' => "\t\t<a href=\"{uri}\">{page}</a>\n",
- 'next-inactive' => "<span class=\"next-inactive\">\n\t{link}\n</span>\n",
- 'next-inactive-link' => "\t\t<a href=\"{uri}\">{page}</a>\n",
- 'last' => "<span class=\"last\">\n\t{link}\n</span>\n",
- 'last-link' => "\t\t<a href=\"{uri}\">{page}</a>\n",
- ),
- // Twitter bootstrap 2.x template
- 'bootstrap' => array(
- 'wrapper' => "<div class=\"pagination\">\n\t<ul>{pagination}\n\t</ul>\n</div>\n",
- 'first' => "\n\t\t<li>{link}</li>",
- 'first-link' => "<a href=\"{uri}\">{page}</a>",
- 'previous' => "\n\t\t<li>{link}</li>",
- 'previous-link' => "<a href=\"{uri}\">{page}</a>",
- 'previous-inactive' => "\n\t\t<li class=\"disabled\">{link}</li>",
- 'previous-inactive-link' => "<a href=\"{uri}\">{page}</a>",
- 'regular' => "\n\t\t<li>{link}</li>",
- 'regular-link' => "<a href=\"{uri}\">{page}</a>",
- 'active' => "\n\t\t<li class=\"active\">{link}</li>",
- 'active-link' => "<a href=\"{uri}\">{page}</a>",
- 'next' => "\n\t\t<li>{link}</li>",
- 'next-link' => "<a href=\"{uri}\">{page}</a>",
- 'next-inactive' => "\n\t\t<li class=\"disabled\">{link}</li>",
- 'next-inactive-link' => "<a href=\"{uri}\">{page}</a>",
- 'last' => "\n\t\t<li>{link}</li>",
- 'last-link' => "<a href=\"{uri}\">{page}</a>",
- ),
- );
|