PluginHelper.php

Namespace

Drupal\Component\Plugin

File

core/lib/Drupal/Component/Plugin/PluginHelper.php

View source
<?php

namespace Drupal\Component\Plugin;


/**
 * A helper class to determine if a plugin is configurable.
 *
 * @todo Deprecate this class. https://www.drupal.org/node/3105685
 */
class PluginHelper {
  
  /**
   * Determines if a plugin is configurable.
   *
   * @param mixed $plugin
   *   The plugin to check.
   *
   * @return bool
   *   A boolean indicating whether the plugin is configurable.
   */
  public static function isConfigurable($plugin) {
    return $plugin instanceof ConfigurableInterface;
  }

}

Classes

Title Deprecated Summary
PluginHelper A helper class to determine if a plugin is configurable.

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.