135 $this->ctrl = $DIC->ctrl();
136 $this->tree = $DIC->repositoryTree();
137 $this->tabs = $DIC->tabs();
138 $this->toolbar = $DIC->toolbar();
139 $this->tpl = $DIC[
"tpl"];
140 $this->obj_definition = $DIC[
"objDefinition"];
141 $this->obj_data_cache = $DIC[
"ilObjDataCache"];
142 $this->access = $DIC->access();
143 $this->error = $DIC[
"ilErr"];
144 $this->rbacsystem = $DIC->rbac()->system();
145 $this->
user = $DIC->user();
146 $this->rbacreview = $DIC->rbac()->review();
147 $this->log = $DIC[
"ilLog"];
148 $ilCtrl = $DIC->ctrl();
149 $lng = $DIC->language();
152 $this->lng->loadLanguageModule(
'search');
153 $this->lng->loadLanguageModule(
'obj');
154 $this->ctrl->saveParameter($this,
"crtcb");
156 $this->parent_obj = $a_parent_gui;
172 $next_class = $ilCtrl->getNextClass($this);
173 $cmd = $ilCtrl->getCmd();
175 switch ($next_class) {
190 if ((
int) $_REQUEST[
'smode']) {
192 $ilCtrl->setParameter($this,
'smode', $this->
getSubMode());
197 if ($_REQUEST[
'source_ids']) {
198 $this->
setSource(explode(
'_', $_REQUEST[
'source_ids']));
199 $ilCtrl->setParameter($this,
'source_ids', implode(
'_', $this->
getSources()));
202 if ($_REQUEST[
'source_id']) {
203 $this->
setSource(array((
int) $_REQUEST[
'source_id']));
204 $ilCtrl->setParameter($this,
'source_ids', implode(
'_', $this->
getSources()));
214 if ($_REQUEST[
'new_type']) {
215 $this->
setMode(self::SEARCH_SOURCE);
216 $this->
setType($_REQUEST[
'new_type']);
219 $ilCtrl->setParameter($this,
'new_type', $this->
getType());
221 $ilCtrl->setParameterByClass(get_class($this->
getParentObject()),
'cpfl', 1);
222 $ilCtrl->setReturnByClass(get_class($this->
getParentObject()),
'create');
228 elseif ($_REQUEST[
'selectMode'] == self::SOURCE_SELECTION) {
229 $this->
setMode(self::SOURCE_SELECTION);
231 $ilCtrl->setParameterByClass(get_class($this->parent_obj),
'selectMode', self::SOURCE_SELECTION);
233 $ilCtrl->setReturnByClass(get_class($this->parent_obj),
'');
236 } elseif ($_REQUEST[
'selectMode'] == self::TARGET_SELECTION) {
237 $this->
setMode(self::TARGET_SELECTION);
238 $ilCtrl->setReturnByClass(get_class($this->parent_obj),
'');
244 if ($_REQUEST[
'target_ids']) {
245 $this->
setTargets(explode(
'_', $_REQUEST[
'target_ids']));
260 $lng->loadLanguageModule(
'cntr');
261 $ilTabs->clearTargets();
262 $ilTabs->setBackTarget(
263 $lng->txt(
'tab_back_to_repository'),
264 $ilCtrl->getParentReturn($this->parent_obj)
273 protected function setTabs($a_tab_group, $a_active_tab)
279 if ($a_tab_group == self::TAB_GROUP_SC_SELECTION) {
280 if ($this->
getSubMode() == self::SUBMODE_CONTENT_ONLY) {
281 if ($this->
getMode() == self::SOURCE_SELECTION) {
283 self::TAB_SELECTION_SOURCE_TREE,
284 $lng->txt(
'cntr_copy_repo_tree'),
285 $ilCtrl->getLinkTarget($this,
'initSourceSelection')
288 self::TAB_SELECTION_MEMBERSHIP,
289 $lng->txt(
'cntr_copy_crs_grp'),
290 $ilCtrl->getLinkTarget($this,
'showSourceSelectionMembership')
295 $ilTabs->activateTab($a_active_tab);
307 $ilCtrl->setParameter($this,
'smode', self::SUBMODE_CONTENT_ONLY);
308 $ilCtrl->setParameter($this,
'selectMode', self::SOURCE_SELECTION);
311 $this->
setSubMode(self::SUBMODE_CONTENT_ONLY);
312 $this->
setMode(self::SOURCE_SELECTION);
327 $ilCtrl->setParameter($this,
'selectMode', self::TARGET_SELECTION);
329 $_SESSION[
'paste_copy_repexpand'] = array();
342 $path =
$tree->getPathId($source_id);
343 foreach ((array) $path as $node_id) {
344 if (!in_array($node_id,
$_SESSION[
'paste_copy_repexpand'])) {
345 $_SESSION[
'paste_copy_repexpand'][] = $node_id;
351 $ilCtrl->setReturnByClass(get_class($this->parent_obj),
'');
365 $_SESSION[
'paste_copy_repexpand'] = array();
370 $this->
setTabs(self::TAB_GROUP_SC_SELECTION, self::TAB_SELECTION_SOURCE_TREE);
375 foreach ($this->
getTargets() as $target_ref_id) {
376 $path =
$tree->getPathId($target_ref_id);
377 foreach ((array) $path as $node_id) {
378 if (!in_array($node_id,
$_SESSION[
'paste_copy_repexpand'])) {
379 $_SESSION[
'paste_copy_repexpand'][] = $node_id;
384 $ilCtrl->setReturnByClass(get_class($this->parent_obj),
'');
398 $this->
setTabs(self::TAB_GROUP_SC_SELECTION, self::TAB_SELECTION_MEMBERSHIP);
400 include_once
'./Services/Object/classes/class.ilObjectCopyCourseGroupSelectionTableGUI.php';
411 $tpl->setContent($cgs->getHTML());
430 if ($objDefinition->isContainer($this->getType())) {
437 include_once(
"./Services/Repository/classes/class.ilRepositorySelectorExplorerGUI.php");
439 $exp->setTypeWhiteList(array(
"root",
"cat",
"grp",
"crs",
"fold",
"lso",
"prg"));
440 $exp->setSelectMode(
"target",
true);
441 if ($exp->handleCommand()) {
444 $output = $exp->getHTML();
448 $t->setFormAction($ilCtrl->getFormAction($this,
"saveTarget"));
449 if ($objDefinition->isContainer($this->getType())) {
451 $btn->setCaption(
'btn_next');
452 $btn->setCommand(
'saveTarget');
453 $btn->setPrimary(
true);
454 $t->addButtonInstance($btn);
457 $btn->setCaption(
'paste');
458 $btn->setCommand(
'saveTarget');
459 $btn->setPrimary(
true);
460 $t->addButtonInstance($btn);
464 $clipboard_btn->setCaption(
'obj_insert_into_clipboard');
465 $clipboard_btn->setCommand(
'keepObjectsInClipboard');
466 $t->addButtonInstance($clipboard_btn);
468 $cancel_btn->setCaption(
'cancel');
469 $cancel_btn->setCommand(
'cancel');
470 $t->addButtonInstance($cancel_btn);
471 $t->setCloseFormTag(
false);
473 $output = $t->getHTML() . $output;
475 $t->setCloseFormTag(
true);
476 $t->setOpenFormTag(
false);
477 $output .=
"<br />" . $t->getHTML();
479 $this->tpl->setContent($output);
495 $this->tpl->addBlockfile(
498 'tpl.paste_into_multiple_objects.html',
503 include_once
'./Services/Object/classes/class.ilPasteIntoMultipleItemsExplorer.php';
506 'ilias.php?baseClass=ilRepositoryGUI&cmd=goto',
507 'paste_copy_repexpand' 509 $exp->setRequiredFormItemPermission(
'visible,read,copy');
511 $ilCtrl->setParameter($this,
'selectMode', self::SOURCE_SELECTION);
512 $exp->setExpandTarget($ilCtrl->getLinkTarget($this,
'showSourceSelectionTree'));
513 $exp->setTargetGet(
'ref_id');
514 $exp->setPostVar(
'source');
518 foreach (array(
'cat',
'root',
'fold') as
$container) {
519 $exp->removeFormItemForType($container);
523 if (
$_GET[
'paste_copy_repexpand'] ==
'') {
524 $expanded =
$tree->readRootId();
526 $expanded =
$_GET[
'paste_copy_repexpand'];
529 $this->tpl->setVariable(
'FORM_TARGET',
'_self');
530 $this->tpl->setVariable(
'FORM_ACTION', $ilCtrl->getFormAction($this,
'copySelection'));
532 $exp->setExpand($expanded);
535 $output = $exp->getOutput();
537 $this->tpl->setVariable(
'OBJECT_TREE', $output);
539 $this->tpl->setVariable(
'CMD_SUBMIT',
'saveSource');
540 $this->tpl->setVariable(
'TXT_SUBMIT', $this->lng->txt(
'btn_next'));
542 $ilToolbar->addButton($this->lng->txt(
'cancel'), $ilCtrl->getLinkTarget($this,
'cancel'));
557 if (is_array($_REQUEST[
'target']) and $_REQUEST[
'target']) {
559 $ilCtrl->setParameter($this,
'target_ids', implode(
'_', $this->
getTargets()));
562 elseif ((
int) $_REQUEST[
'target']) {
564 $ilCtrl->setParameter($this,
'target_ids', implode(
'_', $this->
getTargets()));
568 $ilCtrl->setParameter($this,
'selectMode', self::TARGET_SELECTION);
575 foreach ($this->
getSources() as $source_ref_id) {
576 foreach ((array) $this->
getTargets() as $target_ref_id) {
579 $target_object =
new $target_class_name($target_ref_id);
580 $possible_subtypes = $target_object->getPossibleSubObjects();
584 if (!array_key_exists($source_type, (array) $possible_subtypes)) {
587 $this->lng->txt(
'msg_obj_may_not_contain_objects_of_type'),
589 $this->lng->txt(
'obj_' . $source_type)
598 if (count($this->
getSources()) == 1 && $objDefinition->isContainer($this->getType())) {
602 foreach ($this->
getTargets() as $target_ref_id) {
603 if (
$tree->isGrandChild($this->getFirstSource(), $target_ref_id)) {
611 if (count($is_child) > 0) {
634 $this->mode = $a_mode;
648 $this->sub_mode = $a_mode;
693 $this->sources = $a_source_ids;
707 if (count($this->sources)) {
708 return $this->sources[0];
732 $this->targets = $a_target;
750 if (array_key_exists(0, $this->
getTargets())) {
764 $ilCtrl->setReturnByClass(get_class($this->parent_obj),
'cancel');
765 $ilCtrl->returnToParent($this);
773 ilUtil::sendSuccess($this->lng->txt(
"obj_inserted_clipboard"),
true);
777 $ilCtrl->returnToParent($this);
793 if (isset(
$_POST[
'tit'])) {
801 $this->form->setValuesByPost();
803 if (!$this->form->checkInput()) {
805 $ilCtrl->returnToParent($this);
809 include_once
'./Services/Search/classes/class.ilQueryParser.php';
810 $query_parser =
new ilQueryParser($this->form->getInput(
'tit'));
813 $query_parser->parse();
814 if (!$query_parser->validate()) {
816 $ilCtrl->returnToParent($this);
820 include_once
'Services/Search/classes/Like/class.ilLikeObjectSearch.php';
822 $object_search->setFilter(array($_REQUEST[
'new_type']));
823 $res = $object_search->performSearch();
824 $res->setRequiredPermission(
'copy');
829 $ilCtrl->returnToParent($this);
833 include_once
'./Services/Object/classes/class.ilObjectCopySearchResultTableGUI.php';
835 $table->setFormAction($ilCtrl->getFormAction($this));
837 $table->parseSearchResults(
$results);
838 $tpl->setContent($table->getHTML());
850 if (isset(
$_POST[
'source'])) {
851 $this->
setSource(array((
int) $_REQUEST[
'source']));
853 $ilCtrl->setParameter($this,
'source_id', (
int) $_REQUEST[
'source']);
861 foreach ($this->
getSources() as $source_ref_id) {
862 foreach ((array) $this->
getTargets() as $target_ref_id) {
865 $target_object =
new $target_class_name($target_ref_id);
866 $possible_subtypes = $target_object->getPossibleSubObjects();
870 if (!array_key_exists($source_type, $possible_subtypes)) {
871 #ilLoggerFactory::getLogger('obj')->debug('Source type: '. $source_type); 872 #ilLoggerFactory::getLogger('obj')->debug('Target type: '. $target_type); 873 #ilLoggerFactory::getLogger('obj')->debug('Submode: '. $this->getSubMode()); 877 $this->
getSubMode() != self::SUBMODE_CONTENT_ONLY and
882 $this->lng->txt(
'msg_obj_may_not_contain_objects_of_type'),
884 $this->lng->txt(
'obj_' . $source_type)
895 if ($objDefinition->isContainer($this->getType())) {
910 if (!isset($_REQUEST[
'source'])) {
912 $ilCtrl->redirect($this,
'showSourceSelectionMembership');
916 $this->
setSource(array((
int) $_REQUEST[
'source']));
918 $ilCtrl->setParameter($this,
'source_id', (
int) $_REQUEST[
'source']);
920 if ($objDefinition->isContainer($this->getType())) {
945 include_once
'./Services/Object/classes/class.ilObjectCopySelectionTableGUI.php';
947 $tpl->addJavaScript(
'./Services/CopyWizard/js/ilContainer.js');
948 $tpl->setVariable(
'BODY_ATTRIBUTES',
'onload="ilDisableChilds(\'cmd\');"');
951 case self::SOURCE_SELECTION:
952 $back_cmd =
'adoptContent';
955 case self::TARGET_SELECTION:
956 $back_cmd =
'showTargetSelectionTree';
959 case self::SEARCH_SOURCE:
960 $back_cmd =
'searchSource';
967 $tpl->setContent($table->getHTML());
976 include_once(
'./Services/Link/classes/class.ilLink.php');
977 include_once(
'Services/CopyWizard/classes/class.ilCopyWizardOptions.php');
989 $ilCtrl->returnToParent($this);
1011 foreach ($a_sources as $source_ref_id) {
1016 foreach ($this->
getTargets() as $target_ref_id) {
1017 if (!
$rbacsystem->checkAccess(
'create', $target_ref_id, $source_type)) {
1018 $this->log->notice(
'Permission denied for target_id: ' . $target_ref_id .
' source_type: ' . $source_type .
' CREATE');
1020 $ilCtrl->returnToParent($this);
1025 if (!$ilAccess->checkAccess(
'copy',
'', $source_ref_id)) {
1026 $this->log->notice(
'Permission denied for source_ref_id: ' . $source_ref_id .
' COPY');
1028 $ilCtrl->returnToParent($this);
1032 if ($objDefinition->isContainer($source_type) and $this->
getSubMode() != self::SUBMODE_CONTENT_ONLY) {
1034 $ilCtrl->returnToParent($this);
1043 foreach ($a_sources as $source_ref_id) {
1047 foreach ($this->
getTargets() as $target_ref_id) {
1051 $wizard_options->saveOwner(
$ilUser->getId());
1052 $wizard_options->saveRoot((
int) $source_ref_id);
1053 $wizard_options->read();
1056 $new_obj = $orig->cloneObject($target_ref_id, $copy_id);
1059 $wizard_options->deleteAll();
1060 $this->parent_obj->callCreationCallback(
1062 $this->obj_definition,
1068 $rbac_log_roles =
$rbacreview->getParentRoleIds($new_obj->getRefId(),
false);
1075 unset(
$_SESSION[
"clipboard"][
"ref_ids"]);
1078 if (count($a_sources) == 1) {
1080 ilUtil::sendSuccess($this->lng->txt(
"object_duplicated"),
true);
1081 $ref_id = $new_obj->getRefId();
1084 ilUtil::sendSuccess($this->lng->txt(
"objects_duplicated"),
true);
1088 ilUtil::sendSuccess($this->lng->txt(
"objects_duplicated"),
true);
1113 foreach ($this->
getTargets() as $target_ref_id) {
1115 $last_target = $target_ref_id;
1118 unset(
$_SESSION[
"clipboard"][
"ref_ids"]);
1121 include_once
'./Services/CopyWizard/classes/class.ilCopyWizardOptions.php';
1124 ilUtil::sendSuccess($this->lng->txt(
"object_duplicated"),
true);
1125 if ($this->
getSubMode() == self::SUBMODE_CONTENT_ONLY) {
1127 return $this->ctrl->returnToParent($this);
1131 $ilCtrl->redirectToUrl($link);
1147 include_once
'./Services/Object/classes/class.ilObjectCopyProgressTableGUI.php';
1151 (
int)
$_GET[
'ref_id']
1153 $progress->setObjectInfo($this->targets_copy_id);
1156 $progress->setRedirectionUrl($ilCtrl->getParentReturn($this->parent_obj));
1158 $tpl->setContent($progress->getHTML());
1167 $json->percentage = null;
1168 $json->performed_steps = null;
1170 include_once
'./Services/CopyWizard/classes/class.ilCopyWizardOptions.php';
1172 $json->required_steps = $options->getRequiredSteps();
1173 $json->id = (int) $_REQUEST[
'copy_id'];
1177 echo json_encode($json);
1191 include_once(
'./Services/Link/classes/class.ilLink.php');
1192 include_once(
'Services/CopyWizard/classes/class.ilCopyWizardOptions.php');
1206 if ($this->
getSubMode() != self::SUBMODE_CONTENT_ONLY) {
1207 if (!
$rbacsystem->checkAccess(
'create', $a_target, $this->getType())) {
1208 $this->log->notice(
'Permission denied for target: ' . $a_target .
' type: ' . $this->
getType() .
' CREATE');
1210 $ilCtrl->returnToParent($this);
1215 $ilCtrl->returnToParent($this);
1219 $options =
$_POST[
'cp_options'] ?
$_POST[
'cp_options'] : array();
1225 $result = $orig->cloneAllObject(
1235 $this->targets_copy_id[$a_target] =
$result[
'copy_id'];
1236 $new_ref_id = (int)
$result[
'ref_id'];
1237 if ($new_ref_id > 0) {
1239 if ($new_obj instanceof
ilObject) {
1240 $this->parent_obj->callCreationCallback(
1242 $this->obj_definition,
1264 #if(!$this->sourceExists()) 1273 $tpl->setVariable($a_tplvar, $this->form->getHTML());
1300 include_once
'./Services/Form/classes/class.ilPropertyFormGUI.php';
1302 $this->form->setTableWidth(
'600px');
1304 $ilCtrl->setParameter($this,
'new_type', $this->
getType());
1306 #$ilCtrl->setParameter($this, 'cp_mode', self::SOURCE_SELECTION); 1307 $this->form->setFormAction($ilCtrl->getFormAction($this));
1308 $this->form->setTitle(
$lng->txt($this->getType() .
'_copy'));
1310 $this->form->addCommandButton(
'searchSource',
$lng->txt(
'btn_next'));
1311 $this->form->addCommandButton(
'cancel', $this->lng->txt(
'cancel'));
1315 $tit->setMaxLength(70);
1316 $tit->setRequired(
true);
1317 $tit->setInfo(
$lng->txt(
'wizard_title_info'));
1318 $this->form->addItem($tit);
GUI class for the workflow of copying objects.
static getClassByType($a_obj_type)
Get class by type.
__construct(ImplementsCreationCallback $a_parent_gui)
adoptContent()
Adopt content (crs in crs, grp in grp, crs in grp or grp in crs)
setTargets(array $a_target)
Set target id.
updateProgress()
Update progress.
Explorer for selecting repository items.
Presentation of search results.
GUI class for the workflow of copying objects.
setMode($a_mode)
set copy mode
initSourceSelection()
Init source selection.
initTargetSelection()
Init copy from repository/search list commands.
saveSource()
select source object
setTarget($a_ref_id)
Set single object target.
static _getMembershipByType($a_usr_id, $a_type, $a_only_member_role=false)
get membership by type Get course or group membership
static _getObjectsByOperations($a_obj_type, $a_operation, $a_usr_id=0, $limit=0)
Get all objects of a specific type and check access This function is not recursive, instead it parses the serialized rbac_pa entries.
initFormSearch()
Init search form.
keepObjectsInClipboard()
Keep objects in clipboard.
showCopyProgress()
Show progress for copying.
copyContainer($a_target)
Copy a container.
static _lookupTitle($a_id)
lookup object title
saveSourceMembership()
Save selected source from membership screen.
getFirstTarget()
Get first target.
const TAB_SELECTION_TARGET_TREE
const TAB_GROUP_SC_SELECTION
setSource(array $a_source_ids)
Set source id.
static gatherFaPa($a_ref_id, array $a_role_ids, $a_add_action=false)
static sendInfo($a_info="", $a_keep=false)
Send Info Message to Screen.
static _isFinished($a_copy_id)
check if copy is finished
initTabs()
Init tabs General.
getParentObject()
Get parent gui object.
Table gui for copy progress.
static _getInstance($a_copy_id)
Get instance of copy wizard options.
foreach($_POST as $key=> $value) $res
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static getImagePath($img, $module_path="", $mode="output", $offline=false)
get image path (for images located in a template directory)
static _lookupObjId($a_id)
unsetSession()
Unset session variables.
static _allocateCopyId()
Allocate a copy for further entries.
setTabs($a_tab_group, $a_active_tab)
Set tabs.
copySingleObject()
Start cloning a single (not container) object.
getTargets()
Get copy target.
static _lookupType($a_id, $a_reference=false)
lookup object type
executeCommand()
Control class handling.
static sendFailure($a_info="", $a_keep=false)
Send Failure Message to Screen.
const TAB_SELECTION_MEMBERSHIP
showTargetSelectionTree()
Show target selection.
showSourceSelectionTree()
Show target selection.
copyContainerToTargets()
Copy to multiple targets.
copyMultipleNonContainer($a_sources)
Copy multiple non container.
static add($a_action, $a_ref_id, array $a_diff, $a_source_ref_id=false)
const TAB_SELECTION_SOURCE_TREE
static getInstanceByRefId($a_ref_id, $stop_on_error=true)
get an instance of an Ilias object by reference id
static getLogger($a_component_id)
Get component logger.
const QP_COMBINATION_AND
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
saveTarget()
Save target selection.
setMinWordLength($a_length, $a_force=false)
sourceExists()
Check if there is any source object.
showSourceSearch($a_tplvar)
Show init screen Normally shown below the create and import form when creating a new object...
static redirect($a_script)
showSourceSelectionMembership()
show target selection membership
searchSource()
Search source.
const SUBMODE_CONTENT_ONLY
static _getLink($a_ref_id, $a_type='', $a_params=array(), $append="")
setType($type)
Sets $type.