Version 1
[yaffs-website] / web / themes / contrib / bootstrap / src / Plugin / Setting / General / Container / FluidContainer.php
1 <?php
2 /**
3  * @file
4  * Contains \Drupal\bootstrap\Plugin\Setting\General\Container\FluidContainer.
5  */
6
7 namespace Drupal\bootstrap\Plugin\Setting\General\Container;
8
9 use Drupal\bootstrap\Annotation\BootstrapSetting;
10 use Drupal\bootstrap\Plugin\Setting\SettingBase;
11 use Drupal\Core\Annotation\Translation;
12
13 /**
14  * Container theme settings.
15  *
16  * @ingroup plugins_setting
17  *
18  * @BootstrapSetting(
19  *   id = "fluid_container",
20  *   type = "checkbox",
21  *   title = @Translation("Fluid container"),
22  *   defaultValue = 0,
23  *   description = @Translation("Uses the <code>.container-fluid</code> class instead of <code>.container</code>."),
24  *   groups = {
25  *     "general" = @Translation("General"),
26  *     "container" = @Translation("Container"),
27  *   },
28  *   see = {
29  *     "http://getbootstrap.com/css/#grid-example-fluid" = @Translation("Fluid container"),
30  *   },
31  * )
32  */
33 class FluidContainer extends SettingBase {}