31b97ed9179ebfb924c5576e34e86b6bbc35b805
[yaffs-website] / web / themes / contrib / bootstrap / src / Plugin / Setting / General / Tables / TableStriped.php
1 <?php
2 /**
3  * @file
4  * Contains \Drupal\bootstrap\Plugin\Setting\General\Tables\TableStriped.
5  */
6
7 namespace Drupal\bootstrap\Plugin\Setting\General\Tables;
8
9 use Drupal\bootstrap\Annotation\BootstrapSetting;
10 use Drupal\bootstrap\Plugin\Setting\SettingBase;
11 use Drupal\Core\Annotation\Translation;
12
13 /**
14  * The "table_striped" theme setting.
15  *
16  * @ingroup plugins_setting
17  *
18  * @BootstrapSetting(
19  *   id = "table_striped",
20  *   type = "checkbox",
21  *   title = @Translation("Striped rows"),
22  *   description = @Translation("Add zebra-striping to any table row within the <code>&lt;tbody&gt;</code>."),
23  *   defaultValue = 1,
24  *   groups = {
25  *     "general" = @Translation("General"),
26  *     "tables" = @Translation("Tables"),
27  *   },
28  * )
29  */
30 class TableStriped extends SettingBase {}