for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/*
* This file is part of the Pagerfanta package.
*
* (c) Pablo Díez <[email protected]>
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Pagerfanta\View\Template;
/**
* TwitterBootstrap3Template
class TwitterBootstrap3Template extends TwitterBootstrapTemplate
{
public function __construct()
parent::__construct();
$this->setOptions(array('active_suffix' => '<span class="sr-only">(current)</span>'));
}
public function container()
return sprintf('<ul class="%s">%%pages%%</ul>',
$this->option('css_container_class')
);