You are here

function ctools_automodal_preprocess_menu_local_action in CTools Auto-modal 7

Implements hook_preprocess_menu_local_action().

File

./ctools_automodal.module, line 88

Code

function ctools_automodal_preprocess_menu_local_action(&$variables) {

  // Prepare the link array in the way that the hook_preprocess_link() expects.
  $link = array(
    'path' => &$variables['element']['#link']['href'],
    'options' => &$variables['element']['#link']['localized_options'],
    'text' => &$variables['element']['#link']['title'],
  );
  ctools_automodal_preprocess_link($link);
}