Update view.php
This commit is contained in:
parent
0e62ab73c3
commit
0a7cee9726
14
view.php
14
view.php
|
@ -32,11 +32,17 @@ if ($file->isFatturaElettronica()) {
|
||||||
$content = str_replace('http://ivaservizi.agenziaentrate.gov.it/docs/xsd/fattura/messaggi/v1.0', 'http://www.fatturapa.gov.it/sdi/messaggi/v1.0', $content);
|
$content = str_replace('http://ivaservizi.agenziaentrate.gov.it/docs/xsd/fattura/messaggi/v1.0', 'http://www.fatturapa.gov.it/sdi/messaggi/v1.0', $content);
|
||||||
|
|
||||||
// XML
|
// XML
|
||||||
$xml = DOMDocument::loadXML($content);
|
$xml = new DOMDocument();
|
||||||
|
$xml->loadXML($content);
|
||||||
|
|
||||||
|
// XSL
|
||||||
|
$xsl = new DOMDocument();
|
||||||
|
$xsl->load(DOCROOT.'/plugins/xml/asso-invoice.xsl');
|
||||||
|
|
||||||
|
// XSLT
|
||||||
|
$xslt = new XSLTProcessor();
|
||||||
|
$xslt->importStylesheet($xsl);
|
||||||
|
|
||||||
// XSLT
|
|
||||||
$xslt = new XSLTProcessor();
|
|
||||||
$xslt->importStylesheet(DOMDocument::load($stylesheet));
|
|
||||||
|
|
||||||
echo '
|
echo '
|
||||||
<style>
|
<style>
|
||||||
|
|
Loading…
Reference in New Issue