Messaggio sui permessi

This commit is contained in:
Thomas Zilio 2019-07-15 12:56:17 +02:00
parent a850fa2f3e
commit c4695e6b71
1 changed files with 17 additions and 1 deletions

View File

@ -14,4 +14,20 @@ if (!empty($ptype)) {
$id_record = !empty($id_record) ? $id_record : get($print[0]['previous']);
}
Prints::render($id_print, $id_record, $directory);
$result = Prints::render($id_print, $id_record, $directory);
if(empty($result)){
echo '
<div class="text-center">
<h3 class="text-muted">
<i class="fa fa-question-circle"></i> '.tr('Record non trovato').'
<br><br>
<small class="help-block">'.tr('Stai cercando di accedere ad un record eliminato o non presente').'.</small>
</h3>
<br>
<a class="btn btn-default" href="'.ROOTDIR.'/index.php">
<i class="fa fa-chevron-left"></i> '.tr('Indietro').'
</a>
</div>';
}