You are here

function superfish_i18nmenu_node_block_info_alter in Superfish 6

Implements hook_i18nmenu_node_block_info_alter().

File

./superfish.module, line 1385
Enables the use of jQuery Superfish plugin for Drupal menus.

Code

function superfish_i18nmenu_node_block_info_alter(&$info) {

  // Allows the superfish menu block to be translated by the i18nmenu_node module.
  if (!isset($info['superfish'])) {
    $info['superfish'] = array();
  }
}