W3cubDocs

/Drupal 8

public function ConfigEntityBase::isNew

public ConfigEntityBase::isNew()

Overrides Entity::isNew().

EntityInterface::enforceIsNew() is only supported for newly created configuration entities but has no effect after saving, since each configuration entity is unique.

Overrides Entity::isNew

File

core/lib/Drupal/Core/Config/Entity/ConfigEntityBase.php, line 150

Class

ConfigEntityBase
Defines a base configuration entity class.

Namespace

Drupal\Core\Config\Entity

Code

public function isNew() {
  return !empty($this->enforceIsNew);
}

© 2001–2016 by the original authors
Licensed under the GNU General Public License, version 2 and later.
Drupal is a registered trademark of Dries Buytaert.
https://api.drupal.org/api/drupal/core!lib!Drupal!Core!Config!Entity!ConfigEntityBase.php/function/ConfigEntityBase::isNew/8.1.x