1
0
mirror of https://github.com/devcode-it/openstamanager.git synced 2024-12-12 16:38:19 +01:00
openstamanager/templates/replace.php
2019-07-11 17:20:58 +02:00

19 lines
587 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);