You are here

function jquerymobile_get_link_attributes in jQuery Mobile module 7.2

Implements hook_get_link_attributes().

File

modules/menu.inc, line 181
Alterations required to the menu module.

Code

function jquerymobile_get_link_attributes($item) {
  global $theme_key;
  if (_jquerymobile_is_mobile_theme($theme_key)) {
    if (isset($item['options']['jquerymobile_attributes'])) {
      return $item['options']['jquerymobile_attributes'];
    }
    else {
      return array();
    }
  }
  else {
    return array();
  }
}