openstamanager/view.php

78 lines
1.6 KiB
PHP
Raw Normal View History

2019-01-17 16:11:10 +01:00
<?php
include_once __DIR__.'/core.php';
$file_id = filter('file_id');
$file = Models\Upload::find($file_id);
if (empty($file)) {
return;
}
$link = ROOTDIR.'/'.$file->filepath;
if ($file->isFatturaElettronica()) {
$content = file_get_contents(DOCROOT.'/'.$file->filepath);
2019-03-02 21:04:06 +01:00
// Individuazione stylesheet
$default_stylesheet = 'asso-invoice';
2019-02-20 16:07:42 +01:00
2019-07-19 18:11:07 +02:00
$name = basename($file->original_name);
2019-02-20 16:07:42 +01:00
$filename = explode('.', $name)[0];
$pieces = explode('_', $filename);
2019-03-15 11:05:28 +01:00
$stylesheet = $pieces[2];
2019-01-17 16:11:10 +01:00
2019-02-20 16:07:42 +01:00
$stylesheet = DOCROOT.'/plugins/xml/'.$stylesheet.'.xsl';
2019-03-02 21:04:06 +01:00
$stylesheet = file_exists($stylesheet) ? $stylesheet : DOCROOT.'/plugins/xml/'.$default_stylesheet.'.xsl';
2019-02-20 16:07:42 +01:00
// XML
2019-03-01 17:13:13 +01:00
$xml = new DOMDocument();
2019-02-25 13:10:11 +01:00
$xml->loadXML($content);
2019-03-01 17:13:13 +01:00
// XSL
$xsl = new DOMDocument();
$xsl->load($stylesheet);
2019-01-17 16:11:10 +01:00
2019-03-01 17:13:13 +01:00
// XSLT
$xslt = new XSLTProcessor();
$xslt->importStylesheet($xsl);
2019-02-20 16:07:42 +01:00
echo '
<style>
#notifica {
min-width: 860px !important;
}
</style>';
2019-01-17 16:11:10 +01:00
echo $xslt->transformToXML($xml);
} else {
echo '
<style>
body, iframe, img{
border: 0;
margin: 0;
max-width: 100%;
}
iframe{
width:100%;
height:100%;
min-height: 500px;
}
</style>';
if ($file->isImage()) {
echo '
<img src="'.$link.'"></img>';
} else {
if ($file->isPDF()) {
$src = \Prints::getPDFLink($file->filepath);
}
echo '
<iframe src="'.($link ?: $src).'">
<a src="'.$link.'">'.tr('Il browser non supporta i contenuti iframe: clicca qui per raggiungere il file originale').'</a>
</iframe>';
}
}