mirror of
https://github.com/devcode-it/openstamanager.git
synced 2025-01-01 10:37:31 +01:00
12 lines
206 B
PHP
12 lines
206 B
PHP
|
<?php
|
||
|
|
||
|
use Modules\AttributiCombinazioni\Attributo;
|
||
|
|
||
|
include_once __DIR__.'/../../core.php';
|
||
|
|
||
|
if (!empty($id_record)) {
|
||
|
$attributo = Attributo::find($id_record);
|
||
|
|
||
|
$record = $attributo->toArray();
|
||
|
}
|