The runtime context is state, that is calculated once per page, which affects:
Known runtime contexts are:
Runtime Context | Setting Name | Configured From |
---|---|---|
Front-End | Is Front-End? | /index.php |
Theme Name | URL | |
Mod-Rewrite Urls | System Setting | |
Admin Console | Is Admin Console? | /admin/index.php |
Typical URL examples:
URL | Where | |
---|---|---|
| to the "platform/login/register " template in "advanced " theme on Front-End when Mod-Rewrite is disabled | |
| to the "platform/login/register " template in "advanced " theme on Front-End when Mod-Rewrite is enabled | |
| to the "languages/phrase_list " template in Admin Console |
If a need arises to build url to Admin Console from Front-End or vice versa then this can be done, to the certain extent, using this code:
// URL to Front-End page: $url = $this->Application->HREF( 'path/to/template', '_FRONT_END_', // To remove "/admin" from URL. array('__MOD_REWRITE__' => 1) // Mod-rewrite not used in Admin Console, so needs to be specified. ); // Path to Front-End template from "advanced" theme: $this->Application->InitParser('advanced'); $path1 = $this->Application->TemplatesCache->GetRealFilename('path/to/template1'); $path2 = $this->Application->TemplatesCache->GetRealFilename('path/to/template2'); // Path to Front-End template from given theme: $this->Application->InitParser(true); $path1 = $this->Application->TemplatesCache->GetRealFilename('theme:advanced/path/to/template1'); $path2 = $this->Application->TemplatesCache->GetRealFilename('theme:simple/path/to/template2'); |
Above examples demonstrate, that:
It can't be seen from code, but there are couple of other issues with it:
Allow to replace all variables (e.g. runtime context) that are imposed by the way how page was opened at once.
// Use Admin context. $backup = $this->Application->applyRuntimeContext(new AdminRuntimeContext()); // do something $this->Application->applyRuntimeContext($backup); // Use Front-End context from current theme. $backup = $this->Application->applyRuntimeContext(new FrontEndRuntimeContext()); // do something $this->Application->applyRuntimeContext($backup); // Use Front-End context from primary theme. $backup = $this->Application->applyRuntimeContext(new FrontEndRuntimeContext('default')); // do something $this->Application->applyRuntimeContext($backup); // Use Front-End context from given theme. $backup = $this->Application->applyRuntimeContext(new FrontEndRuntimeContext(5)); // do something $this->Application->applyRuntimeContext($backup); |
Tasks, created to fix this bug.