public function PanelizerEntityNode::hook_admin_paths in Panelizer 7.3
Implements a delegated hook_admin_paths.
Overrides PanelizerEntityDefault::hook_admin_paths
File
- plugins/
entity/ PanelizerEntityNode.class.php, line 239 - Class for the Panelizer node entity plugin.
Class
- PanelizerEntityNode
- Panelizer Entity node plugin class.
Code
public function hook_admin_paths(&$items) {
if (variable_get('node_admin_theme')) {
$items['node/*/panelizer*'] = TRUE;
}
}