You are here

themekey.menu.inc in ThemeKey 6

File

modules/themekey.menu.inc
View source
<?php

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,
  );
}

Functions