Version 1
[yaffs-website] / web / core / lib / Drupal / Core / Entity / EntityPublishedInterface.php
diff --git a/web/core/lib/Drupal/Core/Entity/EntityPublishedInterface.php b/web/core/lib/Drupal/Core/Entity/EntityPublishedInterface.php
new file mode 100644 (file)
index 0000000..4372008
--- /dev/null
@@ -0,0 +1,41 @@
+<?php
+
+namespace Drupal\Core\Entity;
+
+/**
+ * Provides an interface for access to an entity's published state.
+ */
+interface EntityPublishedInterface {
+
+  /**
+   * Returns whether or not the entity is published.
+   *
+   * @return bool
+   *   TRUE if the entity is published, FALSE otherwise.
+   */
+  public function isPublished();
+
+  /**
+   * Sets the entity as published.
+   *
+   * @param bool|null $published
+   *   (optional and deprecated) TRUE to set this entity to published, FALSE to
+   *   set it to unpublished. Defaults to NULL. This parameter is deprecated in
+   *   Drupal 8.3.0 and will be removed before Drupal 9.0.0. Use this method,
+   *   without any parameter, to set the entity as published and
+   *   setUnpublished() to set the entity as unpublished.
+   *
+   * @return $this
+   *
+   * @see \Drupal\Core\Entity\EntityPublishedInterface::setUnpublished()
+   */
+  public function setPublished($published = NULL);
+
+  /**
+   * Sets the entity as unpublished.
+   *
+   * @return $this
+   */
+  public function setUnpublished();
+
+}