You are here

function template_preprocess_pane_messages in Panels Everywhere 7

Same name and namespace in other branches
  1. 6 theme/theme.inc \template_preprocess_pane_messages()

File

theme/theme.inc, line 86
Contains preprocess functions for Panels Everywhere themes.

Code

function template_preprocess_pane_messages(&$vars) {
  $vars['tabs'] = menu_local_tabs();
  $vars['action_links'] = theme('ctools_menu_local_actions_wrapper', array(
    'links' => menu_local_actions(),
  ));
  $vars['help'] = menu_get_active_help();
}