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