0 users online. Create an account or sign in to join them.Users
Are page parameters available to an extension?
This is an open discussion with 1 reply, filed under Extensions.
Search
Ah, I figured it out, I needed to uninstall/reinstall the extension for it to register I guess.
Create an account or sign in to comment.
Are page parameters available to an extension? If so, how would I go about accessing them? I looked in $GLOBALS and there doesn’t appear to be anything, should the following take care of it?
public function getSubscribedDelegates() { return array( array( 'page' => '/frontend/', 'delegate' => 'FrontendParamsResolve', 'callback' => 'getParams' ) ); }I tried that, but it wasn’t calling the function getParams, and to be honest, I’m not sure if it should :)