Namespace
Drupal\bootstrap\Plugin\Preprocess
- <?php
-
- namespace Drupal\bootstrap\Plugin\Preprocess;
-
- use Drupal\bootstrap\Bootstrap;
- use Drupal\bootstrap\Utility\Element;
- use Drupal\bootstrap\Utility\Variables;
- use Drupal\Component\Render\FormattableMarkup;
- use Drupal\Component\Utility\Html;
- use Drupal\Core\Template\Attribute;
- use Drupal\Core\Url;
-
- * Pre-processes variables for the "bootstrap_carousel" theme hook.
- *
- * @ingroup plugins_preprocess
- *
- * @BootstrapPreprocess("bootstrap_carousel")
- */
- class BootstrapCarousel extends PreprocessBase implements PreprocessInterface {
-
-
- * {@inheritdoc}
- */
- protected function preprocessVariables(Variables $variables) {
-
- $id = $variables->getAttribute('id', Html::getUniqueId($variables->offsetGet('id', 'bootstrap-carousel')));
- unset($variables['id']);
-
-
- foreach ($variables->slides as $key => &$slide) {
- if (!isset($slide['attributes'])) {
- $slide['attributes'] = [];
- }
- $slide['attributes'] = new Attribute($slide['attributes']);
- }
-
-
- if ($variables->controls) {
- $left_icon = Bootstrap::glyphicon('chevron-left');
- $right_icon = Bootstrap::glyphicon('chevron-right');
- $url = Url::fromUserInput("#$id");
- $variables->controls = [
- 'left' => [
- '#type' => 'link',
- '#title' => new FormattableMarkup(Element::create($left_icon)->renderPlain() . '<span class="sr-only">@text</span>', ['@text' => t('Previous')]),
- '#url' => $url,
- '#attributes' => [
- 'class' => ['left', 'carousel-control'],
- 'role' => 'button',
- 'data-slide' => 'prev',
- ],
- ],
- 'right' => [
- '#type' => 'link',
- '#title' => new FormattableMarkup(Element::create($right_icon)->renderPlain() . '<span class="sr-only">@text</span>', ['@text' => t('Next')]),
- '#url' => $url,
- '#attributes' => [
- 'class' => ['right', 'carousel-control'],
- 'role' => 'button',
- 'data-slide' => 'next',
- ],
- ],
- ];
- }
-
-
- if ($variables->indicators) {
- $variables->indicators = [
- '#theme' => 'item_list__bootstrap_carousel_indicators',
- '#list_type' => 'ol',
- '#items' => array_keys($variables->slides),
- '#context' => [
- 'target' => "#$id",
- 'start_index' => $variables->start_index,
- ],
- ];
- }
-
-
- $this->preprocessAttributes();
- }
-
- }
Classes