1
0
mirror of https://github.com/devcode-it/openstamanager.git synced 2024-12-28 00:30:45 +01:00
openstamanager/modules/gestione_componenti/init.php
2020-02-14 17:02:16 +01:00

11 lines
316 B
PHP
Executable File

<?php
include_once __DIR__.'/../../core.php';
$cmp = \Util\Ini::getList($docroot.'/files/my_impianti/');
if (!empty($id_record) && isset($cmp[$id_record - 1])) {
$record['nomefile'] = $cmp[$id_record - 1][0];
$record['contenuto'] = file_get_contents($docroot.'/files/my_impianti/'.$record['nomefile']);
}