Updated the Bootstrap theme.
[yaffs-website] / web / themes / contrib / bootstrap / src / Plugin / Preprocess / ItemListDropdown.php
1 <?php
2
3 namespace Drupal\bootstrap\Plugin\Preprocess;
4
5 use Drupal\bootstrap\Utility\Variables;
6
7 /**
8  * Pre-processes for the "item_list__dropdown" theme hook.
9  *
10  * @ingroup plugins_preprocess
11  *
12  * @BootstrapPreprocess("item_list__dropdown")
13  */
14 class ItemListDropdown extends PreprocessBase implements PreprocessInterface {
15
16   /**
17    * {@inheritdoc}
18    */
19   protected function preprocessVariables(Variables $variables) {
20     parent::preprocessVariables($variables);
21
22     $variables->alignment = $variables->getContext('alignment');
23   }
24
25 }