bootstrap-8.x-3.23/src/Plugin/Preprocess/ItemListDropdown.php
src/Plugin/Preprocess/ItemListDropdown.php
<?php namespace Drupal\bootstrap\Plugin\Preprocess; use Drupal\bootstrap\Utility\Variables; /** * Pre-processes for the "item_list__dropdown" theme hook. * * @ingroup plugins_preprocess * * @BootstrapPreprocess("item_list__dropdown") */ class ItemListDropdown extends PreprocessBase implements PreprocessInterface { /** * {@inheritdoc} */ protected function preprocessVariables(Variables $variables) { parent::preprocessVariables($variables); $variables->alignment = $variables->getContext('alignment'); } }