1 block.update.inc | DashboardUpdateBlock::getTitle() |
Return the title of a block as configured in the layout.
Return value
mixed:
Overrides Block::getTitle
File
- core/
modules/ dashboard/ includes/ block.update.inc, line 28 - Available Updates dashboard block.
Class
Code
function getTitle() {
return !empty($this->settings['title']) ? check_plain($this->settings['title']) : t('Available Updates');
}