. */ include_once __DIR__.'/core.php'; use Models\PrintTemplate; $directory = !empty($directory) ? $directory : null; $id_print = get('id_print'); // Retrocompatibilitaà $ptype = get('ptype'); if (!empty($ptype)) { $print = PrintTemplate::where('directory', $ptype)->orderBy('predefined', 'DESC')->first(); $id_print = $print[0]->id; $id_record = !empty($id_record) ? $id_record : get($print[0]->previous); } $result = Prints::render($id_print, $id_record, $directory); if (empty($result)) { echo '

'.tr('Record non trovato').'

'.tr('Stai cercando di accedere ad un record eliminato o non presente').'.


'.tr('Indietro').'
'; }