ILIAS  release_4-4 Revision
All Data Structures Namespaces Files Functions Variables Modules Pages
class.ilOrgUnitExportGUI.php
Go to the documentation of this file.
1 <?php
2 /* Copyright (c) 1998-2013 ILIAS open source, Extended GPL, see docs/LICENSE */
3 require_once("./Services/Export/classes/class.ilExportGUI.php");
4 require_once("./Modules/OrgUnit/classes/class.ilObjOrgUnit.php");
5 require_once("class.ilOrgUnitExporter.php");
17  protected $toolbar;
21  protected $lng;
25  protected $ctrl;
29  protected $ilObjOrgUnit;
30 
31 
36  function __construct(ilObjOrgUnitGUI $a_parent_gui, $a_main_obj = null)
37  {
38  global $ilToolbar, $lng, $ilCtrl;
39 
40  parent::__construct($a_parent_gui, $a_main_obj);
41 
42  $this->toolbar = $ilToolbar;
43  $this->lng = $lng;
44  $this->ctrl = $ilCtrl;
45  $this->ilObjOrgUnit = $a_parent_gui->object;
46 
48  //Simple XML and Simple XLS Export should only be available in the root orgunit folder as it always exports the whole tree
49  $this->extendExportGUI();
50  }
51  }
52 
53  private function extendExportGUI() {
54  $this->toolbar->addButton($this->lng->txt("simple_xml"), $this->ctrl->getLinkTarget($this, "simpleExport"));
55  $this->toolbar->addButton($this->lng->txt("simple_xls"), $this->ctrl->getLinkTarget($this, "simpleExportExcel"));
56  }
57 
58 
59  public function simpleExport() {
60  $ilOrgUnitExporter = new ilOrgUnitExporter();
61  $ilOrgUnitExporter->sendAndCreateSimpleExportFile();
62  }
63 
64 
65  public function simpleExportExcel() {
66  $ilOrgUnitExporter = new ilOrgUnitExporter();
67  $ilOrgUnitExporter->simpleExportExcel(ilObjOrgUnit::getRootOrgRefId());
68  }
69 
70 }
71 ?>
Class ilOrgUnitExporter.
Class ilObjOrgUnit GUI class.
Class ilOrgUnitExportGUI.
global $ilCtrl
Definition: ilias.php:18
Export User Interface Class.
Class ilObjOrgUnit.
static getRootOrgRefId()
getRefId()
get reference id public
__construct(ilObjOrgUnitGUI $a_parent_gui, $a_main_obj=null)