...
Verbesserungen
Behobene Fehler
Theme anpassung (Kompatibilitätsprobleme bei eigenen Themes)
Controller Pfad für den PDF export hat sich geändert.
Dies betrifft die Theme Datei: \views\controllers\products\products.php Zeile: 373
Dieser Codeblock hier
Code Block |
---|
<?php
$url = sprintf('%s',$this->Url(array('#absolute' => true, 'print'=>'pdf')));
$hash = \Cs\Security\Password::hash($url.\Registry::get('Appconf')->salt);
?>
|
Muss ersetzt werden durch
Code Block |
---|
if(!empty(\Services::get('UserConfig')->controller->export->pdf_converter_url)){
$pdfPrintUrl = (string) $this->Url(array('#absolute' => true, 'print'=>'pdf'));
$hash = \Cs\Security\Password::hash($pdfPrintUrl.\Registry::get('Appconf')->salt);
} |
Und etwas weiter unten die Ausgabe wie folgt anpassen
Code Block |
---|
<?php
if(isset($pdfPrintUrl)){
echo $this->Button('download-pdf', $this->Url(array('#reset' => true, 'module' => 'export', 'controller' => 'pdf', 'action' => 'url', 'url' => $pdfPrintUrl, 'hash' => $hash)), array('data-iconpos' => 'notext', 'rel' => "nofollow"));
}
?> |