You are here

event.page.inc in Event 8

Contains event.page.inc.

Page callback for Event entities.

File

event.page.inc
View source
<?php

/**
 * @file
 * Contains event.page.inc.
 *
 * Page callback for Event entities.
 */
use Drupal\Core\Render\Element;

/**
 * Prepares variables for Event templates.
 *
 * Default template: event.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_event(array &$variables) {

  // Fetch Event Entity Object.
  $event = $variables['elements']['#event'];

  // Helpful $content variable for templates.
  foreach (Element::children($variables['elements']) as $key) {
    $variables['content'][$key] = $variables['elements'][$key];
  }
}

Functions

Namesort descending Description
template_preprocess_event Prepares variables for Event templates.