MessagesBlockPluginInterface.php 373 B

1234567891011121314
  1. <?php
  2. namespace Drupal\Core\Block;
  3. /**
  4. * The interface for "messages" (#type => status_messages) blocks.
  5. *
  6. * @see \Drupal\Core\Messenger\MessengerInterface
  7. * @see \Drupal\Core\Render\Element\StatusMessages
  8. * @see \Drupal\block\Plugin\DisplayVariant\BlockPageVariant
  9. *
  10. * @ingroup block_api
  11. */
  12. interface MessagesBlockPluginInterface extends BlockPluginInterface {}