Martijn Geerts Posted December 15, 2016 Share Posted December 15, 2016 ProcessPageListerUrls Create links to specific ListerPages with predefined selector, column and sort settings. See GitHub for more information. Download ProcessPageListerUrls on GitHub 10 Link to comment Share on other sites More sharing options...
szabesz Posted December 15, 2016 Share Posted December 15, 2016 Thank you @Martijn Geerts! Works with both Lister and ListerPro, right? I will purchase my very first ListerPro copy in the near future, so I'm glad you've just shared it 1 Link to comment Share on other sites More sharing options...
Martijn Geerts Posted December 16, 2016 Author Share Posted December 16, 2016 Hi @szabesz, looks like it's working with the default ProcessPageLister (not much testing over there.) 1 Link to comment Share on other sites More sharing options...
Robin S Posted July 23, 2017 Share Posted July 23, 2017 Hi @Martijn Geerts, Thanks for this module. I'm wanting to explore using it with a custom module that extends ProcessPageLister but the way the module checks if the page ID supplied to the url() method has the correct process is a stumbling block. In the module there is this test... if (strpos('ProcessPageListerPro', $listerPage->process) !== false) return $listerPage; ...which seems like a weird way to check that the process is okay. For instance, a process named 'age' would pass this test. And any process that has a different name yet may still be an instance of ProcessPageLister fails the test. How about a different test? $process_module = $this->modules->get($listerPage->process); if($process_module instanceof ProcessPageLister) return $listerPage; Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now