You are here

AutomaticCropProviders.php in Crop API 8.2

Namespace

Drupal\crop\Events

File

src/Events/AutomaticCropProviders.php
View source
<?php

namespace Drupal\crop\Events;

use Symfony\Component\EventDispatcher\Event;

/**
 * Collects "Automatic crop" providers.
 */
class AutomaticCropProviders extends Event {

  /**
   * Automatic Crop provider list.
   *
   * @var array
   */
  protected $providers = [];

  /**
   * Adds provider.
   *
   * @param array $provider
   *   Register provider to providers list.
   */
  public function registerProvider(array $provider) {
    $this->providers[key($provider)] = current($provider);
  }

  /**
   * Sets automatic crop providers.
   *
   * @param array $providers
   *   List of automatic crop providers.
   */
  public function setProviders(array $providers) {
    $this->providers = $providers;
  }

  /**
   * Gets automatic crop providers.
   *
   * @return array
   *   List of providers.
   */
  public function getProviders() {
    return $this->providers;
  }

}

Classes

Namesort descending Description
AutomaticCropProviders Collects "Automatic crop" providers.