Version 1
[yaffs-website] / web / themes / contrib / bootstrap / src / Plugin / Setting / Advanced / IncludeDeprecated.php
1 <?php
2 /**
3  * @file
4  * Contains \Drupal\bootstrap\Plugin\Setting\Advanced\IncludeDeprecated.
5  */
6
7 namespace Drupal\bootstrap\Plugin\Setting\Advanced;
8
9 use Drupal\bootstrap\Annotation\BootstrapSetting;
10 use Drupal\bootstrap\Plugin\Setting\SettingBase;
11 use Drupal\Core\Annotation\Translation;
12
13 /**
14  * The "include_deprecated" theme setting.
15  *
16  * @ingroup plugins_setting
17  *
18  * @BootstrapSetting(
19  *   id = "include_deprecated",
20  *   type = "checkbox",
21  *   weight = -3,
22  *   title = @Translation("Include deprecated functions"),
23  *   defaultValue = 0,
24  *   description = @Translation("Enabling this setting will include any <code>deprecated.php</code> file found in your theme or base themes."),
25  *   groups = {
26  *     "advanced" = @Translation("Advanced"),
27  *   },
28  * )
29  */
30 class IncludeDeprecated extends SettingBase {}