Parcourir la source

Initial commit

logicp il y a 7 ans
commit
e75ccf9084

+ 228 - 0
statusmessage/src/Entity/Status.php

@@ -0,0 +1,228 @@
+<?php
+
+namespace Drupal\statusmessage\Entity;
+
+use Drupal\Core\Entity\EntityStorageInterface;
+use Drupal\Core\Field\BaseFieldDefinition;
+use Drupal\Core\Entity\ContentEntityBase;
+use Drupal\Core\Entity\EntityChangedTrait;
+use Drupal\Core\Entity\EntityTypeInterface;
+use Drupal\statusmessage\StatusInterface;
+use Drupal\user\UserInterface;
+
+/**
+ * Defines the Status entity.
+ *
+ * @ingroup statusmessage
+ *
+ * @ContentEntityType(
+ *   id = "status",
+ *   label = @Translation("Status"),
+ *   handlers = {
+ *     "view_builder" = "Drupal\Core\Entity\EntityViewBuilder",
+ *     "list_builder" = "Drupal\statusmessage\StatusListBuilder",
+ *     "views_data" = "Drupal\statusmessage\Entity\StatusViewsData",
+ *
+ *     "form" = {
+ *       "default" = "Drupal\statusmessage\Form\StatusForm",
+ *       "add" = "Drupal\statusmessage\Form\StatusForm",
+ *       "edit" = "Drupal\statusmessage\Form\StatusForm",
+ *       "delete" = "Drupal\statusmessage\Form\StatusDeleteForm",
+ *     },
+ *     "access" = "Drupal\statusmessage\StatusAccessControlHandler",
+ *     "route_provider" = {
+ *       "html" = "Drupal\statusmessage\StatusHtmlRouteProvider",
+ *     },
+ *   },
+ *   base_table = "status",
+ *   admin_permission = "administer status entities",
+ *   entity_keys = {
+ *     "id" = "id",
+ *     "label" = "name",
+ *     "uuid" = "uuid",
+ *     "uid" = "user_id",
+ *     "langcode" = "langcode",
+ *     "status" = "status",
+ *   },
+ *   links = {
+ *     "canonical" = "/admin/structure/status/{status}",
+ *     "add-form" = "/admin/structure/status/add",
+ *     "edit-form" = "/admin/structure/status/{status}/edit",
+ *     "delete-form" = "/admin/structure/status/{status}/delete",
+ *     "collection" = "/admin/structure/status",
+ *   },
+ *   field_ui_base_route = "status.settings"
+ * )
+ */
+class Status extends ContentEntityBase implements StatusInterface {
+  use EntityChangedTrait;
+  /**
+   * {@inheritdoc}
+   */
+  public static function preCreate(EntityStorageInterface $storage_controller, array &$values) {
+    parent::preCreate($storage_controller, $values);
+    $values += array(
+      'user_id' => \Drupal::currentUser()->id(),
+    );
+  }
+
+  /**
+   * {@inheritdoc}
+   */
+  public function getName() {
+    return $this->get('name')->value;
+  }
+
+  /**
+   * {@inheritdoc}
+   */
+  public function setName($name) {
+    $this->set('name', $name);
+    return $this;
+  }
+
+  /**
+   * {@inheritdoc}
+   */
+  public function getCreatedTime() {
+    return $this->get('created')->value;
+  }
+
+  /**
+   * {@inheritdoc}
+   */
+  public function setCreatedTime($timestamp) {
+    $this->set('created', $timestamp);
+    return $this;
+  }
+
+  /**
+   * {@inheritdoc}
+   */
+  public function getOwner() {
+    return $this->get('user_id')->entity;
+  }
+
+  /**
+   * {@inheritdoc}
+   */
+  public function getOwnerId() {
+    return $this->get('user_id')->target_id;
+  }
+
+  /**
+   * {@inheritdoc}
+   */
+  public function setOwnerId($uid) {
+    $this->set('user_id', $uid);
+    return $this;
+  }
+
+  /**
+   * {@inheritdoc}
+   */
+  public function setOwner(UserInterface $account) {
+    $this->set('user_id', $account->id());
+    return $this;
+  }
+
+  /**
+   * {@inheritdoc}
+   */
+  public function isPublished() {
+    return (bool) $this->getEntityKey('status');
+  }
+
+  /**
+   * {@inheritdoc}
+   */
+  public function setPublished($published) {
+    $this->set('status', $published ? NODE_PUBLISHED : NODE_NOT_PUBLISHED);
+    return $this;
+  }
+
+  /**
+   * {@inheritdoc}
+   */
+  public static function baseFieldDefinitions(EntityTypeInterface $entity_type) {
+    $fields['id'] = BaseFieldDefinition::create('integer')
+      ->setLabel(t('ID'))
+      ->setDescription(t('The ID of the Status entity.'))
+      ->setReadOnly(TRUE);
+    $fields['uuid'] = BaseFieldDefinition::create('uuid')
+      ->setLabel(t('UUID'))
+      ->setDescription(t('The UUID of the Status entity.'))
+      ->setReadOnly(TRUE);
+
+    $fields['user_id'] = BaseFieldDefinition::create('entity_reference')
+      ->setLabel(t('Authored by'))
+      ->setDescription(t('The user ID of author of the Status entity.'))
+      ->setRevisionable(TRUE)
+      ->setSetting('target_type', 'user')
+      ->setSetting('handler', 'default')
+      ->setDefaultValueCallback('Drupal\node\Entity\Node::getCurrentUserId')
+      ->setTranslatable(TRUE)
+      ->setDisplayOptions('view', array(
+        'label' => 'hidden',
+        'type' => 'author',
+        'weight' => 0,
+      ))
+      ->setDisplayOptions('form', array(
+        'type' => 'entity_reference_autocomplete',
+        'weight' => 5,
+        'settings' => array(
+          'match_operator' => 'CONTAINS',
+          'size' => '60',
+          'autocomplete_type' => 'tags',
+          'placeholder' => '',
+        ),
+      ))
+      ->setDisplayConfigurable('form', TRUE)
+      ->setDisplayConfigurable('view', TRUE);
+
+    $fields['name'] = BaseFieldDefinition::create('string')
+      ->setLabel(t('Name'))
+      ->setDescription(t('The name of the Status entity.'))
+      ->setSettings(array(
+        'max_length' => 50,
+        'text_processing' => 0,
+      ))
+      ->setDefaultValue('')
+      ->setDisplayOptions('view', array(
+        'label' => 'above',
+        'type' => 'string',
+        'weight' => -4,
+      ))
+      ->setDisplayOptions('form', array(
+        'type' => 'string_textfield',
+        'weight' => -4,
+      ))
+      ->setDisplayConfigurable('form', TRUE)
+      ->setDisplayConfigurable('view', TRUE);
+
+    $fields['status'] = BaseFieldDefinition::create('boolean')
+      ->setLabel(t('Publishing status'))
+      ->setDescription(t('A boolean indicating whether the Status is published.'))
+      ->setDefaultValue(TRUE);
+
+    $fields['langcode'] = BaseFieldDefinition::create('language')
+      ->setLabel(t('Language code'))
+      ->setDescription(t('The language code for the Status entity.'))
+      ->setDisplayOptions('form', array(
+        'type' => 'language_select',
+        'weight' => 10,
+      ))
+      ->setDisplayConfigurable('form', TRUE);
+
+    $fields['created'] = BaseFieldDefinition::create('created')
+      ->setLabel(t('Created'))
+      ->setDescription(t('The time that the entity was created.'));
+
+    $fields['changed'] = BaseFieldDefinition::create('changed')
+      ->setLabel(t('Changed'))
+      ->setDescription(t('The time that the entity was last edited.'));
+
+    return $fields;
+  }
+
+}

+ 27 - 0
statusmessage/src/Entity/StatusViewsData.php

@@ -0,0 +1,27 @@
+<?php
+
+namespace Drupal\statusmessage\Entity;
+
+use Drupal\views\EntityViewsData;
+use Drupal\views\EntityViewsDataInterface;
+
+/**
+ * Provides Views data for Status entities.
+ */
+class StatusViewsData extends EntityViewsData implements EntityViewsDataInterface {
+  /**
+   * {@inheritdoc}
+   */
+  public function getViewsData() {
+    $data = parent::getViewsData();
+
+    $data['status']['table']['base'] = array(
+      'field' => 'id',
+      'title' => $this->t('Status'),
+      'help' => $this->t('The Status ID.'),
+    );
+
+    return $data;
+  }
+
+}

+ 14 - 0
statusmessage/src/Form/StatusDeleteForm.php

@@ -0,0 +1,14 @@
+<?php
+
+namespace Drupal\statusmessage\Form;
+
+use Drupal\Core\Entity\ContentEntityDeleteForm;
+
+/**
+ * Provides a form for deleting Status entities.
+ *
+ * @ingroup statusmessage
+ */
+class StatusDeleteForm extends ContentEntityDeleteForm {
+
+}

+ 47 - 0
statusmessage/src/Form/StatusForm.php

@@ -0,0 +1,47 @@
+<?php
+
+namespace Drupal\statusmessage\Form;
+
+use Drupal\Core\Entity\ContentEntityForm;
+use Drupal\Core\Form\FormStateInterface;
+
+/**
+ * Form controller for Status edit forms.
+ *
+ * @ingroup statusmessage
+ */
+class StatusForm extends ContentEntityForm {
+  /**
+   * {@inheritdoc}
+   */
+  public function buildForm(array $form, FormStateInterface $form_state) {
+    /* @var $entity \Drupal\statusmessage\Entity\Status */
+    $form = parent::buildForm($form, $form_state);
+    $entity = $this->entity;
+
+    return $form;
+  }
+
+  /**
+   * {@inheritdoc}
+   */
+  public function save(array $form, FormStateInterface $form_state) {
+    $entity = $this->entity;
+    $status = parent::save($form, $form_state);
+
+    switch ($status) {
+      case SAVED_NEW:
+        drupal_set_message($this->t('Created the %label Status.', [
+          '%label' => $entity->label(),
+        ]));
+        break;
+
+      default:
+        drupal_set_message($this->t('Saved the %label Status.', [
+          '%label' => $entity->label(),
+        ]));
+    }
+    $form_state->setRedirect('entity.status.canonical', ['status' => $entity->id()]);
+  }
+
+}

+ 55 - 0
statusmessage/src/Form/StatusSettingsForm.php

@@ -0,0 +1,55 @@
+<?php
+
+namespace Drupal\statusmessage\Form;
+
+use Drupal\Core\Form\FormBase;
+use Drupal\Core\Form\FormStateInterface;
+
+/**
+ * Class StatusSettingsForm.
+ *
+ * @package Drupal\statusmessage\Form
+ *
+ * @ingroup statusmessage
+ */
+class StatusSettingsForm extends FormBase {
+  /**
+   * Returns a unique string identifying the form.
+   *
+   * @return string
+   *   The unique string identifying the form.
+   */
+  public function getFormId() {
+    return 'Status_settings';
+  }
+
+  /**
+   * Form submission handler.
+   *
+   * @param array $form
+   *   An associative array containing the structure of the form.
+   * @param \Drupal\Core\Form\FormStateInterface $form_state
+   *   The current state of the form.
+   */
+  public function submitForm(array &$form, FormStateInterface $form_state) {
+    // Empty implementation of the abstract submit class.
+  }
+
+
+  /**
+   * Defines the settings form for Status entities.
+   *
+   * @param array $form
+   *   An associative array containing the structure of the form.
+   * @param \Drupal\Core\Form\FormStateInterface $form_state
+   *   The current state of the form.
+   *
+   * @return array
+   *   Form definition array.
+   */
+  public function buildForm(array $form, FormStateInterface $form_state) {
+    $form['Status_settings']['#markup'] = 'Settings form for Status entities. Manage field settings here.';
+    return $form;
+  }
+
+}

+ 46 - 0
statusmessage/src/StatusAccessControlHandler.php

@@ -0,0 +1,46 @@
+<?php
+
+namespace Drupal\statusmessage;
+
+use Drupal\Core\Entity\EntityAccessControlHandler;
+use Drupal\Core\Entity\EntityInterface;
+use Drupal\Core\Session\AccountInterface;
+use Drupal\Core\Access\AccessResult;
+
+/**
+ * Access controller for the Status entity.
+ *
+ * @see \Drupal\statusmessage\Entity\Status.
+ */
+class StatusAccessControlHandler extends EntityAccessControlHandler {
+  /**
+   * {@inheritdoc}
+   */
+  protected function checkAccess(EntityInterface $entity, $operation, AccountInterface $account) {
+    /** @var \Drupal\statusmessage\StatusInterface $entity */
+    switch ($operation) {
+      case 'view':
+        if (!$entity->isPublished()) {
+          return AccessResult::allowedIfHasPermission($account, 'view unpublished status entities');
+        }
+        return AccessResult::allowedIfHasPermission($account, 'view published status entities');
+
+      case 'update':
+        return AccessResult::allowedIfHasPermission($account, 'edit status entities');
+
+      case 'delete':
+        return AccessResult::allowedIfHasPermission($account, 'delete status entities');
+    }
+
+    // Unknown operation, no opinion.
+    return AccessResult::neutral();
+  }
+
+  /**
+   * {@inheritdoc}
+   */
+  protected function checkCreateAccess(AccountInterface $account, array $context, $entity_bundle = NULL) {
+    return AccessResult::allowedIfHasPermission($account, 'add status entities');
+  }
+
+}

+ 125 - 0
statusmessage/src/StatusHtmlRouteProvider.php

@@ -0,0 +1,125 @@
+<?php
+
+namespace Drupal\statusmessage;
+
+use Drupal\Core\Entity\EntityTypeInterface;
+use Drupal\Core\Entity\Routing\AdminHtmlRouteProvider;
+use Symfony\Component\Routing\Route;
+
+/**
+ * Provides routes for Status entities.
+ *
+ * @see Drupal\Core\Entity\Routing\AdminHtmlRouteProvider
+ * @see Drupal\Core\Entity\Routing\DefaultHtmlRouteProvider
+ */
+class StatusHtmlRouteProvider extends AdminHtmlRouteProvider {
+  /**
+   * {@inheritdoc}
+   */
+  public function getRoutes(EntityTypeInterface $entity_type) {
+    $collection = parent::getRoutes($entity_type);
+
+    $entity_type_id = $entity_type->id();
+
+    if ($collection_route = $this->getCollectionRoute($entity_type)) {
+      $collection->add("entity.{$entity_type_id}.collection", $collection_route);
+    }
+
+    if ($add_form_route = $this->getAddFormRoute($entity_type)) {
+      $collection->add("entity.{$entity_type_id}.add_form", $add_form_route);
+    }
+
+    if ($settings_form_route = $this->getSettingsFormRoute($entity_type)) {
+      $collection->add("$entity_type_id.settings", $settings_form_route);
+    }
+
+    return $collection;
+  }
+
+  /**
+   * Gets the collection route.
+   *
+   * @param \Drupal\Core\Entity\EntityTypeInterface $entity_type
+   *   The entity type.
+   *
+   * @return \Symfony\Component\Routing\Route|null
+   *   The generated route, if available.
+   */
+  protected function getCollectionRoute(EntityTypeInterface $entity_type) {
+    if ($entity_type->hasLinkTemplate('collection') && $entity_type->hasListBuilderClass()) {
+      $entity_type_id = $entity_type->id();
+      $route = new Route($entity_type->getLinkTemplate('collection'));
+      $route
+        ->setDefaults([
+          '_entity_list' => $entity_type_id,
+          '_title' => "{$entity_type->getLabel()} list",
+        ])
+        ->setRequirement('_permission', 'view status entities')
+        ->setOption('_admin_route', TRUE);
+
+      return $route;
+    }
+  }
+
+  /**
+   * Gets the add-form route.
+   *
+   * @param \Drupal\Core\Entity\EntityTypeInterface $entity_type
+   *   The entity type.
+   *
+   * @return \Symfony\Component\Routing\Route|null
+   *   The generated route, if available.
+   */
+  protected function getAddFormRoute(EntityTypeInterface $entity_type) {
+    if ($entity_type->hasLinkTemplate('add-form')) {
+      $entity_type_id = $entity_type->id();
+      $parameters = [
+        $entity_type_id => ['type' => 'entity:' . $entity_type_id],
+      ];
+
+      $route = new Route($entity_type->getLinkTemplate('add-form'));
+      // Use the add form handler, if available, otherwise default.
+      $operation = 'default';
+      if ($entity_type->getFormClass('add')) {
+        $operation = 'add';
+      }
+      $route
+        ->setDefaults([
+          '_entity_form' => "{$entity_type_id}.{$operation}",
+          '_title' => "Add {$entity_type->getLabel()}",
+        ])
+        ->setRequirement('_entity_create_access', $entity_type_id);
+
+      $route
+        ->setOption('parameters', $parameters)
+        ->setOption('_admin_route', TRUE);
+
+      return $route;
+    }
+  }
+
+  /**
+   * Gets the settings form route.
+   *
+   * @param \Drupal\Core\Entity\EntityTypeInterface $entity_type
+   *   The entity type.
+   *
+   * @return \Symfony\Component\Routing\Route|null
+   *   The generated route, if available.
+   */
+  protected function getSettingsFormRoute(EntityTypeInterface $entity_type) {
+    if (!$entity_type->getBundleEntityType()) {
+      $route = new Route("/admin/structure/{$entity_type->id()}/settings");
+      $route
+        ->setDefaults([
+          '_form' => 'Drupal\statusmessage\Form\StatusSettingsForm',
+          '_title' => "{$entity_type->getLabel()} settings",
+        ])
+        ->setRequirement('_permission', $entity_type->getAdminPermission())
+        ->setOption('_admin_route', TRUE);
+
+      return $route;
+    }
+  }
+
+}

+ 75 - 0
statusmessage/src/StatusInterface.php

@@ -0,0 +1,75 @@
+<?php
+
+namespace Drupal\statusmessage;
+
+use Drupal\Core\Entity\ContentEntityInterface;
+use Drupal\Core\Entity\EntityChangedInterface;
+use Drupal\user\EntityOwnerInterface;
+
+/**
+ * Provides an interface for defining Status entities.
+ *
+ * @ingroup statusmessage
+ */
+interface StatusInterface extends ContentEntityInterface, EntityChangedInterface, EntityOwnerInterface {
+  // Add get/set methods for your configuration properties here.
+  /**
+   * Gets the Status name.
+   *
+   * @return string
+   *   Name of the Status.
+   */
+  public function getName();
+
+  /**
+   * Sets the Status name.
+   *
+   * @param string $name
+   *   The Status name.
+   *
+   * @return \Drupal\statusmessage\StatusInterface
+   *   The called Status entity.
+   */
+  public function setName($name);
+
+  /**
+   * Gets the Status creation timestamp.
+   *
+   * @return int
+   *   Creation timestamp of the Status.
+   */
+  public function getCreatedTime();
+
+  /**
+   * Sets the Status creation timestamp.
+   *
+   * @param int $timestamp
+   *   The Status creation timestamp.
+   *
+   * @return \Drupal\statusmessage\StatusInterface
+   *   The called Status entity.
+   */
+  public function setCreatedTime($timestamp);
+
+  /**
+   * Returns the Status published status indicator.
+   *
+   * Unpublished Status are only visible to restricted users.
+   *
+   * @return bool
+   *   TRUE if the Status is published.
+   */
+  public function isPublished();
+
+  /**
+   * Sets the published status of a Status.
+   *
+   * @param bool $published
+   *   TRUE to set this Status to published, FALSE to set it to unpublished.
+   *
+   * @return \Drupal\statusmessage\StatusInterface
+   *   The called Status entity.
+   */
+  public function setPublished($published);
+
+}

+ 43 - 0
statusmessage/src/StatusListBuilder.php

@@ -0,0 +1,43 @@
+<?php
+
+namespace Drupal\statusmessage;
+
+use Drupal\Core\Entity\EntityInterface;
+use Drupal\Core\Entity\EntityListBuilder;
+use Drupal\Core\Routing\LinkGeneratorTrait;
+use Drupal\Core\Url;
+
+/**
+ * Defines a class to build a listing of Status entities.
+ *
+ * @ingroup statusmessage
+ */
+class StatusListBuilder extends EntityListBuilder {
+  use LinkGeneratorTrait;
+  /**
+   * {@inheritdoc}
+   */
+  public function buildHeader() {
+    $header['id'] = $this->t('Status ID');
+    $header['name'] = $this->t('Name');
+    return $header + parent::buildHeader();
+  }
+
+  /**
+   * {@inheritdoc}
+   */
+  public function buildRow(EntityInterface $entity) {
+    /* @var $entity \Drupal\statusmessage\Entity\Status */
+    $row['id'] = $entity->id();
+    $row['name'] = $this->l(
+      $entity->label(),
+      new Url(
+        'entity.status.edit_form', array(
+          'status' => $entity->id(),
+        )
+      )
+    );
+    return $row + parent::buildRow($entity);
+  }
+
+}

+ 32 - 0
statusmessage/status.page.inc

@@ -0,0 +1,32 @@
+<?php
+
+/**
+ * @file
+ * Contains status.page.inc.
+ *
+ * Page callback for Status entities.
+ */
+
+use Drupal\Core\Render\Element;
+use Drupal\Core\Link;
+use Drupal\Core\Url;
+
+/**
+ * Prepares variables for Status templates.
+ *
+ * Default template: status.html.twig.
+ *
+ * @param array $variables
+ *   An associative array containing:
+ *   - elements: An associative array containing the user information and any
+ *   - attributes: HTML attributes for the containing element.
+ */
+function template_preprocess_status(array &$variables) {
+  // Fetch Status Entity Object.
+  $status = $variables['elements']['#status'];
+
+  // Helpful $content variable for templates.
+  foreach (Element::children($variables['elements']) as $key) {
+    $variables['content'][$key] = $variables['elements'][$key];
+  }
+}

+ 5 - 0
statusmessage/statusmessage.info.yml

@@ -0,0 +1,5 @@
+name: StatusMessage
+type: module
+description: Status Messages on a User Profile Timeline
+core: 8.x
+package: StatusMessage

+ 5 - 0
statusmessage/statusmessage.links.action.yml

@@ -0,0 +1,5 @@
+entity.status.add_form:
+  route_name: entity.status.add_form
+  title: 'Add Status'
+  appears_on:
+    - entity.status.collection

+ 13 - 0
statusmessage/statusmessage.links.menu.yml

@@ -0,0 +1,13 @@
+# Status menu items definition
+entity.status.collection:
+  title: 'Status list'
+  route_name: entity.status.collection
+  description: 'List Status entities'
+  parent: system.admin_structure
+  weight: 100
+
+status.admin.structure.settings:
+  title: Status settings
+  description: 'Configure Status entities'
+  route_name: status.settings
+  parent: system.admin_structure

+ 21 - 0
statusmessage/statusmessage.links.task.yml

@@ -0,0 +1,21 @@
+# Status routing definition
+status.settings_tab:
+  route_name: status.settings
+  title: 'Settings'
+  base_route: status.settings
+entity.status.canonical:
+  route_name: entity.status.canonical
+  base_route: entity.status.canonical
+  title: 'View'
+
+entity.status.edit_form:
+  route_name: entity.status.edit_form
+  base_route: entity.status.canonical
+  title: Edit
+
+entity.status.delete_form:
+  route_name:  entity.status.delete_form
+  base_route:  entity.status.canonical
+  title: Delete
+  weight: 10
+

+ 24 - 0
statusmessage/statusmessage.module

@@ -0,0 +1,24 @@
+<?php
+
+/**
+ * @file
+ * Contains statusmessage.module..
+ */
+
+use Drupal\Core\Routing\RouteMatchInterface;
+
+/**
+ * Implements hook_help().
+ */
+function statusmessage_help($route_name, RouteMatchInterface $route_match) {
+  switch ($route_name) {
+    // Main module help for the statusmessage module.
+    case 'help.page.statusmessage':
+      $output = '';
+      $output .= '<h3>' . t('About') . '</h3>';
+      $output .= '<p>' . t('Status Messages on a User Profile Timeline') . '</p>';
+      return $output;
+
+    default:
+  }
+}

+ 19 - 0
statusmessage/statusmessage.permissions.yml

@@ -0,0 +1,19 @@
+add status entities:
+  title: 'Create new Status entities'
+
+administer status entities:
+  title: 'Administer Status entities'
+  description: 'Allow to access the administration form to configure Status entities.'
+  restrict access: true
+
+delete status entities:
+  title: 'Delete Status entities'
+
+edit status entities:
+  title: 'Edit Status entities'
+
+view published status entities:
+  title: 'View published Status entities'
+
+view unpublished status entities:
+  title: 'View unpublished Status entities'

+ 22 - 0
statusmessage/templates/status.html.twig

@@ -0,0 +1,22 @@
+{#
+/**
+ * @file status.html.twig
+ * Default theme implementation to present Status data.
+ *
+ * This template is used when viewing Status pages.
+ *
+ *
+ * Available variables:
+ * - content: A list of content items. Use 'content' to print all content, or
+ * - attributes: HTML attributes for the container element.
+ *
+ * @see template_preprocess_status()
+ *
+ * @ingroup themeable
+ */
+#}
+<div{{ attributes.addClass('status') }}>
+  {% if content %}
+    {{- content -}}
+  {% endif %}
+</div>