You are here

function template_preprocess_pm_expense in Drupal PM (Project Management) 4.x

Prepares variables for Expense templates.

Default template: pm_expense.html.twig.

Parameters

array $variables: An associative array containing:

  • elements: An associative array containing the user information and any
  • attributes: HTML attributes for the containing element.

File

modules/pm_expense/pm_expense.page.inc, line 22
Contains pm_expense.page.inc.

Code

function template_preprocess_pm_expense(array &$variables) {

  // Fetch Expense Entity Object.
  $pm_expense = $variables['elements']['#pm_expense'];

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