forked from devcode-it/openstamanager
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpdfgen.php
executable file
·33 lines (26 loc) · 1.02 KB
/
pdfgen.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
<?php
include_once __DIR__.'/core.php';
$directory = !empty($directory) ? $directory : null;
$id_print = get('id_print');
// Retrocompatibilitaà
$ptype = get('ptype');
if (!empty($ptype)) {
$print = $dbo->fetchArray('SELECT id, previous FROM zz_prints WHERE directory = '.prepare($ptype).' ORDER BY predefined DESC LIMIT 1');
$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 '
<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>';
}