function Block::label

Same name and namespace in other branches
  1. 9 core/modules/block/src/Entity/Block.php \Drupal\block\Entity\Block::label()
  2. 8.9.x core/modules/block/src/Entity/Block.php \Drupal\block\Entity\Block::label()
  3. 11.x core/modules/block/src/Entity/Block.php \Drupal\block\Entity\Block::label()

Overrides EntityBase::label

File

core/modules/block/src/Entity/Block.php, line 204

Class

Block
Defines a Block configuration entity class.

Namespace

Drupal\block\Entity

Code

public function label() {
  $settings = $this->get('settings');
  if ($settings['label']) {
    return $settings['label'];
  }
  else {
    $definition = $this->getPlugin()
      ->getPluginDefinition();
    return $definition['admin_label'];
  }
}

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