You are here

function panelizer_field_attach_delete_revision in Panelizer 7.2

Same name and namespace in other branches
  1. 7.3 panelizer.module \panelizer_field_attach_delete_revision()

Implements hook_field_attach_delete_revision().

File

./panelizer.module, line 155
The Panelizer module attaches panels to entities, providing default panels and allowing each panel to be configured independently by privileged users.

Code

function panelizer_field_attach_delete_revision($entity_type, $entity) {

  // Delegate to the handler.
  if ($handler = panelizer_entity_plugin_get_handler($entity_type)) {
    $handler
      ->hook_field_attach_delete_revision($entity);
  }
}