public function PlatformBase::getFieldDescription in Social Media Links Block and Field 8.2
Returns the description for the value field.
Return value
string The description of the value field.
Overrides PlatformInterface::getFieldDescription
File
- src/
PlatformBase.php, line 57
Class
- PlatformBase
- Base class for platform.
Namespace
Drupal\social_media_linksCode
public function getFieldDescription() {
return isset($this->pluginDefinition['fieldDescription']) ? $this->pluginDefinition['fieldDescription'] : '';
}