This repository has been archived on 2022-07-12. You can view files and clone it, but cannot push or open issues or pull requests.
opencase/modules/opencase_entities/oc_organisation.page.inc

25 lines
570 B
PHP

<?php
/**
* @file
* Contains oc_organisation.page.inc.
*
* Page callback for Organisation entities.
*/
use Drupal\Core\Render\Element;
/**
* Prepares variables for Organisation templates.
*
* Default template: oc_organisation.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_oc_organisation(array &$variables) {
_template_preprocess_entity($variables);
}