a873006b899339e80efb2d930e06088574126f47
[yaffs-website] / web / themes / contrib / bootstrap / src / Plugin / Setting / General / Buttons / ButtonSize.php
1 <?php
2
3 namespace Drupal\bootstrap\Plugin\Setting\General\Buttons;
4
5 use Drupal\bootstrap\Plugin\Setting\SettingBase;
6
7 /**
8  * The "button_size" theme setting.
9  *
10  * @ingroup plugins_setting
11  *
12  * @BootstrapSetting(
13  *   id = "button_size",
14  *   type = "select",
15  *   title = @Translation("Default button size"),
16  *   defaultValue = "",
17  *   description = @Translation("Defines the Bootstrap Buttons specific size"),
18  *   empty_option = @Translation("Normal"),
19  *   groups = {
20  *     "general" = @Translation("General"),
21  *     "button" = @Translation("Buttons"),
22  *   },
23  *   options = {
24  *     "btn-xs" = @Translation("Extra Small"),
25  *     "btn-sm" = @Translation("Small"),
26  *     "btn-lg" = @Translation("Large"),
27  *   },
28  * )
29  */
30 class ButtonSize extends SettingBase {}