You are here

NavbarInverse.php in Express 8

File

themes/contrib/bootstrap/src/Plugin/Setting/Components/Navbar/NavbarInverse.php
View source
<?php

/**
 * @file
 * Contains \Drupal\bootstrap\Plugin\Setting\Components\Navbar\NavbarInverse.
 */
namespace Drupal\bootstrap\Plugin\Setting\Components\Navbar;

use Drupal\bootstrap\Annotation\BootstrapSetting;
use Drupal\bootstrap\Plugin\Setting\SettingBase;
use Drupal\Core\Annotation\Translation;

/**
 * The "navbar_inverse" theme setting.
 *
 * @ingroup plugins_setting
 *
 * @BootstrapSetting(
 *   id = "navbar_inverse",
 *   type = "checkbox",
 *   title = @Translation("Inverse navbar style"),
 *   description = @Translation("Select if you want the inverse navbar style."),
 *   defaultValue = 0,
 *   groups = {
 *     "components" = @Translation("Components"),
 *     "navbar" = @Translation("Navbar"),
 *   },
 * )
 */
class NavbarInverse extends SettingBase {

}

Classes

Namesort descending Description
NavbarInverse The "navbar_inverse" theme setting.