function panels_everywhere_set_site_template in Panels Everywhere 7
Same name and namespace in other branches
- 6 panels_everywhere.module \panels_everywhere_set_site_template()
Manually set the template to use.
This can be used to force the page to use the specified template rather than going through the access rules.
Parameters
$handler: The name of the task handler to use.
1 call to panels_everywhere_set_site_template()
File
- ./
panels_everywhere.module, line 244 - panels_everywhere.module
Code
function panels_everywhere_set_site_template($handler) {
$store =& drupal_static('panels_everywhere_site_template');
$store = $handler;
}