Version 1
[yaffs-website] / web / core / lib / Drupal / Core / Block / TitleBlockPluginInterface.php
diff --git a/web/core/lib/Drupal/Core/Block/TitleBlockPluginInterface.php b/web/core/lib/Drupal/Core/Block/TitleBlockPluginInterface.php
new file mode 100644 (file)
index 0000000..1dffda9
--- /dev/null
@@ -0,0 +1,25 @@
+<?php
+
+namespace Drupal\Core\Block;
+
+/**
+ * The interface for "title" blocks.
+ *
+ * A title block shows the title returned by the controller.
+ *
+ * @ingroup block_api
+ *
+ * @see \Drupal\Core\Render\Element\PageTitle
+ */
+interface TitleBlockPluginInterface extends BlockPluginInterface {
+
+  /**
+   * Sets the title.
+   *
+   * @param string|array $title
+   *   The page title: either a string for plain titles or a render array for
+   *   formatted titles.
+   */
+  public function setTitle($title);
+
+}