1
0
mirror of https://github.com/devcode-it/openstamanager.git synced 2024-12-23 13:58:25 +01:00
openstamanager/update/2_3_1.php

25 lines
592 B
PHP
Raw Normal View History

2018-02-14 12:26:15 +01:00
<?php
/*
* Rimozione file e cartelle deprecati
*/
// File e cartelle deprecate
$files = [
'templates/interventi/pdfgen.interventi.php',
'templates/ddt/pdfgen.ddt.php',
'templates/ordini/pdfgen.ordini.php',
'templates/fatture/fattura_body.html',
'templates/fatture/fattura.html',
'templates/contratti/contratto_body.html',
'templates/contratti/contratto.html',
'templates/preventivo/preventivo_body.html',
'templates/preventivo/preventivo.html',
];
foreach ($files as $key => $value) {
$files[$key] = realpath(DOCROOT.'/'.$value);
}
delete($files);