-
Couldn't load subscription status.
- Fork 9
Helpers
Joomlatools Pages comes out-of-the-box with template helpers. A helper is a simple function that can be used in any template and will generate HTML for you. Most helpers have parameters that allow you to customise them.
The paginator.pagination helper renders pagination. The helper will only return pagination if a collection has been defined in the page.
Example:
<?= helper('paginator.pagination') ?>If the limit is dynamic (not set in the collection state) a limit box will be rendered too, the limit box can be hidden by setting the additional 'show_limit' config option to false.
Example:
<?= helper('paginator.pagination', ['show_limit' => false]) ?>See also: Collection > Paginating
Got a question or need help? We have a forum on Github Discussions where you can get in touch with us.