Create links to specific ListerPages with predefined selector, column and sort settings.
This module is intended to be used as helper module within your own modules. The module allows you to create “runtime” bookmarks for ListerPages.
The url() method will build an URL and will redirect you to a specific List Page with predefined select, column and sort settings.
The url method has 5 parameters:
- $ListerPage, Page, Required value, the page where the lister lives.
- $initSelector, String or empty string, The init selector of the lister.
- $defaultSelector, String or empty string, The default selector of the lister.
- $columns, array or empty, plain array with fieldnames.
- $defaultSort String, Where to sort on.
// Listerpage, the destination.
$listerPage = $pages->get(1234);
$initSelector = 'template=basic-page';
$defaultSelector = 'title!=ProcessWire, parent.id>1234';
$columns = array('title', 'template', 'parent', 'modified');
$defaultSort = 'modified';
// Get the instance and build the URL. You need only 1 instance to create multiple URLs.
$plus = $modules->get('ProcessPageListerUrls');
$url = $plus->url($listerPage, $initSelector, $defaultSelector, $columns, $defaultSort);
The builded URL is encoded using openssl_encrypt, abstracted and cut in get variables with a max length of 256. This way the client can't manually change the url, so it is save to use init selector.
Be aware that the runtime bookmarks will change settings in your lister config. When you enter the config after using ProcessPageListerUrls and save the lister those settings are also saved, this is the 'nature' of ListerPro
- Thanks to Arjen Blokzijl for support & testing
- Thanks to Ryan Cramer