function __construct($l10ncfgObj, $sysLang)
 {
     global $BACK_PATH;
     $this->doc = GeneralUtility::makeInstance(DocumentTemplate::class);
     $this->doc->backPath = $BACK_PATH;
     parent::__construct($l10ncfgObj, $sysLang);
 }
Exemple #2
0
 /**
  * Sends download header and calls render method of the view.
  * Used for excelXML and CATXML.
  *
  * @param AbstractExportView $xmlView Object for generating the XML export
  * @return string $filename
  */
 protected function downloadXML(AbstractExportView $xmlView)
 {
     // Save content to the disk and get the file name
     $filename = $xmlView->render();
     return $filename;
 }
Exemple #3
0
 function __construct($l10ncfgObj, $sysLang)
 {
     parent::__construct($l10ncfgObj, $sysLang);
 }
Exemple #4
0
 function CatXmlView($l10ncfgObj, $sysLang)
 {
     parent::__construct($l10ncfgObj, $sysLang);
 }