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");
87 $next_class =
$ilCtrl->getNextClass($this);
89 switch ($next_class) {
92 if (
$ilCtrl->isAsynch() && $cmd !=
"getAjax" && $cmd !=
"filterContainer") {
112 case "filterContainer":
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($this->parent_ref_id, $all_matching_provider_object_ids,
254 if (
sizeof($matching)) {
255 $valid_objects = array();
258 include_once
"Services/Object/classes/class.ilObjectListGUIPreloader.php";
261 foreach ($matching as $item) {
262 if ($item[
"ref_id"] != $this->parent_ref_id &&
263 !
$tree->isDeleted($item[
"ref_id"]) &&
264 $ilAccess->checkAccess(
"visible",
"", $item[
"ref_id"])) {
269 foreach (
$tree->getPathFull($item[
"ref_id"]) as $p) {
270 if (in_array($p[
"type"], array(
"root",
"cat",
"crs",
"grp"))) {
271 $block_ref_id = $p[
"ref_id"];
272 $block_title = $p[
"title"];
275 if ($block_ref_id > 0) {
276 if (!is_array($valid_objects[$block_ref_id])) {
277 $valid_objects[$block_ref_id] = array(
278 "title" => $block_title,
282 $valid_objects[$block_ref_id][
"items"][] = $item;
285 $preloader->addItem($item[
"obj_id"], $item[
"type"], $item[
"ref_id"]);
289 if (
sizeof($valid_objects)) {
292 $preloader->preload();
294 $this->item_list_gui = array();
295 foreach ($valid_objects as $block) {
297 foreach ($items as $obj) {
298 $type = $obj[
"type"];
301 if (empty($this->item_list_gui[
$type])) {
302 $class = $objDefinition->getClassName($type);
303 $location = $objDefinition->getLocation($type);
305 $full_class =
"ilObj" . $class .
"ListGUI";
307 include_once(
$location .
"/class." . $full_class .
".php");
308 $this->item_list_gui[
$type] =
new $full_class();
309 $this->item_list_gui[
$type]->enableDelete(
false);
310 $this->item_list_gui[
$type]->enablePath(
312 $this->parent_ref_id,
315 $this->item_list_gui[
$type]->enableLinkedPath(
true);
316 $this->item_list_gui[
$type]->enableCut(
false);
317 $this->item_list_gui[
$type]->enableCopy(
false);
318 $this->item_list_gui[
$type]->enableSubscribe(
false);
319 $this->item_list_gui[
$type]->enableLink(
false);
320 $this->item_list_gui[
$type]->enableIcon(
true);
323 foreach ($this->providers as $provider) {
324 $provider->initListGUI($this->item_list_gui[$type]);
328 $html = $this->item_list_gui[
$type]->getListItemHTML(
336 $ltpl->setCurrentBlock(
"res_row");
337 $ltpl->setVariable(
"RESOURCE_HTML", $html);
338 $ltpl->parseCurrentBlock();
341 $ltpl->setCurrentBlock(
"block");
342 $ltpl->setVariable(
"BLOCK_TITLE", $block[
"title"]);
343 $ltpl->parseCurrentBlock();
351 echo
"<span id='block_" . $this->
getBlockType() .
"_0_loader'></span>";
352 echo
"<script>il.Classification.returnToParent();</script>";
368 if (!isset(self::$providers_cache[$this->parent_ref_id])) {
369 include_once
"Services/Classification/classes/class.ilClassificationProvider.php";
371 $this->parent_ref_id,
372 $this->parent_obj_id,
373 $this->parent_obj_typ
377 if ($a_check_post && (
bool) !$_REQUEST[
"rdrw"]) {
378 foreach ($this->providers as $provider) {
379 $id = get_class($provider);
380 $current = $provider->importPostData($this->repo->getValueForProvider($id));
381 if (is_array($current) || $current) {
382 $this->repo->setValueForProvider($id, $current);
389 foreach ($this->providers as $provider) {
390 $id = get_class($provider);
391 $current = $this->repo->getValueForProvider($id);
393 $provider->setSelection($current);
404 $this->ctrl->returnToParent($this);
435 $matching = array_filter(
$tree->getChilds($this->parent_ref_id),
function ($item) use ($obj_ids) {
436 return in_array($item[
"obj_id"], $obj_ids);
440 "object_reference.ref_id" 441 ,
"object_data.obj_id" 444 ,
"object_data.description" 446 $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)