コード例 #1
0
ファイル: L10nHtmlListView.php プロジェクト: danilovq/l10nmgr
 function __construct($l10ncfgObj, $sysLang)
 {
     global $BACK_PATH;
     $this->doc = GeneralUtility::makeInstance(DocumentTemplate::class);
     $this->doc->backPath = $BACK_PATH;
     parent::__construct($l10ncfgObj, $sysLang);
 }
コード例 #2
0
ファイル: index.php プロジェクト: danilovq/l10nmgr
 /**
  * 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;
 }
コード例 #3
0
ファイル: ExcelXmlView.php プロジェクト: danilovq/l10nmgr
 function __construct($l10ncfgObj, $sysLang)
 {
     parent::__construct($l10ncfgObj, $sysLang);
 }
コード例 #4
0
ファイル: CatXmlView.php プロジェクト: xf-/l10nmgr-1
 function CatXmlView($l10ncfgObj, $sysLang)
 {
     parent::__construct($l10ncfgObj, $sysLang);
 }