openstamanager/pdfgen.php

34 lines
1.0 KiB
PHP
Raw Normal View History

<?php
include_once __DIR__.'/core.php';
$directory = !empty($directory) ? $directory : null;
2017-09-21 15:51:39 +02:00
$id_print = get('id_print');
2017-09-21 15:51:39 +02:00
// Retrocompatibilitaà
$ptype = get('ptype');
if (!empty($ptype)) {
2018-09-27 09:26:27 +02:00
$print = $dbo->fetchArray('SELECT id, previous FROM zz_prints WHERE directory = '.prepare($ptype).' ORDER BY predefined DESC LIMIT 1');
2017-09-21 15:51:39 +02:00
$id_print = $print[0]['id'];
2017-09-21 15:51:39 +02:00
$id_record = !empty($id_record) ? $id_record : get($print[0]['previous']);
}
2019-07-15 12:56:17 +02:00
$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>';
}