function panelizer_is_panelized in Panelizer 7.2
Same name and namespace in other branches
- 6 panelizer.module \panelizer_is_panelized()
- 7.3 panelizer.module \panelizer_is_panelized()
- 7 panelizer.module \panelizer_is_panelized()
Menu callback to determine if a type has a choice of defaults.
We use this to make sure the right tabs appear.
1 string reference to 'panelizer_is_panelized'
- PanelizerEntityDefault::add_admin_links in plugins/
entity/ PanelizerEntityDefault.class.php - Helper function to add administrative menu items into an entity's already existing structure.
File
- ./
panelizer.module, line 626 - The Panelizer module attaches panels to entities, providing default panels and allowing each panel to be configured independently by privileged users.
Code
function panelizer_is_panelized($handler, $bundle) {
if (is_string($handler)) {
$handler = panelizer_entity_plugin_get_handler($handler);
}
if (!$handler) {
return FALSE;
}
if (!panelizer_administer_entity_bundle($handler, $bundle)) {
return FALSE;
}
return $handler
->is_panelized($bundle);
}