modX.switchContext
Last updated Apr 6th, 2019 | Page history | Improve this page | Report an issue
Support the team building MODX with a monthly donation.
The budget raised through OpenCollective is transparent, including payouts, and any contributor can apply to be paid for their work on MODX.
Backers
Budget
$306 per month—let's make that $500!
Learn moremodX::switchContext¶
Switches the primary Context for the modX instance.
Be aware that switching contexts does not allow custom session handling classes to be loaded. The gateway defines the session handling that is applied to a single request. To create a context with a custom session handler you must create a unique context gateway that initializes that context directly.
Syntax¶
API Doc: modX::switchContext()
boolean switchContext (string $contextKey, [boolean $reload = false])
-
$contextKey
(string) The key of the context to switch to. required -
$reload
(boolean) Set to true to force the context data to be regenerated before being switched to
Example¶
Switch to the 'sports' Context.
$modx->switchContext('sports');
See Also¶
Support the team building MODX with a monthly donation.
The budget raised through OpenCollective is transparent, including payouts, and any contributor can apply to be paid for their work on MODX.
Backers
Budget
$306 per month—let's make that $500!
Learn more