mirror of
https://github.com/devcode-it/openstamanager.git
synced 2025-01-14 16:36:51 +01:00
21 lines
435 B
PHP
21 lines
435 B
PHP
|
<?php
|
||
|
|
||
|
// File e cartelle deprecate
|
||
|
$files = [
|
||
|
'plugins/xml/AT_v1.0.xml',
|
||
|
'plugins/xml/DT_v1.0.xml',
|
||
|
'plugins/xml/EC_v1.0.xml',
|
||
|
'plugins/xml/MC_v1.0.xml',
|
||
|
'plugins/xml/MT_v1.0.xml',
|
||
|
'plugins/xml/NE_v1.0.xml',
|
||
|
'plugins/xml/NS_v1.0.xml',
|
||
|
'plugins/xml/RC_v1.0.xml',
|
||
|
'plugins/xml/SE_v1.0.xml',
|
||
|
];
|
||
|
|
||
|
foreach ($files as $key => $value) {
|
||
|
$files[$key] = realpath(DOCROOT.'/'.$value);
|
||
|
}
|
||
|
|
||
|
delete($files);
|