You are here

function panelizer_process_page in Panelizer 7.3

Implements hook_process_page().

File

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

Code

function panelizer_process_page(&$variables) {

  // Delegate.
  // Target the theme layer to ensure we can manipulate the overview table.
  foreach (panelizer_get_plugins_with_hook('page_alter') as $handler) {
    $handler
      ->hook_page_alter($variables['page']);
  }
}