You are here

public function SmartmenusUtil::getAvailableMenuThemesList in Smartmenus.js 8

Return value

array|string Returns a list of themes supported by the Smartmenus plugin.

File

src/SmartmenusUtil.php, line 30

Class

SmartmenusUtil
Class SmartmenusUtil @package Drupal\smartmenus

Namespace

Drupal\smartmenus

Code

public function getAvailableMenuThemesList() : array {
  return [
    '' => $this->translation
      ->translate('None'),
    'sm-blue' => $this->translation
      ->translate('Blue'),
    'sm-clean' => $this->translation
      ->translate('Clean'),
    'sm-mint' => $this->translation
      ->translate('Mint'),
    'sm-simple' => $this->translation
      ->translate('Simple'),
  ];
}