4 include_once
'./Services/Table/classes/class.ilTable2GUI.php';
5 include_once
'./Services/CopyWizard/classes/class.ilCopyWizardOptions.php';
49 public function __construct($a_parent_class, $a_parent_cmd, $a_type, $a_back_cmd)
53 $this->
user = $DIC->user();
54 $this->obj_definition = $DIC[
"objDefinition"];
55 $this->tree = $DIC->repositoryTree();
56 $this->access = $DIC->access();
57 $lng = $DIC->language();
58 $ilCtrl = $DIC->ctrl();
60 $objDefinition = $DIC[
"objDefinition"];
63 $this->type = $a_type;
66 $this->ctrl = $ilCtrl;
68 $this->
setTitle($this->lng->txt($this->type .
'_wizard_page'));
71 $this->
addColumn($this->lng->txt(
'title'),
'',
'55%');
72 $this->
addColumn($this->lng->txt(
'copy'),
'',
'15%');
73 $this->
addColumn($this->lng->txt(
'link'),
'',
'15%');
74 $this->
addColumn($this->lng->txt(
'omit'),
'',
'15%');
77 $this->
setFormAction($ilCtrl->getFormAction($this->getParentObject()));
78 $this->
setRowTemplate(
"tpl.obj_copy_selection_row.html",
"Services/Object");
85 $submit_button_label = $this->lng->txt(
'obj_' . $this->type .
'_duplicate');
87 $submit_button_label = $this->lng->txt(
'cntr_adopt_content');
92 if ($a_back_cmd ==
"") {
120 foreach (
$tree->getSubTree($root =
$tree->getNodeData($a_source)) as $node) {
121 if ($node[
'type'] ==
'rolf') {
124 if (!$ilAccess->checkAccess(
'visible',
'', $node[
'child'])) {
131 $r[
'source'] = $first;
132 $r[
'ref_id'] = $node[
'child'];
133 $r[
'depth'] = $node[
'depth'] - $root[
'depth'];
134 $r[
'type'] = $node[
'type'];
135 $r[
'title'] = $node[
'title'];
136 $r[
'copy'] = $objDefinition->allowCopy($node[
'type']);
137 $r[
'perm_copy'] = $ilAccess->checkAccess(
'copy',
'', $node[
'child']);
138 $r[
'link'] = $objDefinition->allowLink($node[
'type']);
139 $r[
'perm_link'] =
true;
142 if (!trim($r[
'title']) && $r[
'type'] ==
'sess') {
144 include_once(
'./Modules/Session/classes/class.ilSessionAppointment.php');
153 $rows[] = array(
'last' =>
true);
163 $this->tpl->setCurrentBlock(
'footer_copy');
164 $this->tpl->setVariable(
'TXT_COPY_ALL', $this->lng->txt(
'copy_all'));
165 $this->tpl->parseCurrentBlock();
166 $this->tpl->setCurrentBlock(
'footer_link');
167 $this->tpl->setVariable(
'TXT_LINK_ALL', $this->lng->txt(
'link_all'));
168 $this->tpl->parseCurrentBlock();
169 $this->tpl->setCurrentBlock(
'footer_omit');
170 $this->tpl->setVariable(
'TXT_OMIT_ALL', $this->lng->txt(
'omit_all'));
171 $this->tpl->parseCurrentBlock();
176 for (
$i = 0;
$i < $s[
'depth'];
$i++) {
177 $this->tpl->touchBlock(
'padding');
178 $this->tpl->touchBlock(
'end_padding');
181 $this->tpl->setVariable(
'TREE_ALT_IMG', $this->lng->txt(
'obj_' . $s[
'type']));
182 $this->tpl->setVariable(
'TREE_TITLE', $s[
'title']);
189 if ($s[
'perm_copy'] and $s[
'copy']) {
190 $this->tpl->setCurrentBlock(
'radio_copy');
191 $this->tpl->setVariable(
'TXT_COPY', $this->lng->txt(
'copy'));
192 $this->tpl->setVariable(
'NAME_COPY',
'cp_options[' . $s[
'ref_id'] .
'][type]');
194 $this->tpl->setVariable(
'ID_COPY', $s[
'depth'] .
'_' . $s[
'type'] .
'_' . $s[
'ref_id'] .
'_copy');
195 $this->tpl->setVariable(
'COPY_CHECKED',
'checked="checked"');
196 $this->tpl->parseCurrentBlock();
197 } elseif ($s[
'copy']) {
198 $this->tpl->setCurrentBlock(
'missing_copy_perm');
199 $this->tpl->setVariable(
'TXT_MISSING_COPY_PERM', $this->lng->txt(
'missing_perm'));
200 $this->tpl->parseCurrentBlock();
205 if ($s[
'perm_link'] and $s[
'link']) {
206 $this->tpl->setCurrentBlock(
'radio_link');
207 $this->tpl->setVariable(
'TXT_LINK', $this->lng->txt(
'link'));
208 $this->tpl->setVariable(
'NAME_LINK',
'cp_options[' . $s[
'ref_id'] .
'][type]');
210 $this->tpl->setVariable(
'ID_LINK', $s[
'depth'] .
'_' . $s[
'type'] .
'_' . $s[
'ref_id'] .
'_link');
211 if (!$s[
'copy'] or !$s[
'perm_copy']) {
212 $this->tpl->setVariable(
'LINK_CHECKED',
'checked="checked"');
214 $this->tpl->parseCurrentBlock();
215 } elseif ($s[
'link']) {
216 $this->tpl->setCurrentBlock(
'missing_link_perm');
217 $this->tpl->setVariable(
'TXT_MISSING_LINK_PERM', $this->lng->txt(
'missing_perm'));
218 $this->tpl->parseCurrentBlock();
222 $this->tpl->setCurrentBlock(
'omit_radio');
223 $this->tpl->setVariable(
'TXT_OMIT', $this->lng->txt(
'omit'));
224 $this->tpl->setVariable(
'NAME_OMIT',
'cp_options[' . $s[
'ref_id'] .
'][type]');
226 $this->tpl->setVariable(
'ID_OMIT', $s[
'depth'] .
'_' . $s[
'type'] .
'_' . $s[
'ref_id'] .
'_omit');
227 if ((!$s[
'copy'] or !$s[
'perm_copy']) and (!$s[
'link'])) {
228 $this->tpl->setVariable(
'OMIT_CHECKED',
'checked="checked"');
230 $this->tpl->parseCurrentBlock();
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.
setEnableNumInfo($a_val)
Set enable num info.
setTitle($a_title, $a_icon=0, $a_icon_alt=0)
Set title and title icon.
static _lookupObjId($a_id)
getType()
Get object type of source.
static _appointmentToString($start, $end, $fulltime)
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.
static _lookupAppointment($a_obj_id)
lookup appointment
setEnableHeader($a_enableheader)
Set Enable Header.
__construct($a_parent_class, $a_parent_cmd, $a_type, $a_back_cmd)
setEnableTitle($a_enabletitle)
Set Enable Title.
const SUBMODE_CONTENT_ONLY
setLimit($a_limit=0, $a_default_limit=0)