You are here

TableHover.php in Express 8

File

themes/contrib/bootstrap/src/Plugin/Setting/General/Tables/TableHover.php
View source
<?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 {

}

Classes

Namesort descending Description
TableHover The "table_hover" theme setting.