ImageToolkitManager.php

Contains \Drupal\system\Plugin\ImageToolkitManager.

Namespace

Drupal\system\Plugin

File

drupal/core/modules/system/lib/Drupal/system/Plugin/ImageToolkitManager.php
View source
<?php

/**
 * @file
 * Contains \Drupal\system\Plugin\ImageToolkitManager.
 */
namespace Drupal\system\Plugin;

use Drupal\Component\Plugin\Factory\DefaultFactory;
use Drupal\Component\Plugin\PluginManagerBase;
use Drupal\Core\Plugin\Discovery\AnnotatedClassDiscovery;

/**
 * Manages toolkit plugins.
 */
class ImageToolkitManager extends PluginManagerBase {

  /**
   * Constructs the ImageToolkitManager object.
   *
   * @param \Traversable $namespaces
   *   An object that implements \Traversable which contains the root paths
   *   keyed by the corresponding namespace to look for plugin implementations,
   */
  public function __construct(\Traversable $namespaces) {
    $this->discovery = new AnnotatedClassDiscovery('ImageToolkit', $namespaces);
    $this->factory = new DefaultFactory($this->discovery);
  }

  /**
   * Gets the default image toolkit.
   *
   * @param string $toolkit_id
   *   (optional) String specifying toolkit to load. NULL will load the default
   *   toolkit.
   *
   * @return \Drupal\system\Plugin\ImageToolkitInterface
   *   Object of the default toolkit, or FALSE on error.
   */
  public function getDefaultToolkit() {
    $toolkit_id = config('system.image')
      ->get('toolkit');
    $toolkits = $this
      ->getAvailableToolkits();
    if (!isset($toolkits[$toolkit_id]) || !class_exists($toolkits[$toolkit_id]['class'])) {

      // The selected toolkit isn't available so return the first one found. If
      // none are available this will return FALSE.
      reset($toolkits);
      $toolkit_id = key($toolkits);
    }
    if ($toolkit_id) {
      $toolkit = $this
        ->createInstance($toolkit_id);
    }
    else {
      $toolkit = FALSE;
    }
    return $toolkit;
  }

  /**
   * Gets a list of available toolkits.
   *
   * @return array
   *   An array with the toolkit names as keys and the descriptions as values.
   */
  public function getAvailableToolkits() {

    // Use plugin system to get list of available toolkits.
    $toolkits = $this
      ->getDefinitions();
    $output = array();
    foreach ($toolkits as $id => $definition) {

      // Only allow modules that aren't marked as unavailable.
      if (call_user_func($definition['class'] . '::isAvailable')) {
        $output[$id] = $definition;
      }
    }
    return $output;
  }

}

Classes

Namesort descending Description
ImageToolkitManager Manages toolkit plugins.