You are here

public function DashboardBlockBase::isConfigurable in Content Planner 8

Determines if the plugin is configurable.

Return value

bool A boolean indicating whether the plugin is configurable.

Overrides PluginBase::isConfigurable

File

src/DashboardBlockBase.php, line 81

Class

DashboardBlockBase
Implements DashboardBlockBase.

Namespace

Drupal\content_planner

Code

public function isConfigurable() {
  if (array_key_exists('configurable', $this->pluginDefinition)) {
    return $this->pluginDefinition['configurable'];
  }
  return FALSE;
}