Version 1
[yaffs-website] / web / themes / contrib / bootstrap / src / Plugin / Setting / JavaScript / Popovers / PopoverContainer.php
1 <?php
2 /**
3  * @file
4  * Contains \Drupal\bootstrap\Plugin\Setting\JavaScript\Popovers\PopoverContainer.
5  */
6
7 namespace Drupal\bootstrap\Plugin\Setting\JavaScript\Popovers;
8
9 use Drupal\bootstrap\Annotation\BootstrapSetting;
10 use Drupal\bootstrap\Plugin\Setting\SettingBase;
11 use Drupal\Core\Annotation\Translation;
12
13 /**
14  * The "popover_container" theme setting.
15  *
16  * @ingroup plugins_setting
17  *
18  * @BootstrapSetting(
19  *   id = "popover_container",
20  *   type = "textfield",
21  *   title = @Translation("container"),
22  *   description = @Translation("Appends the popover to a specific element. Example: <code>body</code>. This option is particularly useful in that it allows you to position the popover in the flow of the document near the triggering element - which will prevent the popover from floating away from the triggering element during a window resize."),
23  *   defaultValue = "body",
24  *   groups = {
25  *     "javascript" = @Translation("JavaScript"),
26  *     "popovers" = @Translation("Popovers"),
27  *     "options" = @Translation("Options"),
28  *   },
29  * )
30  */
31 class PopoverContainer extends SettingBase {
32
33   /**
34    * {@inheritdoc}
35    */
36   public function drupalSettings() {
37     return !!$this->theme->getSetting('popover_enabled');
38   }
39
40 }