Change MajorSection outside of the route?

Jaxel

Well-known member
Licensed customer
Is there a way to change the majorsection to a page in the controller or view?
 
Yep, we do this in various controllers in XF, for example setting "forums" to be the page section when you're viewing the "find-new/posts" page.

In the Controller you can use:
PHP:
$this->_routeMatch->setSections('forums');
Where 'forums' is the desired section.
 
Back
Top Bottom