Added Case Fee entity

This commit is contained in:
2021-11-11 14:07:13 +00:00
parent 3753b4e25c
commit cffe817ce9
34 changed files with 2172 additions and 7 deletions

View File

@ -0,0 +1,30 @@
<?php
/**
* @file
* Contains oc_case_fee.page.inc.
*
* Page callback for Case Fee entities.
*/
use Drupal\Core\Render\Element;
/**
* Prepares variables for Case Fee templates.
*
* Default template: oc_case_fee.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_case_fee(array &$variables) {
// Fetch OCCaseFee Entity Object.
$oc_case_fee = $variables['elements']['#oc_case_fee'];
// Helpful $content variable for templates.
foreach (Element::children($variables['elements']) as $key) {
$variables['content'][$key] = $variables['elements'][$key];
}
}