uswds_base-8.x-2.0-alpha1/preprocess/menu/menu__primary_menu.preprocess.inc
preprocess/menu/menu__primary_menu.preprocess.inc
<?php
/**
* @file
* Preprocess function for this hook.
*/
/**
* Implements hook_preprocess_menu__REGION().
*
* This made possible by our custom theme suggestion.
* @see uswds_theme_suggestions_menu_alter().
*/
function uswds_base_preprocess_menu__primary_menu(&$variables) {
$variables['megamenu'] = theme_get_setting('uswds_header_mega');
// Do we want to duplicate parent items as the first child?
$variables['duplicate_parent'] = theme_get_setting('uswds_menu_accordion_duplicate_parent');
}
