1
0
mirror of https://github.com/devcode-it/openstamanager.git synced 2024-12-18 11:19:17 +01:00
openstamanager/modules/gestione_componenti/init.php

11 lines
316 B
PHP
Raw Normal View History

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