You are here

public function FrontendEnvironmentBase::label in Build Hooks 8.2

Same name and namespace in other branches
  1. 3.x src/Plugin/FrontendEnvironmentBase.php \Drupal\build_hooks\Plugin\FrontendEnvironmentBase::label()

File

src/Plugin/FrontendEnvironmentBase.php, line 32

Class

FrontendEnvironmentBase
Base class for Frontend environment plugins.

Namespace

Drupal\build_hooks\Plugin

Code

public function label() {
  if (!empty($this->configuration['label'])) {
    return $this->configuration['label'];
  }
}