You are here

function _jquerymobile_ui_menu_item_options in jQuery Mobile module 6.3

File

./jquerymobile.module, line 213

Code

function _jquerymobile_ui_menu_item_options($link) {
  if (empty($link['localized_options'])) {
    $link['localized_options'] = array();
  }
  $attributes = array();
  if (is_array($link['localized_options']['jquerymobile_ui_anchor_attributes'])) {
    foreach ($link['localized_options']['jquerymobile_ui_anchor_attributes'] as $key => $value) {
      if ($value != "") {
        $attributes[$key] = $value;
      }
    }
  }
  return $attributes;
}