You are here

PhotoswipeAssetsManager.php in PhotoSwipe 8.2

Same filename and directory in other branches
  1. 8 src/PhotoswipeAssetsManager.php
  2. 3.x src/PhotoswipeAssetsManager.php

Namespace

Drupal\photoswipe

File

src/PhotoswipeAssetsManager.php
View source
<?php

namespace Drupal\photoswipe;

use Drupal\Core\Config\ConfigFactoryInterface;
use Drupal\Core\Render\RendererInterface;

/**
 * Photoswipe asset manager.
 */
class PhotoswipeAssetsManager implements PhotoswipeAssetsManagerInterface {

  /**
   * Whether the assets were attached somewhere in this request or not.
   *
   * @var bool
   */
  protected $attached;

  /**
   * Photoswipe config.
   *
   * @var \Drupal\Core\Config\ImmutableConfig
   */
  protected $config;

  /**
   * The renderer.
   *
   * @var \Drupal\Core\Render\RendererInterface
   */
  protected $renderer;

  /**
   * Creates a \Drupal\photoswipe\PhotoswipeAssetsManager.
   *
   * @param \Drupal\Core\Config\ConfigFactoryInterface $config
   *   The config factory.
   * @param \Drupal\Core\Render\RendererInterface $renderer
   *   The renderer service.
   */
  public function __construct(ConfigFactoryInterface $config, RendererInterface $renderer) {
    $this->config = $config
      ->get('photoswipe.settings');
    $this->renderer = $renderer;
  }

  /**
   * {@inheritdoc}
   */
  public function attach(array &$element) {

    // Add the library of Photoswipe assets.
    $element['#attached']['library'][] = 'photoswipe/photoswipe';

    // Load initialization file.
    $element['#attached']['library'][] = 'photoswipe/photoswipe.init';

    // Add photoswipe js settings.
    $options = $this->config
      ->get('options');

    // Allow other modules to alter / extend the options to pass to photoswipe
    // JavaScript.
    \Drupal::moduleHandler()
      ->alter('photoswipe_js_options', $options);
    $element['#attached']['drupalSettings']['photoswipe']['options'] = $options;

    // Add photoswipe container with class="pswp".
    $template = [
      "#theme" => 'photoswipe_container',
    ];
    $element['#attached']['drupalSettings']['photoswipe']['container'] = $this->renderer
      ->renderPlain($template);
    $this->attached = TRUE;
  }

  /**
   * {@inheritdoc}
   */
  public function isAttached() {
    return $this->attached;
  }

}

Classes

Namesort descending Description
PhotoswipeAssetsManager Photoswipe asset manager.