You are here

function icon_menu_defaults in Icon API 8

Same name and namespace in other branches
  1. 7 modules/icon_menu/icon_menu.module \icon_menu_defaults()

Helper function to return the default icon menu values.

1 call to icon_menu_defaults()
_icon_menu_form_alter in modules/icon_menu/icon_menu.module
Add the icon configuration to a menu item edit form.

File

modules/icon_menu/icon_menu.module, line 24
icon_menu.module Implements an API for icon providers and an administrative UI for integrating icons through out the site.

Code

function icon_menu_defaults() {
  return array(
    'bundle' => '',
    'icon' => '',
    'wrapper' => '',
    'wrapper_class' => '',
    'breadcrumb' => FALSE,
    'position' => 'title_before',
    'title_wrapper' => 0,
    'title_wrapper_element' => 'span',
    'title_wrapper_class' => 'title',
  );
}