You are here

function panelizer_admin_paths in Panelizer 7.2

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

Implements hook_admin_paths().

File

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

Code

function panelizer_admin_paths() {
  $items = array();

  // Delegate.
  foreach (panelizer_get_plugins_with_hook('admin_paths') as $handler) {
    $handler
      ->hook_admin_paths($items);
  }
  return $items;
}