dateTime = $dateTime; } /** * Set created date * * @param \Magento\Framework\Model\AbstractModel $object * @return $this */ public function beforeSave($object) { $attributeCode = $this->getAttribute()->getAttributeCode(); if ($object->isObjectNew() && $object->getData($attributeCode) === null) { $object->setData( $attributeCode, gmdate(\Magento\Framework\Stdlib\DateTime::DATETIME_PHP_FORMAT) ); } return $this; } }