public function SourceString::isTranslation in Drupal 8
Same name and namespace in other branches
- 9 core/modules/locale/src/SourceString.php \Drupal\locale\SourceString::isTranslation()
Checks whether the object is a translation string.
Return value
bool TRUE if the object is a translation string, FALSE otherwise.
Overrides StringInterface::isTranslation
File
- core/
modules/ locale/ src/ SourceString.php, line 24
Class
- SourceString
- Defines the locale source string object.
Namespace
Drupal\localeCode
public function isTranslation() {
return FALSE;
}