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