You are here

public static function UIkitComponents::setLargeList in UIkit Components 8.3

Sets the large modifier setting.

Parameters

string $menu: The name of the menu.

string $value: The large modifier value to set for the menu.

1 call to UIkitComponents::setLargeList()
MenuEditForm::submitForm in src/Form/MenuEditForm.php
This is the default entity object builder function. It is called before any other submit handler to build the new entity object to be used by the following submit handlers. At this point of the form workflow the entity is validated and the form state…

File

src/UIkitComponents.php, line 227

Class

UIkitComponents
Provides helper functions for the UIkit Components module.

Namespace

Drupal\uikit_components

Code

public static function setLargeList($menu, $value) {
  \Drupal::state()
    ->set($menu . '_menu_style_list_large', $value);
}