You are here

class OverrideHelper in Lightning Core 8

Same name and namespace in other branches
  1. 8.5 src/OverrideHelper.php \Drupal\lightning_core\OverrideHelper
  2. 8.2 src/OverrideHelper.php \Drupal\lightning_core\OverrideHelper
  3. 8.3 src/OverrideHelper.php \Drupal\lightning_core\OverrideHelper
  4. 8.4 src/OverrideHelper.php \Drupal\lightning_core\OverrideHelper

Helps tweak and override implementations of various things.

Hierarchy

Expanded class hierarchy of OverrideHelper

1 file declares its use of OverrideHelper
lightning_core.module in ./lightning_core.module
Contains core functionality for the Lightning distribution.

File

src/OverrideHelper.php, line 10

Namespace

Drupal\lightning_core
View source
class OverrideHelper {

  /**
   * Overrides the class implementation specified in a plugin definition.
   *
   * The replacement class is only used if its immediate parent is the class
   * specified by the plugin definition.
   *
   * @param array $plugin_definition
   *   The plugin definition.
   * @param string $replacement_class
   *   The class to use.
   */
  public static function pluginClass(array &$plugin_definition, $replacement_class) {
    if (get_parent_class($replacement_class) == $plugin_definition['class']) {
      $plugin_definition['class'] = $replacement_class;
    }
  }

  /**
   * Overrides the entity class for an entity type.
   *
   * The replacement class is only used if its immediate parent is the class
   * specified by the entity type.
   *
   * @param \Drupal\Core\Entity\EntityTypeInterface $entity_type
   *   The entity type definition.
   * @param string $replacement_class
   *   The class to use.
   */
  public static function entityClass(EntityTypeInterface $entity_type, $replacement_class) {
    if (get_parent_class($replacement_class) == $entity_type
      ->getClass()) {
      $entity_type
        ->setClass($replacement_class);
    }
  }

  /**
   * Overrides the class used for an entity form.
   *
   * The replacement class is only used if its immediate parent is the form
   * class used for the specified operation.
   *
   * @param \Drupal\Core\Entity\EntityTypeInterface $entity_type
   *   The entity type definition.
   * @param string $replacement_class
   *   The class to use.
   * @param string $operation
   *   (optional) The entity operation.
   */
  public static function entityForm(EntityTypeInterface $entity_type, $replacement_class, $operation = 'default') {
    if (get_parent_class($replacement_class) == $entity_type
      ->getFormClass($operation)) {
      $entity_type
        ->setFormClass($operation, $replacement_class);
    }
  }

  /**
   * Overrides the class used for an entity handler.
   *
   * The replacement class is only used if its immediate parent is the handler
   * class specified by the entity type definition.
   *
   * @param \Drupal\Core\Entity\EntityTypeInterface $entity_type
   *   The entity type definition.
   * @param string $handler_type
   *   The handler type.
   * @param string $replacement_class
   *   The class to use.
   */
  public static function entityHandler(EntityTypeInterface $entity_type, $handler_type, $replacement_class) {
    if (get_parent_class($replacement_class) == $entity_type
      ->getHandlerClass($handler_type)) {
      $entity_type
        ->setHandlerClass($handler_type, $replacement_class);
    }
  }

}

Members

Namesort descending Modifiers Type Description Overrides
OverrideHelper::entityClass public static function Overrides the entity class for an entity type.
OverrideHelper::entityForm public static function Overrides the class used for an entity form.
OverrideHelper::entityHandler public static function Overrides the class used for an entity handler.
OverrideHelper::pluginClass public static function Overrides the class implementation specified in a plugin definition.