7cb8b74dc2e3017830e1f5d71208cd547c2fe52b
[yaffs-website] / web / themes / contrib / bootstrap / src / Plugin / Setting / General / Tables / TableHover.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_hover" theme setting.
9  *
10  * @ingroup plugins_setting
11  *
12  * @BootstrapSetting(
13  *   id = "table_hover",
14  *   type = "checkbox",
15  *   title = @Translation("Hover rows"),
16  *   description = @Translation("Enable a hover state on table rows."),
17  *   defaultValue = 1,
18  *   groups = {
19  *     "general" = @Translation("General"),
20  *     "tables" = @Translation("Tables"),
21  *   },
22  * )
23  */
24 class TableHover extends SettingBase {}