You are here

function menu_seo_title_menu_attribute_info in Panels Extras 7

Same name and namespace in other branches
  1. 6 menu_seo_title/menu_seo_title.module \menu_seo_title_menu_attribute_info()

Implements hook_menu_attribute_info().

File

menu_seo_title/menu_seo_title.module, line 181
menu_seo_title.module Add a menu block that uses the menu attribute seo title instead of the normal menu item title

Code

function menu_seo_title_menu_attribute_info() {
  $info['seo_title'] = array(
    'label' => t('Seo Title'),
    'description' => t("use this seo title instead of the normal menu item title in the seo menu block"),
  );
  return $info;
}