express-8.x-1.x-dev/themes/contrib/bootstrap/src/Plugin/Setting/General/Tables/TableHover.php
themes/contrib/bootstrap/src/Plugin/Setting/General/Tables/TableHover.php
<?php /** * @file * Contains \Drupal\bootstrap\Plugin\Setting\General\Tables\TableHover. */ namespace Drupal\bootstrap\Plugin\Setting\General\Tables; use Drupal\bootstrap\Annotation\BootstrapSetting; use Drupal\bootstrap\Plugin\Setting\SettingBase; use Drupal\Core\Annotation\Translation; /** * The "table_hover" theme setting. * * @ingroup plugins_setting * * @BootstrapSetting( * id = "table_hover", * type = "checkbox", * title = @Translation("Hover rows"), * description = @Translation("Enable a hover state on table rows."), * defaultValue = 1, * groups = { * "general" = @Translation("General"), * "tables" = @Translation("Tables"), * }, * ) */ class TableHover extends SettingBase {}