function EntityPublishedTrait::setUnpublished

File

core/lib/Drupal/Core/Entity/EntityPublishedTrait.php, line 64

Class

EntityPublishedTrait
Provides a trait for published status.

Namespace

Drupal\Core\Entity

Code

public function setUnpublished() {
  $key = $this->getEntityType()
    ->getKey('published');
  $this->set($key, FALSE);
  return $this;
}

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