public 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 23
Class
- SourceString
- Defines the locale source string object.
Namespace
Drupal\locale
Code
1 2 3 | public function isTranslation() { return FALSE; } |
Please login to continue.