ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilDclExportGUI.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 {
23  protected function buildExportTableGUI(): ilExportTableGUI
24  {
25  return new ilDclExportTableGUI($this, 'listExportFiles', $this->obj);
26  }
27 
31  public function createExportFile(): void
32  {
33  $format = "";
34  if ($this->http->wrapper()->post()->has('format')) {
35  $format = $this->http->wrapper()->post()->retrieve('format', $this->refinery->kindlyTo()->string());
36  }
37  if ($format === 'xlsx') {
38  $this->checkForExportableFields();
39  }
40 
41  parent::createExportFile();
42  }
43 
47  protected function checkForExportableFields(): bool
48  {
49  foreach ($this->obj->getTables() as $tbl) {
51  foreach ($tbl->getFields() as $field) {
52  if ($field->getExportable()) {
53  return true;
54  }
55  }
56  }
57 
58  $this->tpl->setOnScreenMessage('failure', $this->lng->txt('dcl_no_export_data_available'), true);
59  $this->ctrl->redirect($this, "listExportFiles");
60 
61  return false;
62  }
63 }
static http()
Fetches the global http state from ILIAS.
createExportFile()
overwrite to check if exportable fields are available (for async xls export)