mirror of
https://github.com/devcode-it/openstamanager.git
synced 2024-12-08 06:31:20 +01:00
bfa4f12a30
Utilizzo delle nuove funzioni base_dir, base_url e base_link per sostituire DOCROOT; BASEURL e ROOTDIR. Correzioni sul trait StoreTrait, ora definito come LocalPoolTrait e utilizzante il metodo pool.
13 lines
181 B
PHP
Executable File
13 lines
181 B
PHP
Executable File
<?php
|
|
|
|
// File e cartelle deprecate
|
|
$files = [
|
|
'modules/backup',
|
|
];
|
|
|
|
foreach ($files as $key => $value) {
|
|
$files[$key] = realpath(base_dir().'/'.$value);
|
|
}
|
|
|
|
delete($files);
|