Updated to Drupal 8.5. Core Media not yet in use.
[yaffs-website] / web / themes / contrib / bootstrap / src / Plugin / Setting / General / Forms / FormsSmartDescriptions.php
1 <?php
2
3 namespace Drupal\bootstrap\Plugin\Setting\General\Forms;
4
5 use Drupal\bootstrap\Plugin\Setting\SettingBase;
6
7 /**
8  * The "forms_smart_descriptions" theme setting.
9  *
10  * @ingroup plugins_setting
11  *
12  * @BootstrapSetting(
13  *   id = "forms_smart_descriptions",
14  *   type = "checkbox",
15  *   title = @Translation("Smart form descriptions (via Tooltips)"),
16  *   defaultValue = 1,
17  *   description = @Translation("Convert descriptions into tooltips (must be enabled) automatically based on certain criteria. This helps reduce the, sometimes unnecessary, amount of noise on a page full of form elements."),
18  *   groups = {
19  *     "general" = @Translation("General"),
20  *     "forms" = @Translation("Forms"),
21  *   },
22  * )
23  */
24 class FormsSmartDescriptions extends SettingBase {}