mirror of
https://github.com/devcode-it/openstamanager.git
synced 2025-02-02 08:56:48 +01:00
14 lines
243 B
PHP
14 lines
243 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);
|