03a1ae28e7ff4202522d177b3b4169566319c87a
[yaffs-website] / web / themes / contrib / bootstrap / src / Plugin / Setting / General / Tables / TableBordered.php
1 <?php
2 /**
3  * @file
4  * Contains \Drupal\bootstrap\Plugin\Setting\General\Tables\TableBordered.
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_bordered" theme setting.
15  *
16  * @ingroup plugins_setting
17  *
18  * @BootstrapSetting(
19  *   id = "table_bordered",
20  *   type = "checkbox",
21  *   title = @Translation("Bordered table"),
22  *   description = @Translation("Add borders on all sides of the table and cells."),
23  *   defaultValue = 0,
24  *   groups = {
25  *     "general" = @Translation("General"),
26  *     "tables" = @Translation("Tables"),
27  *   },
28  * )
29  */
30 class TableBordered extends SettingBase {}