function PluginBase::isConfigurable
Same name in other branches
- 9 core/lib/Drupal/Component/Plugin/PluginBase.php \Drupal\Component\Plugin\PluginBase::isConfigurable()
- 10 core/lib/Drupal/Component/Plugin/PluginBase.php \Drupal\Component\Plugin\PluginBase::isConfigurable()
- 11.x core/lib/Drupal/Component/Plugin/PluginBase.php \Drupal\Component\Plugin\PluginBase::isConfigurable()
Determines if the plugin is configurable.
Return value
bool A boolean indicating whether the plugin is configurable.
File
-
core/
lib/ Drupal/ Component/ Plugin/ PluginBase.php, line 106
Class
- PluginBase
- Base class for plugins wishing to support metadata inspection.
Namespace
Drupal\Component\PluginCode
public function isConfigurable() {
return $this instanceof ConfigurableInterface || $this instanceof ConfigurablePluginInterface;
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.