function tx_l10nmgr_l10nHTMLListView($l10ncfgObj, $sysLang)
 {
     global $BACK_PATH;
     $this->doc = t3lib_div::makeInstance('noDoc');
     $this->doc->backPath = $BACK_PATH;
     parent::__construct($l10ncfgObj, $sysLang);
 }
 function tx_l10nmgr_excelXMLView($l10ncfgObj, $sysLang)
 {
     parent::__construct($l10ncfgObj, $sysLang);
 }
Ejemplo n.º 3
0
 /**
  * Sends download header and calls render method of the view.
  * Used for excelXML and CATXML.
  *
  * @param tx_l10nmgr_abstractExportView $xmlView Object for generating the XML export
  * @return string $filename
  */
 protected function downloadXML(tx_l10nmgr_abstractExportView $xmlView)
 {
     // Save content to the disk and get the file name
     $filename = $xmlView->render();
     return $filename;
 }