1
0
mirror of https://github.com/devcode-it/openstamanager.git synced 2024-12-28 00:30:45 +01:00
openstamanager/templates/replace.php
Thomas Zilio c40eb5b950 Fix vari
2019-07-11 15:05:36 +02:00

20 lines
588 B
PHP

<?php
/**
* Sostituisce a delle stringhe ($nome_stringa$) i valori delle anagrafiche.
*/
$replaces = array_merge($replaces, (array) $custom);
foreach ($replaces as $key => $value) {
$new_key = '$'.str_replace("$", "", $key).'$';
unset($replaces[$key]);
$replaces[$new_key] = $value;
}
// Sostituisce alle variabili del template i valori
$head = str_replace(array_keys($replaces), array_values($replaces), $head);
$foot = str_replace(array_keys($replaces), array_values($replaces), $foot);
$report = str_replace(array_keys($replaces), array_values($replaces), $report);