Version 1
[yaffs-website] / web / themes / contrib / bootstrap / src / Plugin / Setting / General / Tables / TableHover.php
1 <?php
2 /**
3  * @file
4  * Contains \Drupal\bootstrap\Plugin\Setting\General\Tables\TableHover.
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_hover" theme setting.
15  *
16  * @ingroup plugins_setting
17  *
18  * @BootstrapSetting(
19  *   id = "table_hover",
20  *   type = "checkbox",
21  *   title = @Translation("Hover rows"),
22  *   description = @Translation("Enable a hover state on table rows."),
23  *   defaultValue = 1,
24  *   groups = {
25  *     "general" = @Translation("General"),
26  *     "tables" = @Translation("Tables"),
27  *   },
28  * )
29  */
30 class TableHover extends SettingBase {}