Releases for sf 1.1
| Version |
License |
API |
Released |
|
1.2.0stable
|
MIT license |
1.0.0stable
|
04/05/2007 |
Releases for sf 1.0
| Version |
License |
API |
Released |
|
1.2.0stable
|
MIT license |
1.0.0stable
|
04/05/2007 |
Changelog for release 1.2.0 - 04/05/2007
Not available
Other releases
Release 1.2.0 - 04/05/2007
Not available
Release 1.1.0 - 05/09/2006
Not available
Release 1.0.0 - 30/08/2006
Not available
sfPagerNavigation plugin
Overview
This plugin adds a new helper group, PagerNavigation, with three new helpers. They add interface controls for paginated lists, either with links to pages or with AJAX (online demo)
Installation
To install sfPagerNavigationPlugin, type:
$ symfony plugin-install http://plugins.symfony-project.com/sfPagerNavigationPlugin
Usage
Regular pager
<?php use_helper('PagerNavigation') ?>
<?php echo pager_navigation($pager, '@rule?key=param') ?>
Ajax pager
<?php use_helper('PagerNavigation') ?>
<?php echo remote_pager(array(
'url' => 'pager/ajaxPager',
'update' => 'ajax_pager',
), $pager) ?>
<noscript>
<?php echo pager_navigation($pager, 'pager/index') ?>
</noscript>
License
For the full copyright and license information, please view the LICENSE
file that was distributed with this source code.