4 include_once(
"Services/Block/classes/class.ilBlockGUI.php");
45 $this->lng = $DIC->language();
46 $this->ctrl = $DIC->ctrl();
47 $this->obj_definition = $DIC[
"objDefinition"];
48 $this->tree = $DIC->repositoryTree();
49 $this->access = $DIC->access();
50 $lng = $DIC->language();
54 $this->parent_ref_id = (int)
$_GET[
"ref_id"];
58 $lng->loadLanguageModule(
"classification");
86 $cmd = $ilCtrl->getCmd();
87 $next_class = $ilCtrl->getNextClass($this);
89 switch ($next_class) {
92 if ($ilCtrl->isAsynch() && $cmd !=
"getAjax" && $cmd !=
"filterContainer") {
105 $ilCtrl = $DIC->ctrl();
107 if ($ilCtrl->isAsynch()) {
111 switch ($ilCtrl->getCmd()) {
112 case "filterContainer":
122 if (!$ilCtrl->isAsynch()) {
132 $tpl->addJavaScript(
"Services/Classification/js/ilClassification.js");
134 return parent::getHTML();
144 echo
$tpl->getOnLoadCodeForAsynch();
151 $this->repo->unsetAll();
152 $this->ctrl->returnToParent($this);
162 foreach ($this->providers as $provider) {
163 $provider->render($html, $this);
168 $ajax_block_id =
"block_" . $this->
getBlockType() .
"_0";
169 $ajax_block_url = $ilCtrl->getLinkTarget($this,
"getAjax",
"",
true,
false);
170 $ajax_content_id =
"il_center_col";
171 $ajax_content_url = $ilCtrl->getLinkTarget($this,
"filterContainer",
"",
true,
false);
174 $tabs->setBackTarget($this->lng->txt(
"clsfct_back_to_cat"), $ilCtrl->getLinkTarget($this,
"returnToParent"));
175 $tabs->addTab(
"sel_objects", $this->lng->txt(
"clsfct_selected_objects"),
"#");
176 $tabs_html = $tabs->getHTML();
180 $tpl->addOnLoadCode(
'il.Classification.setAjax("' . $ajax_block_id .
'", "' .
181 $ajax_block_url .
'", "' . $ajax_content_id .
'", "' . $ajax_content_url .
'", ' . json_encode($tabs_html) .
');');
185 $btpl =
new ilTemplate(
"tpl.classification_block.html",
true,
true,
"Services/Classification");
187 foreach ($html as $item) {
188 $btpl->setCurrentBlock(
"provider_chunk_bl");
189 $btpl->setVariable(
"TITLE", $item[
"title"]);
190 $btpl->setVariable(
"CHUNK", $item[
"html"]);
191 $btpl->parseCurrentBlock();
194 $overall_html .= $btpl->get();
197 return $overall_html;
216 if ($this->repo->isEmpty()) {
220 $all_matching_provider_object_ids = null;
222 foreach ($this->providers as $provider) {
223 $id = get_class($provider);
224 $current = $this->repo->getValueForProvider($id);
226 $no_provider =
false;
228 $provider_object_ids = $provider->getFilteredObjects();
229 if (is_array($all_matching_provider_object_ids)) {
230 $all_matching_provider_object_ids = array_intersect($all_matching_provider_object_ids, $provider_object_ids);
232 $all_matching_provider_object_ids = $provider_object_ids;
236 $has_content =
false;
239 $ltpl =
new ilTemplate(
"tpl.classification_object_list.html",
true,
true,
"Services/Classification");
241 if (is_array($all_matching_provider_object_ids) &&
sizeof($all_matching_provider_object_ids)) {
243 "object_reference.ref_id" 244 ,
"object_data.obj_id" 247 ,
"object_data.description" 251 $matching =
$tree->getSubTreeFilteredByObjIds(
252 $this->parent_ref_id,
253 $all_matching_provider_object_ids,
257 if (
sizeof($matching)) {
258 $valid_objects = array();
261 include_once
"Services/Object/classes/class.ilObjectListGUIPreloader.php";
264 foreach ($matching as $item) {
265 if ($item[
"ref_id"] != $this->parent_ref_id &&
266 !
$tree->isDeleted($item[
"ref_id"]) &&
267 $ilAccess->checkAccess(
"visible",
"", $item[
"ref_id"])) {
272 foreach (
$tree->getPathFull($item[
"ref_id"]) as $p) {
273 if (in_array($p[
"type"], array(
"root",
"cat",
"crs",
"grp"))) {
274 $block_ref_id = $p[
"ref_id"];
275 $block_title = $p[
"title"];
278 if ($block_ref_id > 0) {
279 if (!is_array($valid_objects[$block_ref_id])) {
280 $valid_objects[$block_ref_id] = array(
281 "title" => $block_title,
285 $valid_objects[$block_ref_id][
"items"][] = $item;
288 $preloader->addItem($item[
"obj_id"], $item[
"type"], $item[
"ref_id"]);
292 if (
sizeof($valid_objects)) {
295 $preloader->preload();
297 $this->item_list_gui = array();
298 foreach ($valid_objects as $block) {
300 foreach ($items as $obj) {
301 $type = $obj[
"type"];
304 if (empty($this->item_list_gui[
$type])) {
305 $class = $objDefinition->getClassName($type);
306 $location = $objDefinition->getLocation($type);
308 $full_class =
"ilObj" . $class .
"ListGUI";
310 include_once(
$location .
"/class." . $full_class .
".php");
311 $this->item_list_gui[
$type] =
new $full_class();
312 $this->item_list_gui[
$type]->enableDelete(
false);
313 $this->item_list_gui[
$type]->enablePath(
315 $this->parent_ref_id,
318 $this->item_list_gui[
$type]->enableLinkedPath(
true);
319 $this->item_list_gui[
$type]->enableCut(
false);
320 $this->item_list_gui[
$type]->enableCopy(
false);
321 $this->item_list_gui[
$type]->enableSubscribe(
false);
322 $this->item_list_gui[
$type]->enableLink(
false);
323 $this->item_list_gui[
$type]->enableIcon(
true);
326 foreach ($this->providers as $provider) {
327 $provider->initListGUI($this->item_list_gui[$type]);
331 $html = $this->item_list_gui[
$type]->getListItemHTML(
339 $ltpl->setCurrentBlock(
"res_row");
340 $ltpl->setVariable(
"RESOURCE_HTML", $html);
341 $ltpl->parseCurrentBlock();
344 $ltpl->setCurrentBlock(
"block");
345 $ltpl->setVariable(
"BLOCK_TITLE", $block[
"title"]);
346 $ltpl->parseCurrentBlock();
354 echo
"<span id='block_" . $this->
getBlockType() .
"_0_loader'></span>";
355 echo
"<script>il.Classification.returnToParent();</script>";
371 if (!isset(self::$providers_cache[$this->parent_ref_id])) {
372 include_once
"Services/Classification/classes/class.ilClassificationProvider.php";
374 $this->parent_ref_id,
375 $this->parent_obj_id,
376 $this->parent_obj_typ
380 if ($a_check_post && (
bool) !$_REQUEST[
"rdrw"]) {
381 foreach ($this->providers as $provider) {
382 $id = get_class($provider);
383 $current = $provider->importPostData($this->repo->getValueForProvider($id));
384 if (is_array($current) || $current) {
385 $this->repo->setValueForProvider($id, $current);
392 foreach ($this->providers as $provider) {
393 $id = get_class($provider);
394 $current = $this->repo->getValueForProvider($id);
396 $provider->setSelection($current);
407 $this->ctrl->returnToParent($this);
438 $matching = array_filter(
$tree->getChilds($this->parent_ref_id),
function ($item) use ($obj_ids) {
439 return in_array($item[
"obj_id"], $obj_ids);
443 "object_reference.ref_id" 444 ,
"object_data.obj_id" 447 ,
"object_data.description" 449 $matching =
$tree->getSubTreeFilteredByObjIds($this->parent_ref_id, $obj_ids, $fields);
static sortArray( $array, $a_array_sortby, $a_array_sortorder=0, $a_numeric=false, $a_keep_keys=false)
sortArray
Repos for classification session data.
static getValidProviders($a_parent_ref_id, $a_parent_obj_id, $a_parent_obj_type)
Get all valid providers (for parent container)
static getSystemMessageHTML($a_txt, $a_type="info")
Get HTML for a system message.
Classification block, displayed in different contexts, e.g.
Preloader for object list GUIs.
setTitle($a_title)
Set Title.
static _lookupObjId($a_id)
PathGUI which handles materials assigned to sessions.
static _lookupType($a_id, $a_reference=false)
lookup object type
__construct(Container $dic, ilPlugin $plugin)
This class represents a block method of a block.
getSubItemIds($obj_ids)
Get sub item ids depending on container type that match the preselected object ids.
initProviders($a_check_post=false)