express-8.x-1.x-dev/themes/contrib/bootstrap/src/Plugin/Setting/Components/Navbar/NavbarInverse.php
themes/contrib/bootstrap/src/Plugin/Setting/Components/Navbar/NavbarInverse.php
<?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 {}
