protected 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\user
Code
protected function hasCreatedTime() {
// User creation date has nothing to do with translation creation date.
return FALSE;
}
Please login to continue.