function panelizer_entity_update in Panelizer 7.2
Same name and namespace in other branches
- 7.3 panelizer.module \panelizer_entity_update()
Implements hook_entity_update().
File
- ./
panelizer.module, line 125 - The Panelizer module attaches panels to entities, providing default panels and allowing each panel to be configured independently by privileged users.
Code
function panelizer_entity_update($entity, $entity_type) {
// Delegate to the handler.
if ($handler = panelizer_entity_plugin_get_handler($entity_type)) {
$handler
->hook_entity_update($entity);
}
}