You are here

function template_preprocess_uc_price in Ubercart 8.4

Prepares variables for the price template.

Default template: uc-price.html.twig.

File

uc_store/uc_store.module, line 193
Contains global Ubercart functions and store administration functionality.

Code

function template_preprocess_uc_price(&$variables) {
  $variables['price'] = uc_currency_format($variables['price']);
}