You are here

final class Regions in Facebook Instant Articles 8.2

Same name and namespace in other branches
  1. 3.x src/Regions.php \Drupal\fb_instant_articles\Regions

Instant article region name constants.

Hierarchy

  • class \Drupal\fb_instant_articles\Regions

Expanded class hierarchy of Regions

20 files declare their use of Regions
AdFormatter.php in src/Plugin/Field/FieldFormatter/AdFormatter.php
AdFormatterTest.php in tests/src/Kernel/Plugin/Field/FieldFormatter/AdFormatterTest.php
AnalyticsFormatterTest.php in tests/src/Kernel/Plugin/Field/FieldFormatter/AnalyticsFormatterTest.php
AuthorFormatterTest.php in tests/src/Kernel/Plugin/Field/FieldFormatter/AuthorFormatterTest.php
AuthorReferenceFormatterTest.php in tests/src/Kernel/Plugin/Field/FieldFormatter/AuthorReferenceFormatterTest.php

... See full list

File

src/Regions.php, line 8

Namespace

Drupal\fb_instant_articles
View source
final class Regions {

  /**
   * Header region name of an instant article.
   */
  const REGION_HEADER = 'header';

  /**
   * Content region name of an instant article.
   */
  const REGION_CONTENT = 'content';

  /**
   * Footer region name of an instant article.
   */
  const REGION_FOOTER = 'footer';

}

Members

Namesort descending Modifiers Type Description Overrides
Regions::REGION_CONTENT constant Content region name of an instant article.
Regions::REGION_FOOTER constant Footer region name of an instant article.
Regions::REGION_HEADER constant Header region name of an instant article.