19 declare(strict_types=1);
34 if ($this->
http->wrapper()->post()->has(
'format')) {
35 $format = $this->
http->wrapper()->post()->retrieve(
'format', $this->
refinery->kindlyTo()->string());
37 if ($format ===
'xlsx') {
38 $this->checkForExportableFields();
41 parent::createExportFile();
47 protected function checkForExportableFields():
bool 49 foreach ($this->obj->getTables() as $tbl) {
51 foreach ($tbl->getFields() as $field) {
52 if ($field->getExportable()) {
58 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
'dcl_no_export_data_available'),
true);
59 $this->
ctrl->redirect($this,
"listExportFiles");
static http()
Fetches the global http state from ILIAS.
createExportFile()
overwrite to check if exportable fields are available (for async xls export)