mirror of
https://github.com/devcode-it/openstamanager.git
synced 2024-12-13 08:56:08 +01:00
15 lines
244 B
PHP
15 lines
244 B
PHP
<?php
|
|
|
|
include_once __DIR__.'/core.php';
|
|
|
|
// File e cartelle deprecate
|
|
$files = [
|
|
'modules/interventi/src/API/v1/Articoli.php',
|
|
];
|
|
|
|
foreach ($files as $key => $value) {
|
|
$files[$key] = realpath(base_dir().'/'.$value);
|
|
}
|
|
|
|
delete($files);
|