
| Current Path : /var/www/html/store/web/core/lib/Drupal/Component/Plugin/ |
Linux ift1.ift-informatik.de 5.4.0-216-generic #236-Ubuntu SMP Fri Apr 11 19:53:21 UTC 2025 x86_64 |
| Current File : /var/www/html/store/web/core/lib/Drupal/Component/Plugin/PluginHelper.php |
<?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;
}
}