t('Tabindex'), 'description' => t('Specifies the tab order for the link.'), 'form' => array( '#maxlength' => 3, '#size' => 2, ), 'scope' => array(MENU_ATTRIBUTES_LINK), ); return $info; } /** * Alter the list of menu item attributes. * * @param $attributes * An array of attributes to be controlled by Menu Attributes, keyed by * attribute name. * * @see hook_menu_attribute_info() * @see menu_attributes_get_menu_attribute_info() */ function hook_menu_attribute_info_alter(array &$attributes) { // Remove the Access Key attribute. unset($attributes['accesskey']); }