Pull merge.
[yaffs-website] / web / core / lib / Drupal / Core / Display / Annotation / PageDisplayVariant.php
1 <?php
2
3 namespace Drupal\Core\Display\Annotation;
4
5 /**
6  * Defines a page display variant annotation object.
7  *
8  * Page display variants are a specific type of display variant, intended to
9  * render entire pages. They must render the crucial parts of a page, which are:
10  * - the title
11  * - the main content
12  * - any messages (#type => status_messages)
13  *
14  * @see \Drupal\Core\Display\VariantInterface
15  * @see \Drupal\Core\Display\PageVariantInterface
16  * @see \Drupal\Core\Display\VariantBase
17  * @see \Drupal\Core\Display\VariantManager
18  * @see plugin_api
19  *
20  * @Annotation
21  */
22 class PageDisplayVariant extends DisplayVariant {
23
24 }