function themekey_menu_themekey_properties in ThemeKey 6
File
- modules/
themekey.menu.inc, line 3
Code
function themekey_menu_themekey_properties() {
// Attributes for properties
$attributes = array();
$attributes['menu:has_children'] = array(
'description' => t('Menu: Has Children'),
);
$attributes['menu:menu_name'] = array(
'description' => t('Menu: Menu Name'),
);
$attributes['menu:mlid'] = array(
'description' => t('Menu: Menu Link ID'),
);
return array(
'attributes' => $attributes,
);
}