4 include_once
'./Services/Table/classes/class.ilTable2GUI.php';
5 include_once
'./Services/Export/classes/class.ilExportOptions.php';
6 include_once
'./Services/Export/classes/class.ilExportFileInfo.php';
31 $ilCtrl = $DIC[
'ilCtrl'];
33 $objDefinition = $DIC[
'objDefinition'];
40 $this->lng->loadLanguageModule(
'export');
41 $this->ctrl = $ilCtrl;
43 $this->
setTitle($this->lng->txt(
'export_select_resources'));
46 $this->
addColumn($this->lng->txt(
'title'),
'');
47 $this->
addColumn($this->lng->txt(
'export_last_export'),
'');
48 $this->
addColumn($this->lng->txt(
'export_last_export_file'),
'');
49 $this->
addColumn($this->lng->txt(
'export_create_new_file'),
'');
50 $this->
addColumn($this->lng->txt(
'export_omit_resource'),
'');
53 $this->
setFormAction($ilCtrl->getFormAction($this->getParentObject()));
54 $this->
setRowTemplate(
"tpl.export_item_selection_row.html",
"Services/Export");
61 $this->
addCommandButton(
'saveItemSelection', $this->lng->txt(
'export_save_selection'));
68 if ((!$s[
'copy'] or !$s[
'perm_copy']) and (!$s[
'link'])) {
71 if ($s[
'perm_export'] and $s[
'last_export']) {
72 $selected =
"EXPORT_E";
74 if (is_array($this->post_data[
"cp_options"])) {
75 if (isset($this->post_data[
"cp_options"][$s[
'ref_id']][
"type"])) {
76 switch ($this->post_data[
"cp_options"][$s[
'ref_id']][
"type"]) {
81 $selected =
"EXPORT_E";
88 $this->tpl->setCurrentBlock(
'footer_export_e');
89 $this->tpl->setVariable(
'TXT_EXPORT_E_ALL', $this->lng->txt(
'select_all'));
90 $this->tpl->parseCurrentBlock();
91 $this->tpl->setCurrentBlock(
'footer_export');
92 $this->tpl->setVariable(
'TXT_EXPORT_ALL', $this->lng->txt(
'select_all'));
93 $this->tpl->parseCurrentBlock();
94 $this->tpl->setCurrentBlock(
'footer_omit');
95 $this->tpl->setVariable(
'TXT_OMIT_ALL', $this->lng->txt(
'select_all'));
96 $this->tpl->parseCurrentBlock();
100 for (
$i = 0;
$i < $s[
'depth'];
$i++) {
101 $this->tpl->touchBlock(
'padding');
102 $this->tpl->touchBlock(
'end_padding');
105 $this->tpl->setVariable(
'TREE_ALT_IMG', $this->lng->txt(
'obj_' . $s[
'type']));
106 $this->tpl->setVariable(
'TREE_TITLE', $s[
'title']);
109 if ($s[
'last_export']) {
112 $this->tpl->setVariable(
'VAL_LAST_EXPORT', $this->lng->txt(
'no_file'));
120 if ($s[
'perm_export'] and $s[
'last_export']) {
121 $this->tpl->setCurrentBlock(
'radio_export_e');
122 $this->tpl->setVariable(
'TXT_EXPORT_E', $this->lng->txt(
'export_existing'));
123 $this->tpl->setVariable(
'NAME_EXPORT_E',
'cp_options[' . $s[
'ref_id'] .
'][type]');
125 $this->tpl->setVariable(
'ID_EXPORT_E', $s[
'depth'] .
'_' . $s[
'type'] .
'_' . $s[
'ref_id'] .
'_export_e');
126 $this->tpl->setVariable(
'EXPORT_E_CHECKED',
'checked="checked"');
127 $this->tpl->parseCurrentBlock();
128 } elseif (!$s[
'perm_export']) {
129 $this->tpl->setCurrentBlock(
'missing_export_perm');
130 $this->tpl->setVariable(
'TXT_MISSING_EXPORT_PERM', $this->lng->txt(
'missing_perm'));
131 $this->tpl->parseCurrentBlock();
136 if ($s[
'perm_export'] and $s[
'export']) {
137 $this->tpl->setCurrentBlock(
'radio_export');
138 $this->tpl->setVariable(
'TXT_EXPORT', $this->lng->txt(
'export'));
139 $this->tpl->setVariable(
'NAME_EXPORT',
'cp_options[' . $s[
'ref_id'] .
'][type]');
141 $this->tpl->setVariable(
'ID_EXPORT', $s[
'depth'] .
'_' . $s[
'type'] .
'_' . $s[
'ref_id'] .
'_export');
142 if ($selected ==
"EXPORT") {
143 $this->tpl->setVariable(
'EXPORT_CHECKED',
'checked="checked"');
145 $this->tpl->parseCurrentBlock();
146 } elseif ($s[
'export']) {
147 $this->tpl->setCurrentBlock(
'missing_export_perm');
148 $this->tpl->setVariable(
'TXT_MISSING_EXPORT_PERM', $this->lng->txt(
'missing_perm'));
149 $this->tpl->parseCurrentBlock();
153 $this->tpl->setCurrentBlock(
'omit_radio');
154 $this->tpl->setVariable(
'TXT_OMIT', $this->lng->txt(
'omit'));
155 $this->tpl->setVariable(
'NAME_OMIT',
'cp_options[' . $s[
'ref_id'] .
'][type]');
157 $this->tpl->setVariable(
'ID_OMIT', $s[
'depth'] .
'_' . $s[
'type'] .
'_' . $s[
'ref_id'] .
'_omit');
158 if ($selected ==
"OMIT") {
159 $this->tpl->setVariable($selected .
'_CHECKED',
'checked="checked"');
161 $this->tpl->parseCurrentBlock();
173 $tree = $DIC[
'tree'];
174 $objDefinition = $DIC[
'objDefinition'];
175 $ilAccess = $DIC[
'ilAccess'];
178 foreach ($tree->getSubTree($root = $tree->getNodeData($a_source)) as $node) {
179 if ($node[
'type'] ==
'rolf') {
182 if (!$objDefinition->allowExport($node[
'type'])) {
185 include_once(
"./Modules/File/classes/class.ilObjFileAccess.php");
186 if ($node[
'type'] ==
"file" &&
193 $r[
'last_export'] = $last->getCreationDate()->get(
IL_CAL_UNIX);
195 $r[
'last_export'] = 0;
199 $r[
'source'] = $first;
200 $r[
'ref_id'] = $node[
'child'];
201 $r[
'depth'] = $node[
'depth'] - $root[
'depth'];
202 $r[
'type'] = $node[
'type'];
203 $r[
'title'] = $node[
'title'];
204 $r[
'export'] = $objDefinition->allowExport($node[
'type']);
205 $r[
'perm_export'] = $ilAccess->checkAccess(
'write',
'', $node[
'child']);
212 $rows[] = array(
'last' =>
true);
static _getIcon( $a_obj_id="", $a_size="big", $a_type="", $a_offline=false)
Get icon for repository item.
addCommandButton($a_cmd, $a_text, $a_onclick='', $a_id="", $a_class=null)
Add Command button.
parseContainer($a_source)
parse tree
setEnableNumInfo($a_val)
Set enable num info.
static _isFileHidden($a_file_name)
Returns true, if a file with the specified name, is usually hidden from the user. ...
static formatDate(ilDateTime $date, $a_skip_day=false, $a_include_wd=false, $include_seconds=false)
Format a date public.
Object selection for export.
__construct($a_parent_class, $a_parent_cmd)
setTitle($a_title, $a_icon=0, $a_icon_alt=0)
Set title and title icon.
static _lookupObjId($a_id)
static lookupLastExport($a_obj_id, $a_type, $a_version='')
Lookup last export.
setRowTemplate($a_template, $a_template_dir="")
Set row template.
setFormAction($a_form_action, $a_multipart=false)
Set Form action parameter.
setFormName($a_formname="")
Set Form name.
__construct(Container $dic, ilPlugin $plugin)
addColumn( $a_text, $a_sort_field="", $a_width="", $a_is_checkbox_action_column=false, $a_class="", $a_tooltip="", $a_tooltip_with_html=false)
Add a column to the header.
setEnableHeader($a_enableheader)
Set Enable Header.
setEnableTitle($a_enabletitle)
Set Enable Title.
setLimit($a_limit=0, $a_default_limit=0)