protected 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 49
Class
- BlockContentTypeListBuilder
- Defines a class to build a listing of custom block type entities.
Namespace
Drupal\block_content
Code
1 2 3 | protected function getTitle() { return $this ->t( 'Custom block types' ); } |
Please login to continue.