You are here

WebformHandlerPluginCollection.php in Webform 6.x

Same filename and directory in other branches
  1. 8.5 src/Plugin/WebformHandlerPluginCollection.php

File

src/Plugin/WebformHandlerPluginCollection.php
View source
<?php

namespace Drupal\webform\Plugin;

use Drupal\Core\Plugin\DefaultLazyPluginCollection;
use Drupal\webform\Plugin\WebformHandler\BrokenWebformHandler;

/**
 * A collection of webform handlers.
 */
class WebformHandlerPluginCollection extends DefaultLazyPluginCollection {

  /**
   * {@inheritdoc}
   */
  public function sortHelper($a_id, $b_id) {

    /** @var \Drupal\webform\Plugin\WebformHandlerInterface $a */
    $a = $this
      ->get($a_id);

    /** @var \Drupal\webform\Plugin\WebformHandlerInterface $b */
    $b = $this
      ->get($b_id);
    $a_weight = $a
      ->getWeight();
    $b_weight = $b
      ->getWeight();
    if ($a_weight === $b_weight) {
      return strnatcasecmp($a
        ->getHandlerId(), $b
        ->getHandlerId());
    }
    return $a_weight < $b_weight ? -1 : 1;
  }

  /**
   * {@inheritdoc}
   */
  protected function initializePlugin($instance_id) {
    parent::initializePlugin($instance_id);

    // If the initialized handler is broken preserve the original
    // handler's plugin ID.
    // @see \Drupal\webform\Plugin\WebformHandler\BrokenWebformHandler::setPluginId
    $plugin = $this
      ->get($instance_id);
    if ($plugin instanceof BrokenWebformHandler) {
      $original_id = $this->configurations[$instance_id]['id'];
      $plugin
        ->setPluginId($original_id);
    }
  }

}

Classes

Namesort descending Description
WebformHandlerPluginCollection A collection of webform handlers.