CreatedItem.php

Same filename and directory in other branches
  1. 9 core/lib/Drupal/Core/Field/Plugin/Field/FieldType/CreatedItem.php
  2. 10 core/lib/Drupal/Core/Field/Plugin/Field/FieldType/CreatedItem.php
  3. 11.x core/lib/Drupal/Core/Field/Plugin/Field/FieldType/CreatedItem.php

Namespace

Drupal\Core\Field\Plugin\Field\FieldType

File

core/lib/Drupal/Core/Field/Plugin/Field/FieldType/CreatedItem.php

View source
<?php

namespace Drupal\Core\Field\Plugin\Field\FieldType;


/**
 * Defines the 'created' entity field type.
 *
 * @FieldType(
 *   id = "created",
 *   label = @Translation("Created"),
 *   description = @Translation("An entity field containing a UNIX timestamp of when the entity has been created."),
 *   no_ui = TRUE,
 *   default_widget = "datetime_timestamp",
 *   default_formatter = "timestamp"
 * )
 */
class CreatedItem extends TimestampItem {
    
    /**
     * {@inheritdoc}
     */
    public function applyDefaultValue($notify = TRUE) {
        parent::applyDefaultValue($notify);
        // Created fields default to the current timestamp.
        $this->setValue([
            'value' => REQUEST_TIME,
        ], $notify);
        return $this;
    }

}

Classes

Title Deprecated Summary
CreatedItem Defines the 'created' entity field type.

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.