You are here

Regions.php in Facebook Instant Articles 8.2

Same filename and directory in other branches
  1. 3.x src/Regions.php

File

src/Regions.php
View source
<?php

namespace Drupal\fb_instant_articles;


/**
 * Instant article region name constants.
 */
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';

}

Classes

Namesort descending Description
Regions Instant article region name constants.