19 declare(strict_types=1);
25 define(
"IL_COL_LEFT",
"left");
26 define(
"IL_COL_RIGHT",
"right");
27 define(
"IL_COL_CENTER",
"center");
29 define(
"IL_SCREEN_SIDE",
"");
30 define(
"IL_SCREEN_CENTER",
"center");
31 define(
"IL_SCREEN_FULL",
"full");
48 protected \ILIAS\Block\StandardGUIRequest
$request;
75 "ilNewsForContextBlockGUI" =>
"components/ILIAS/News/",
76 "ilCalendarBlockGUI" =>
"components/ILIAS/Calendar/",
77 "ilTutorialSupportBlockGUI" =>
"components/ILIAS/Course/",
78 "ilPDCalendarBlockGUI" =>
"components/ILIAS/Calendar/",
79 "ilConsultationHoursCalendarBlockGUI" =>
"components/ILIAS/Calendar/",
80 "ilPDTasksBlockGUI" =>
"components/ILIAS/Tasks/",
81 "ilPDMailBlockGUI" =>
"components/ILIAS/Mail/",
82 "ilSelectedItemsBlockGUI" =>
"components/ILIAS/Dashboard/Block/",
83 "ilPDNewsBlockGUI" =>
"components/ILIAS/News/",
84 'ilPollBlockGUI' =>
'components/ILIAS/Poll/',
85 'ilClassificationBlockGUI' =>
'components/ILIAS/Classification/',
86 "ilPDStudyProgrammeSimpleListGUI" =>
"components/ILIAS/StudyProgramme/",
87 "ilPDStudyProgrammeExpandableListGUI" =>
"components/ILIAS/StudyProgramme/",
88 "ilLPProgressBlockGUI" =>
"components/ILIAS/Tracking/" 95 "ilNewsForContextBlockGUI" =>
"news",
96 "ilCalendarBlockGUI" =>
"cal",
97 "ilTutorialSupportBlockGUI" =>
"tusu",
99 "ilConsultationHoursCalendarBlockGUI" =>
"chcal",
100 "ilSelectedItemsBlockGUI" =>
"pditems",
101 'ilPollBlockGUI' =>
'poll',
102 'ilClassificationBlockGUI' =>
'clsfct',
103 "ilPDStudyProgrammeSimpleListGUI" =>
"prgsimplelist",
104 "ilPDStudyProgrammeExpandableListGUI" =>
"prgexpandablelist",
105 "ilLPProgressBlockGUI" =>
"lpprogress" 132 "frm" => array(
"ilNewsForContextBlockGUI" =>
IL_COL_RIGHT),
163 array(
"news" =>
true,
174 "lpprogress" =>
true);
177 array(
"pdfeed" =>
true);
180 string $a_col_type =
"",
182 bool $use_std_context =
false 186 $this->
ctrl = $DIC->ctrl();
187 $this->
lng = $DIC->language();
188 $this->
user = $DIC->user();
189 $this->browser = $DIC->http()->agent();
195 $this->request = $block_service->internal()
209 self::$locations[$className] =
$path;
221 self::$block_types[$className] = $identifier;
232 $request = $block_service->internal()
235 return $request->getColSide();
243 $this->coltype = $a_coltype;
256 $this->side = $a_side;
266 $this->enableedit = $a_enableedit;
275 bool $a_repositorymode
277 $this->repositorymode = $a_repositorymode;
287 $this->admincommands = $a_admincommands;
299 $ilCtrl = $DIC->ctrl();
302 $request = $block_service->internal()
306 if ($ilCtrl->getCmdClass() ==
"ilcolumngui") {
307 switch ($ilCtrl->getCmd()) {
313 $cur_block_type = $request->getBlockType();
315 if ($class = array_search($cur_block_type, self::$block_types)) {
316 return call_user_func(array($class,
'getScreenMode'));
327 string $a_block_type,
331 $this->block_property[$a_block_type][$a_property] = $a_value;
337 return $this->block_property[$a_block_type];
341 array $a_block_properties
343 $this->block_property = $a_block_properties;
347 array $a_repositoryitems
349 $this->repositoryitems = $a_repositoryitems;
370 return isset($this->item_presentation);
379 $next_class = $ilCtrl->getNextClass();
380 $cmd = $ilCtrl->getCmd(
"getHTML");
382 $cur_block_type = $this->request->getBlockType();
384 if ($next_class !=
"") {
386 if ($gui_class = array_search($cur_block_type, self::$block_types)) {
387 $ilCtrl->setParameter($this,
"block_type", $cur_block_type);
388 $block_gui =
new $gui_class();
389 $block_gui->setProperties($this->block_property[$cur_block_type] ?? []);
394 if (in_array($gui_class, $this->custom_blocks[$this->
getColType()]) ||
395 in_array($cur_block_type, $this->rep_block_types)) {
396 $block_class = substr($gui_class, 0, strlen($gui_class) - 3);
397 $app_block =
new $block_class($this->request->getBlockId());
398 $block_gui->setBlock($app_block);
400 $html = $ilCtrl->forwardCommand($block_gui);
401 $ilCtrl->setParameter($this,
"block_type",
"");
406 return (
string) $this->$cmd();
417 $this->tpl =
new ilTemplate(
"tpl.column.html",
true,
true,
"components/ILIAS/Block");
420 return $this->tpl->get();
429 $sum_moveable = count($this->blocks[$this->
getSide()]);
431 foreach ($this->blocks[$this->
getSide()] as $block) {
432 $gui_class = $block[
"class"] ??
null;
433 if (!is_string($gui_class)) {
436 $block_class = substr($gui_class, 0, strlen($gui_class) - 3);
439 $block_gui =
new $gui_class();
440 if (isset($this->block_property[$block[
"type"]])) {
441 $block_gui->setProperties($this->block_property[$block[
"type"]]);
448 if ($block[
"custom"]) {
449 $path =
"./../" . self::$locations[$gui_class] .
"classes/" .
450 "class." . $block_class .
".php";
451 if (file_exists(
$path)) {
452 $app_block =
new $block_class((
int) $block[
"id"]);
457 $block_gui->setBlock($app_block);
458 if (isset($block[
"ref_id"])) {
459 $block_gui->setRefId((
int) $block[
"ref_id"]);
463 $ilCtrl->setParameter($this,
"block_type", $block_gui->getBlockType());
464 $this->tpl->setCurrentBlock(
"col_block");
466 $html = $ilCtrl->getHTML($block_gui);
470 $this->tpl->setVariable(
"BLOCK", $html);
471 $this->tpl->parseCurrentBlock();
472 $ilCtrl->setParameter($this,
"block_type",
"");
487 $sum_moveable = count($this->blocks[$this->
getSide()]);
489 foreach ($this->blocks[$this->
getSide()] as $block) {
492 if (!$block[
"custom"] && $ilCtrl->getContextObjType() !=
"" && $ilCtrl->getContextObjType() !=
"user") {
493 $block[
"id"] = $ilCtrl->getContextObjId();
496 if ($this->request->getBlockId() ==
"block_" . $block[
"type"] .
"_" . $block[
"id"]) {
497 $gui_class = $block[
"class"];
498 $block_class = substr($block[
"class"], 0, strlen($block[
"class"]) - 3);
500 $block_gui =
new $gui_class();
501 $block_gui->setProperties($this->block_property[$block[
"type"]]);
507 if ($block[
"custom"]) {
508 $app_block =
new $block_class($block[
"id"]);
509 $block_gui->setBlock($app_block);
510 $block_gui->setRefId($block[
"ref_id"]);
513 $ilCtrl->setParameter($this,
"block_type", $block[
"type"]);
514 echo $ilCtrl->getHTML($block_gui);
519 if ($block[
"type"] !=
"pdfeedb" 520 && $block[
"type"] !=
"news") {
526 echo
"Error: ilColumnGUI::updateBlock: Block '" .
527 $this->request->getBlockId() .
"' unknown.";
539 if ($this->request->getBlock() !=
"") {
540 $block = explode(
"_", $this->request->getBlock());
544 $ilCtrl->returnToParent($this);
554 $class = array_search($this->request->getBlockType(), self::$block_types);
559 $block_gui =
new $class();
560 $block_gui->setProperties($this->block_property[$this->request->getBlockType()]);
565 $ilCtrl->setParameter($this,
"block_type", $this->request->getBlockType());
566 $html = $ilCtrl->forwardCommand($block_gui);
567 $ilCtrl->setParameter($this,
"block_type",
"");
586 $positions = array_flip($this->dash_side_panel_settings->getPositions());
590 if (isset($this->default_blocks[$this->
getColType()])) {
591 foreach ($this->default_blocks[$this->
getColType()] as $class => $def_side) {
592 $type = self::$block_types[$class];
597 if ($type ==
"news") {
600 if ($type ==
"cal") {
603 if ($type ==
"chcal") {
606 if ($type ==
"tusu") {
609 if ($type ==
"pdfeedb") {
612 if ($type ==
"clsfct") {
615 if ($type ==
"lpprogress") {
619 if (is_null($side) || $side ===
"") {
626 if ($this->
getColType() ===
'pd' && in_array(substr($type, 2), $this->dash_side_panel_settings->getValidModules(),
true)) {
627 $nr = $positions[substr($type, 2)] ?? $nr;
630 $this->blocks[
$side][] = array(
642 $custom_block->setContextObjId($ilCtrl->getContextObjId());
643 $custom_block->setContextObjType($ilCtrl->getContextObjType());
644 $c_blocks = $custom_block->queryBlocksForContext();
646 foreach ($c_blocks as $c_block) {
647 $type = $c_block[
"type"];
650 $class = array_search($type, self::$block_types);
653 if (is_null($side)) {
657 $this->blocks[
$side][] = array(
661 "id" => $c_block[
"id"],
666 foreach ($this->rep_block_types as $block_type) {
669 foreach ($item_ref_ids as $item_ref_id) {
672 $costum_block->setContextObjId((
int) $item[
"obj_id"]);
673 $costum_block->setContextObjType($block_type);
674 $c_blocks = $costum_block->queryBlocksForContext();
675 $c_block = $c_blocks[0];
678 $class = array_search($type, self::$block_types);
681 if ($side ==
false) {
685 $this->blocks[
$side][] = array(
689 "id" => $c_block[
"id"],
691 "ref_id" => $item[
"ref_id"]);
698 $custom_block->setContextObjId($ilCtrl->getContextObjId());
699 $custom_block->setContextObjType($ilCtrl->getContextObjType());
700 $c_blocks = $custom_block->queryBlocksForContext(
false);
701 foreach ($c_blocks as $c_block) {
702 $type = $c_block[
"type"];
703 $class = array_search($type, self::$block_types);
709 $this->blocks[
$side][] = array(
713 "id" => $c_block[
"id"],
736 if ($a_type ==
'pdfeed') {
740 if (isset($this->check_global_activation[$a_type]) && $this->check_global_activation[$a_type]) {
742 return ($this->dash_side_panel_settings->isEnabled($this->dash_side_panel_settings::NEWS) &&
745 return $this->dash_side_panel_settings->isEnabled($this->dash_side_panel_settings::MAIL);
747 return $this->dash_side_panel_settings->isEnabled($this->dash_side_panel_settings::TASKS);
748 } elseif ($a_type ==
'news') {
752 (!in_array($ilCtrl->getContextObjType(), [
"grp",
"crs"]) ||
754 $GLOBALS[
'ilCtrl']->getContextObjId(),
759 $GLOBALS[
'ilCtrl']->getContextObjId(),
763 } elseif (
$ilSetting->get(
"block_activated_" . $a_type)) {
765 } elseif ($a_type ==
'cal' || $a_type ==
'chcal') {
768 if (!$this->dash_side_panel_settings->isEnabled($this->dash_side_panel_settings::CALENDAR)) {
772 } elseif ($a_type ==
"tagcld") {
774 return (
bool) $tags_active->get(
"enable",
"0");
775 } elseif ($a_type ==
"clsfct") {
776 if ($ilCtrl->getContextObjType() ==
"cat") {
780 return (
bool) $tags_active->get(
"enable",
"0");
782 $a_type ===
"tusu" &&
786 } elseif ($a_type ===
"lpprogress") {
788 $progress_block_settings = (
new TrackingView())->progressBlock()->settings()->repository();
790 $progress_block_settings->isBlockShownForObject($ilCtrl->getContextObjId());
806 if ($this->check_nr_limit[$a_type]) {
809 $costum_block->setContextObjId($ilCtrl->getContextObjId());
810 $costum_block->setContextObjType($ilCtrl->getContextObjType());
811 $costum_block->setType($a_type);
812 $res = $costum_block->queryCntBlockForContext();
819 if (
$ilSetting->get(
"block_limit_" . $a_type) > $cnt) {
static addCustomBlockType(string $className, string $identifier)
Adds the block type of the custom block gui.
static getCmdSide()
Get Column Side of Current Command.
This library is borrowed from the phpGroupWare API http://www.phpgroupware.org/api Modifications made...
setActionMenu(ilAdvancedSelectionListGUI $action_menu)
activateBlock()
Activate hidden block.
__construct(string $a_col_type="", string $a_side="", bool $use_std_context=false)
setAdminCommands(bool $a_admincommands)
setRepositoryMode(bool $a_repositorymode)
getBlockProperties(string $a_block_type)
setEnableEdit(bool $a_enableedit)
AgentDetermination $browser
ilDashboardSidePanelSettingsRepository $dash_side_panel_settings
static array $block_types
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
hasItemPresentationManager()
exceededLimit(string $a_type)
Check whether limit is not exceeded.
isGloballyActivated(string $a_type)
Check whether a block type is globally activated.
array $check_global_activation
Column user interface class.
static _writeDetailLevel(string $a_type, string $a_value, int $a_user=0, int $a_block_id=0)
setItemPresentationManager(ItemPresentationManager $item_presentation)
ilAdvancedSelectionListGUI $action_menu
setBlockProperty(string $a_block_type, string $a_property, string $a_value)
This function is supposed to be used for block type specific properties, that should be passed to ilB...
static lookupCalendarContentPresentationEnabled(int $obj_id)
setColType(string $a_coltype)
ItemPresentationManager $item_presentation
This is the super class of all custom blocks.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
getItemPresentationManager()
updateBlock()
Update Block (asynchronous)
static lookupTutorialBlockSettingEabled(int $a_obj_id)
static _lookupContainerSetting(int $a_id, string $a_keyword, ?string $a_default_value=null)
setParameter(object $a_gui_obj, string $a_parameter, $a_value)
static _lookupSide(string $a_type, int $a_user=0, int $a_block_id=0)
Lookup side.
exit
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static getInstance(int $obj_id)
static addCustomBlockLocation(string $className, string $path)
Adds location information of the custom block gui.
setRepositoryItems(array $a_repositoryitems)
determineBlocks()
Determine which blocks to show.
setAllBlockProperties(array $a_block_properties)
ILIAS Block StandardGUIRequest $request
High level business logic class.
static sortArray(array $array, string $a_array_sortby_key, string $a_array_sortorder="asc", bool $a_numeric=false, bool $a_keep_keys=false)