32 $this->tree = $DIC[
'tree'];
40 $writer->xmlStartTag(
"OrgUnits");
41 foreach ($nodes as $node_ref_id) {
47 $writer->xmlStartTag(
"OrgUnit", $attributes);
49 $writer->xmlElement(
"title",
null, $orgu->getTitle());
50 $writer->xmlElement(
"description",
null, $orgu->getDescription());
51 $writer->xmlEndTag(
"OrgUnit");
53 $writer->xmlEndTag(
"OrgUnits");
67 return "orgu_" .
CLIENT_ID .
"_" . $orgu_ref_id;
73 $file_name =
"org_unit_export_" . $orgu_ref_id;
75 $worksheet->addSheet(
'org_units');
79 $worksheet->setCell($row, 0,
"ou_id");
80 $worksheet->setCell($row, 1,
"ou_id_type");
81 $worksheet->setCell($row, 2,
"ou_parent_id");
82 $worksheet->setCell($row, 3,
"ou_parent_id_type");
83 $worksheet->setCell($row, 4,
"reference_id");
84 $worksheet->setCell($row, 5,
"title");
85 $worksheet->setCell($row, 6,
"description");
86 $worksheet->setCell($row, 7,
"action");
91 foreach ($nodes as $node) {
98 $worksheet->setCell($row, 0, $attrs[
"ou_id"]);
99 $worksheet->setCell($row, 1, $attrs[
"ou_id_type"]);
100 $worksheet->setCell($row, 2, $attrs[
"ou_parent_id"]);
101 $worksheet->setCell($row, 3, $attrs[
"ou_parent_id_type"]);
102 $worksheet->setCell($row, 4, $orgu->getRefId());
103 $worksheet->setCell($row, 5, $orgu->getTitle());
104 $worksheet->setCell($row, 6, $orgu->getDescription());
105 $worksheet->setCell($row, 7,
"create");
107 $worksheet->sendToClient($file_name);
120 $sub_dir = $ts .
'__' .
IL_INST_ID .
'__' .
"orgu" .
'_' . $orgu_id .
"";
121 $new_file = $sub_dir .
'.zip';
123 $export_run_dir = $export_dir .
"/" . $sub_dir;
127 $writer->xmlDumpFile($export_run_dir .
"/manifest.xml",
false);
137 $exp->setExportType(
'xml');
138 $exp->setFilename($new_file);
142 $export_dir .
"/" . $new_file,
149 "directory" => $export_dir,
155 $open = array($root_node_ref);
157 while (count($open)) {
158 $current = array_shift($open);
159 $closed[] = $current;
160 foreach ($this->tree->getChildsByType($current,
"orgu") as $new) {
161 if (in_array($new[
"child"], $closed,
true) ===
false && in_array($new[
"child"], $open,
true) ===
false) {
162 $open[] = $new[
"child"];
172 $parent_ref = $this->tree->getParentId($orgu->
getRefId());
176 $ou_parent_id =
"__ILIAS";
181 "ou_id_type" =>
"external_id",
182 "ou_parent_id" => $ou_parent_id,
183 "ou_parent_id_type" =>
"external_id",
getAttributesForOrgu(ilObjOrgUnit $orgu)
Class for category export.
simpleExport(int $orgu_ref_id)
static makeDirParents(string $a_dir)
Create a new directory and all parent directories.
static _getExportDirectory(int $a_obj_id, string $a_type="xml", string $a_obj_type="", string $a_entity="")
Get export directory for an repository object
static deliverFileLegacy(string $a_file, ?string $a_filename=null, ?string $a_mime=null, ?bool $isInline=false, ?bool $removeAfterDelivery=false, ?bool $a_exit_after=true)
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
getExternalId(int $orgu_ref_id)
const ILIAS_VERSION_NUMERIC
buildExternalId(int $orgu_ref_id)
static _createExportDirectory(int $a_obj_id, string $a_export_type="xml", string $a_obj_type="")
static delDir(string $a_dir, bool $a_clean_only=false)
removes a dir and all its content (subdirs and files) recursively
Stores information of creation date and versions of export files
static _lookupObjectId(int $ref_id)
getStructure(int $root_node_ref)
__construct(Container $dic, ilPlugin $plugin)
sendAndCreateSimpleExportFile()
static zip(string $a_dir, string $a_file, bool $compress_content=false)
simpleExportExcel(int $orgu_ref_id)