protected function ProfileTranslationHandler::hasCreatedTime in Drupal 9
Same name and namespace in other branches
- 8 core/modules/user/src/ProfileTranslationHandler.php \Drupal\user\ProfileTranslationHandler::hasCreatedTime()
Checks whether the entity type supports creation time natively.
Return value
bool TRUE if metadata is natively supported, FALSE otherwise.
Overrides ContentTranslationHandler::hasCreatedTime
File
- core/
modules/ user/ src/ ProfileTranslationHandler.php, line 25
Class
- ProfileTranslationHandler
- Defines the translation handler for users.
Namespace
Drupal\userCode
protected function hasCreatedTime() {
// User creation date has nothing to do with translation creation date.
return FALSE;
}