You are here

protected function BlockContentTypeListBuilder::getTitle in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 core/modules/block_content/src/BlockContentTypeListBuilder.php \Drupal\block_content\BlockContentTypeListBuilder::getTitle()

Gets the title of the page.

Return value

string A string title of the page.

Overrides EntityListBuilder::getTitle

File

core/modules/block_content/src/BlockContentTypeListBuilder.php, line 54
Contains \Drupal\block_content\BlockContentTypeListBuilder.

Class

BlockContentTypeListBuilder
Defines a class to build a listing of custom block type entities.

Namespace

Drupal\block_content

Code

protected function getTitle() {
  return $this
    ->t('Custom block types');
}