You are here

NgLightboxServiceProvider.php in NG Lightbox 2.x

Same filename and directory in other branches
  1. 8 src/NgLightboxServiceProvider.php

Namespace

Drupal\ng_lightbox

File

src/NgLightboxServiceProvider.php
View source
<?php

namespace Drupal\ng_lightbox;

use Drupal\Core\DependencyInjection\ContainerBuilder;
use Drupal\Core\DependencyInjection\ServiceProviderBase;

/**
 * The NgLightboxServiceProvider class.
 */
class NgLightboxServiceProvider extends ServiceProviderBase {

  /**
   * {@inheritdoc}
   */
  public function register(ContainerBuilder $container) {
    $container
      ->addCompilerPass(new NgLightboxPass());
  }

  /**
   * {@inheritdoc}
   */
  public function alter(ContainerBuilder $container) {
    $this
      ->addLightbox($container, 'main_content_renderer.dialog', 'Core Dialog');
    $this
      ->addLightbox($container, 'main_content_renderer.modal', 'Core Modal');
  }

  /**
   * Function for addLightBox.
   *
   * @param \Drupal\Core\DependencyInjection\ContainerBuilder $container
   *   Drupal's dependency injection container builder.
   * @param string $id
   *   The ID of the main content render box.
   * @param string $title
   *   The title of the box.
   */
  protected function addLightbox(ContainerBuilder $container, $id, $title) {
    $definition = $container
      ->getDefinition($id);
    $tags = $definition
      ->getTags();
    foreach ($tags as $delta => &$tag) {
      if ($delta === 'render.main_content_renderer') {
        foreach ($tag as &$attribute) {
          $attribute['ng_lightbox'] = $title;
        }
      }
    }
    $definition
      ->setTags($tags);
  }

}

Classes

Namesort descending Description
NgLightboxServiceProvider The NgLightboxServiceProvider class.