public function SettingBase::getTitle in Express 8
Retrieves the setting's human-readable title.
Return value
string The setting's type.
Overrides SettingInterface::getTitle
File
- themes/
contrib/ bootstrap/ src/ Plugin/ Setting/ SettingBase.php, line 182 - Contains \Drupal\bootstrap\Plugin\Setting\SettingBase.
Class
- SettingBase
- Base class for a setting.
Namespace
Drupal\bootstrap\Plugin\SettingCode
public function getTitle() {
return !empty($this->pluginDefinition['title']) ? $this->pluginDefinition['title'] : NULL;
}