You are here

GuardFactory.php in State Machine 8

File

src/Guard/GuardFactory.php
View source
<?php

namespace Drupal\state_machine\Guard;

use Symfony\Component\DependencyInjection\ContainerInterface;

/**
 * Default implementation of the guard factory.
 */
class GuardFactory implements GuardFactoryInterface {

  /**
   * The service container.
   *
   * @var \Symfony\Component\DependencyInjection\ContainerInterface
   */
  protected $container;

  /**
   * The guard service ids, grouped by workflow group ID.
   *
   * @var string[]
   */
  protected $guardServiceIds;

  /**
   * Constructs a new GuardFactory object.
   *
   * @param \Symfony\Component\DependencyInjection\ContainerInterface $container
   *   The service container.
   * @param string[] $guard_service_ids
   *   The guard service IDs, grouped by workflow group ID.
   */
  public function __construct(ContainerInterface $container, array $guard_service_ids) {
    $this->container = $container;
    $this->guardServiceIds = $guard_service_ids;
  }

  /**
   * {@inheritdoc}
   */
  public function get($group_id) {
    $service_ids = [];
    if (isset($this->guardServiceIds[$group_id])) {
      $service_ids = array_merge($service_ids, $this->guardServiceIds[$group_id]);
    }
    if (isset($this->guardServiceIds['_generic'])) {
      $service_ids = array_merge($service_ids, $this->guardServiceIds['_generic']);
    }
    $guards = [];
    foreach ($service_ids as $service_id) {
      $guards[] = $this->container
        ->get($service_id);
    }
    return $guards;
  }

}

Classes

Namesort descending Description
GuardFactory Default implementation of the guard factory.