You are here

protected function ProfileTranslationHandler::hasCreatedTime in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 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 30
Contains \Drupal\user\ProfileTranslationHandler.

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;
}