mirror of
https://github.com/devcode-it/openstamanager.git
synced 2024-12-27 08:12:47 +01:00
16 lines
378 B
PHP
Executable File
16 lines
378 B
PHP
Executable File
<?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);
|