19 declare(strict_types=1);
59 protected ilExportHandlerConsumerContextInterface
$context;
66 $this->ui_services = $DIC->ui();
67 $this->
http = $DIC->http();
69 $this->il_user = $DIC->user();
70 $this->
lng = $DIC->language();
71 $this->
lng->loadLanguageModule(
"exp");
72 $this->tpl = $DIC->ui()->mainTemplate();
73 $this->
ctrl = $DIC->ctrl();
74 $this->
access = $DIC->access();
75 $this->error = $DIC[
'ilErr'];
76 $this->
toolbar = $DIC->toolbar();
77 $this->parent_gui = $a_parent_gui;
78 $this->obj_definition = $DIC[
'objDefinition'];
79 $this->tree = $DIC->repositoryTree();
80 $this->obj = $a_main_obj ?? $a_parent_gui->getObject();
81 $this->export_handler =
new ilExportHandler();
82 $this->context = $this->export_handler->consumer()->context()->handler($this, $this->obj);
83 $this->export_options = $this->export_handler->consumer()->exportOption()->collection();
92 if (method_exists($this->obj,
'getRefId') and $this->obj->getRefId()) {
93 if (!$this->
access->checkAccess(
'write',
'', $this->obj->getRefId())) {
94 $this->error->raiseError($this->
lng->txt(
'permission_denied'), $this->error->WARNING);
100 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
"exp_error_disabled"));
104 $cmd = $this->
ctrl->getCmd(self::CMD_LIST_EXPORT_FILES);
105 if (str_starts_with($cmd, self::CMD_EXPORT_OPTION_PREFIX)) {
106 foreach ($this->export_options as $export_option) {
108 $export_option->onExportOptionSelected($this->context);
113 case self::CMD_EXPORT_XML:
116 case self::CMD_SAVE_ITEM_SELECTION:
119 case self::CMD_LIST_EXPORT_FILES:
150 if ($this->
http->wrapper()->post()->has(
'cp_options')) {
151 $custom_transformer = $this->
refinery->custom()->transformation(
156 $options = $this->
http->wrapper()->post()->retrieve(
166 return self::CMD_EXPORT_OPTION_PREFIX . $export_option->getExportOptionId();
176 $export_options = $this->export_handler->consumer()->exportOption()->allExportOptions();
177 foreach ($export_options as $export_option) {
179 in_array($this->obj->getType(), $export_option->getSupportedRepositoryObjectTypes()) and
180 $export_option->isObjectSupported($this->data_factory->objId($this->obj->getId()))
182 $this->export_options = $this->export_options->withElement($export_option);
189 if ($this->export_options->count() === 0) {
192 $table = $this->export_handler->table()->handler()
193 ->withExportOptions($this->export_options)
194 ->withContext($this->context);
195 $table->handleCommands();
197 foreach ($this->export_options as $export_option) {
200 if (count($infos) === 1) {
201 $this->
toolbar->addComponent($this->ui_services->factory()->button()->standard(
202 sprintf($this->
lng->txt(
"exp_export_single_option"), array_keys($infos)[0]),
203 array_values($infos)[0]
206 if (count($infos) > 1) {
208 foreach ($infos as $label => $link) {
209 $links[] = $this->ui_services->factory()->link()->standard($label, $link);
212 $this->ui_services->factory()->dropdown()->standard($links)
213 ->withLabel($this->
lng->txt(
"exp_export_dropdown"))
216 $this->tpl->setContent($table->getHTML());
226 $this->tpl->setOnScreenMessage(
228 $this->
lng->txt(
"exp_file_created"),
231 $this->
ctrl->redirect($this, self::CMD_LIST_EXPORT_FILES);
239 $this->tpl->addJavaScript(
'assets/js/ilContainer.js');
240 $this->tpl->setVariable(
'BODY_ATTRIBUTES',
'onload="ilDisableChilds(\'cmd\');"');
242 $table->parseContainer($this->parent_gui->getObject()->getRefId());
243 $this->tpl->setContent($table->getHTML());
252 $exp_limit->checkLimitation(
253 $this->parent_gui->getObject()->getRefId(),
257 $this->tpl->setOnScreenMessage(
'failure', $e->getMessage());
263 $this->tpl->setOnScreenMessage(
'success', $this->
lng->txt(
'export_created'),
true);
264 $this->
ctrl->redirect($this, self::CMD_LIST_EXPORT_FILES);
269 $manager = $this->export_handler->manager()->handler();
270 $export_info = $manager->getExportInfoWithObject(
274 $element = $manager->createExport(
275 $this->il_user->getId(),
283 $tree_nodes = $this->tree->getSubTree($this->tree->getNodeData($this->parent_gui->getObject()->getRefId()));
287 $items_selected = $eo->addOptions(
288 $this->parent_gui->getObject()->getRefId(),
295 $ref_ids_export = [$this->parent_gui->getObject()->getRefId()];
296 $ref_ids_all = [$this->parent_gui->getObject()->getRefId()];
297 $tree_ref_ids =
array_map(
function ($node) {
return (
int) $node[
'ref_id']; }, $tree_nodes);
298 $post_ref_ids =
array_map(
function ($key) {
return (
int) $key; }, array_keys($post_export_options));
299 $valid_ref_ids = array_intersect($post_ref_ids, $tree_ref_ids);
300 foreach ($valid_ref_ids as
$ref_id) {
301 $info = $post_export_options[
$ref_id];
302 $export_option_id = (
int) $info[
"type"];
306 !$this->access->checkAccess(
'write',
'', $ref_id)
320 $manager = $this->export_handler->manager()->handler();
321 if (count($ref_ids_all) === 1) {
322 $export_info = $manager->getExportInfoWithObject(
326 $element = $manager->createExport(
327 $this->il_user->getId(),
332 if (count($ref_ids_all) > 1) {
335 $object_id_collection_builder = $manager->getObjectIdCollectioBuilder();
336 foreach ($obj_ids_all as $obj_id) {
337 $object_id_collection_builder = $object_id_collection_builder->addObjectId(
338 $this->data_factory->objId($obj_id),
339 in_array($obj_id, $obj_ids_export)
342 $container_export_info = $manager->getContainerExportInfo(
343 $this->data_factory->objId($obj_ids_all[0]),
344 $object_id_collection_builder->getCollection()
346 $element = $manager->createContainerExport($this->il_user->getId(), $container_export_info);
__construct(object $a_parent_gui, ?ilObject $a_main_obj=null)
builtExportOptionCommand(ilExportHandlerConsumerExportOptionInterface $export_option)
ilExportHandlerConsumerExportOptionCollectionInterface $export_options
showItemSelection()
Show container item selection table.
static newInstance(int $a_export_id)
ilUIServices $ui_services
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
ilGlobalTemplateInterface $tpl
const MESSAGE_TYPE_SUCCESS
Object selection for export.
static _lookupObjId(int $ref_id)
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
ilDataFactory $data_factory
ilExportHandler $export_handler
static http()
Fetches the global http state from ILIAS.
enableStandardXMLExport()
ilExportHandlerConsumerContextInterface $context
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
ilRefineryFactory $refinery
initExportOptionsFromPost()
const SET_EXPORT_DISABLED
Export limitation checker.
const CMD_SAVE_ITEM_SELECTION
Class ilContainerGUI This is a base GUI class for all container objects in ILIAS: root folder...
ilObjectDefinition $obj_definition
createXMLContainerExport()
const CMD_LIST_EXPORT_FILES
static _lookupType(int $id, bool $reference=false)
static allocateExportId()
const CMD_EXPORT_OPTION_PREFIX