public function EntityPublishedTrait::setUnpublished in Drupal 8
Same name and namespace in other branches
- 9 core/lib/Drupal/Core/Entity/EntityPublishedTrait.php \Drupal\Core\Entity\EntityPublishedTrait::setUnpublished()
File
- core/
lib/ Drupal/ Core/ Entity/ EntityPublishedTrait.php, line 71
Class
- EntityPublishedTrait
- Provides a trait for published status.
Namespace
Drupal\Core\EntityCode
public function setUnpublished() {
$key = $this
->getEntityType()
->getKey('published');
$this
->set($key, FALSE);
return $this;
}