mirror of
https://github.com/devcode-it/openstamanager.git
synced 2025-02-05 18:27:32 +01:00
16 lines
378 B
PHP
16 lines
378 B
PHP
|
<?php
|
||
|
|
||
|
// File e cartelle deprecate
|
||
|
$files = [
|
||
|
'templates\fatturato\pdfgen.fatturato.php',
|
||
|
'templates\fatturato\fatturato_body.html',
|
||
|
'templates\fatturato\fatturato.html',
|
||
|
'modules/interventi/widgets/interventi.pianificazionedashboard.interventi.php',
|
||
|
];
|
||
|
|
||
|
foreach ($files as $key => $value) {
|
||
|
$files[$key] = realpath(DOCROOT.'\\'.$value);
|
||
|
}
|
||
|
|
||
|
delete($files);
|