3 declare(strict_types=1);
73 $this->tree = $DIC->repositoryTree();
74 $this->
lng->loadLanguageModule(
'dash');
75 $this->
lng->loadLanguageModule(
'dateplaner');
76 $this->
http = $DIC->http();
79 $this->ref_id = $a_ref_id;
81 $this->category_id = 0;
82 if ($this->
http->wrapper()->query()->has(
'category_id')) {
83 $this->category_id = $this->
http->wrapper()->query()->retrieve(
90 $this->allow_moving =
false;
91 $this->seed = $a_seed;
92 $this->
setTitle($this->
lng->txt(
'cal_table_categories'));
95 $this->
ctrl->setParameterByClass(
96 "ilcalendarcategorygui",
100 $this->
ctrl->setParameterByClass(
"ilcalendarcategorygui",
'seed', $this->seed->get(
IL_CAL_DATE));
103 $this->
ctrl->getLinkTargetByClass(
"ilcalendarcategorygui",
'switchCalendarMode'),
104 $this->
lng->txt(
'dash_favourites')
106 $this->
ctrl->setParameterByClass(
107 "ilcalendarcategorygui",
111 $this->
ctrl->setParameterByClass(
"ilcalendarcategorygui",
'seed', $this->seed->get(
IL_CAL_DATE));
115 $this->
ctrl->getLinkTargetByClass(
"ilcalendarcategorygui",
'switchCalendarMode'),
116 $this->
lng->txt(
'dash_memberships')
119 $this->
ctrl->setParameterByClass(
"ilcalendarcategorygui",
'calendar_mode',
"");
121 $this->
ctrl->getLinkTargetByClass(
"ilcalendarcategorygui",
'add'),
122 $this->
lng->txt(
'cal_add_calendar')
125 $this->calendar_groups = array(
126 self::CAL_GRP_CURRENT_CONT_CONS => $this->
lng->txt(
"cal_grp_" . self::CAL_GRP_CURRENT_CONT_CONS),
127 self::CAL_GRP_CURRENT_CONT => $this->
lng->txt(
"cal_grp_" . self::CAL_GRP_CURRENT_CONT),
128 self::CAL_GRP_PERSONAL => $this->
lng->txt(
"cal_grp_" . self::CAL_GRP_PERSONAL),
129 self::CAL_GRP_OTHERS => $this->
lng->txt(
"cal_grp_" . self::CAL_GRP_OTHERS)
148 return self::$block_type;
158 $ilCtrl = $DIC[
'ilCtrl'];
165 $next_class = $this->
ctrl->getNextClass();
166 $cmd = $this->
ctrl->getCmd(
"getHTML");
167 switch ($next_class) {
169 return $this->$cmd();
179 $hidden = $hidden_obj->getHidden();
180 $visible = $hidden_obj->getVisible();
183 if ($this->ref_id > 0) {
191 $all = $cats->getCategoriesInfo();
192 $tmp_title_counter = [];
193 $categories = array();
194 foreach ($all as $category) {
197 $tmp_arr[
'obj_id'] = (
int) $category[
'obj_id'];
198 $tmp_arr[
'id'] = (
int) $category[
'cat_id'];
199 $tmp_arr[
'hidden'] = in_array($category[
'cat_id'], $hidden);
200 $tmp_arr[
'visible'] = in_array($category[
'cat_id'], $visible);
201 $tmp_arr[
'title'] = (string) $category[
'title'];
202 $tmp_arr[
'type'] = (string) $category[
'type'];
203 $tmp_arr[
'source_ref_id'] = (
int) ($category[
'source_ref_id'] ?? 0);
204 $tmp_arr[
'default_selected'] =
true;
205 if ($this->category_id) {
206 if ($this->category_id == $category[
'cat_id']) {
207 $tmp_arr[
'default_selected'] =
true;
209 $tmp_arr[
'default_selected'] =
false;
218 $tmp_arr[
'color'] = (string) $category[
'color'];
219 $tmp_arr[
'editable'] = (bool) ($category[
'editable'] ??
false);
224 if ($this->
access->checkAccess(
'read',
'', $ref_id)) {
225 $tmp_arr[
'ref_id'] = (
int) $ref_id;
230 $categories[] = $tmp_arr;
233 if (isset($tmp_title_counter[$category[
'type'] .
'_' . $category[
'title']])) {
234 $tmp_title_counter[$category[
'type'] .
'_' . $category[
'title']]++;
236 $tmp_title_counter[$category[
'type'] .
'_' . $category[
'title']] = 1;
240 $path_categories = array();
241 foreach ($categories as $cat) {
245 isset($tmp_title_counter[$category[
'type'] .
'_' . $category[
'title']]) &&
246 $tmp_title_counter[$cat[
'type'] .
'_' . $cat[
'title']] > 1
249 $cat[
'path'] = $this->
buildPath($ref_id);
254 $path_categories[] = $cat;
258 $this->calendars[self::CAL_GRP_CURRENT_CONT_CONS] = array();
259 $this->calendars[self::CAL_GRP_CURRENT_CONT] = array();
260 $this->calendars[self::CAL_GRP_PERSONAL] = array();
261 $this->calendars[self::CAL_GRP_OTHERS] = array();
263 foreach ($path_categories as $cal) {
265 $this->calendars[self::CAL_GRP_CURRENT_CONT_CONS][] = $cal;
267 || $this->ref_id == $cal[
"source_ref_id"]))) {
268 $this->calendars[self::CAL_GRP_CURRENT_CONT][] = $cal;
271 $this->calendars[self::CAL_GRP_PERSONAL][] = $cal;
273 $this->calendars[self::CAL_GRP_OTHERS][] = $cal;
284 if (!$this->obj_def->isAllowedInRepository($obj_type)) {
290 unset($path_arr[count($path_arr) - 1]);
293 foreach ($path_arr as
$data) {
297 $path .= $data[
'title'];
299 if (strlen(
$path) > 30) {
300 return '...' . substr(
$path, -30);
307 $tpl =
new ilTemplate(
"tpl.cal_selection_block_content.html",
true,
true,
"Services/Calendar");
309 foreach ($this->calendar_groups as
$type =>
$txt) {
310 foreach ($this->calendars[
$type] as
$c) {
313 if (count($this->calendars[
$type]) > 0) {
314 if ($type == self::CAL_GRP_CURRENT_CONT) {
317 if ($type == self::CAL_GRP_CURRENT_CONT_CONS) {
318 $txt = $this->
lng->txt(
"cal_grp_curr_crs_cons");
330 $tpl->
setVariable(
"FORM_ACTION", $this->
ctrl->getFormActionByClass(
"ilcalendarcategorygui"));
338 if (strlen((
string) $a_set[
'path'])) {
340 $a_tpl->
setVariable(
'ADD_PATH_INFO', $a_set[
'path']);
347 if ($this->obj_id === 0 && $this->category_id === 0) {
348 if (!$a_set[
'hidden'] && $a_set[
'default_selected']) {
349 $a_tpl->
setVariable(
'VAL_CHECKED',
'checked="checked"');
351 } elseif ($this->obj_id === 0 && $this->category_id > 0) {
352 if (!$a_set[
'hidden'] && $a_set[
'default_selected']) {
353 $a_tpl->
setVariable(
'VAL_CHECKED',
'checked="checked"');
356 } elseif ($a_set[
"obj_id"] == $this->obj_id) {
358 $a_tpl->
setVariable(
'VAL_CHECKED',
'checked="checked"');
360 } elseif ($a_set[
'visible']) {
361 $a_tpl->
setVariable(
'VAL_CHECKED',
'checked="checked"');
368 ($a_set[
'ref_id'] ??
false)
370 if (!$this->ref_id) {
371 $this->
ctrl->setParameterByClass(
'ilcalendarpresentationgui',
'backpd', 1);
373 $this->
ctrl->setParameterByClass(
'ilcalendarpresentationgui',
'ref_id', $a_set[
'ref_id']);
376 $link = $this->
ctrl->getLinkTargetByClass(
378 ilRepositoryGUI::class,
379 ilObjCourseGUI::class,
380 ilCalendarPresentationGUI::class
387 $link = $this->
ctrl->getLinkTargetByClass(
389 ilRepositoryGUI::class,
390 ilObjGroupGUI::class,
391 ilCalendarPresentationGUI::class
398 $this->
ctrl->setParameterByClass(
"ilcalendarpresentationgui",
'category_id', $a_set[
'id']);
399 $link = $this->
ctrl->getLinkTargetByClass(
"ilcalendarpresentationgui",
'');
400 $this->
ctrl->setParameterByClass(
"ilcalendarpresentationgui",
'category_id', $this->category_id);
408 $this->
ctrl->clearParameterByClass(ilCalendarPresentationGUI::class,
'ref_id');
413 $a_tpl->
setVariable(
'PLAIN_TITLE', $a_set[
'title']);
416 $this->
ctrl->setParameterByClass(
"ilcalendarpresentationgui",
'category_id', $a_set[
'id']);
417 $a_tpl->
setVariable(
'EDIT_LINK', $this->
ctrl->getLinkTargetByClass(
"ilcalendarpresentationgui",
''));
418 $this->
ctrl->setParameterByClass(
"ilcalendarpresentationgui",
'category_id', $this->category_id);
422 switch ($a_set[
'type']) {
425 $a_tpl->
setVariable(
'IMG_ALT', $this->
lng->txt(
'cal_type_system'));
430 $a_tpl->
setVariable(
'IMG_ALT', $this->
lng->txt(
'cal_type_personal'));
434 $img_type = $obj_type ===
'tals' ?
'etal' : $obj_type;
436 $a_tpl->
setVariable(
'IMG_ALT', $this->
lng->txt(
'cal_type_' . $obj_type));
441 $a_tpl->
setVariable(
'IMG_ALT', $this->
lng->txt(
'cal_type_' . $obj_type));
459 return parent::getHTML();
468 if (isset($data[
"shy_button"])) {
469 return $factory->item()->standard($data[
"shy_button"])->withDescription($data[
"date"]);
471 return $factory->item()->standard($data[
"date"]);
parseCurrentBlock(string $part=ilGlobalTemplateInterface::DEFAULT_BLOCK)
class for calendar categories
initialize(int $a_mode, int $a_source_ref_id=0, bool $a_use_cache=false, int $a_cat_id=0)
initialize visible categories
getCalendars()
Get calendars.
get(string $part=ilGlobalTemplateInterface::DEFAULT_BLOCK)
const MODE_PERSONAL_DESKTOP_MEMBERSHIP
Class ChatMainBarProvider .
static _getAllReferences(int $id)
get all reference ids for object ID
static getImagePath(string $img, string $module_path="", string $mode="output", bool $offline=false)
get image path (for images located in a template directory)
RefineryFactory $refinery
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
const CAL_SELECTION_MEMBERSHIP
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static string $block_type
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static _lookupObjId(int $ref_id)
static http()
Fetches the global http state from ILIAS.
setVariable($variable, $value='')
Sets a variable value.
const CAL_SELECTION_ITEMS
getListItemForData(array $data)
static _getLink(?int $a_ref_id, string $a_type='', array $a_params=array(), string $append="")
buildPath($a_ref_id)
Build path for ref id.
setCurrentBlock(string $part=ilGlobalTemplateInterface::DEFAULT_BLOCK)
static lookupCategorySortIndex(int $a_type_id)
Lookup sort index of calendar type.
__construct(Container $dic, ilPlugin $plugin)
__construct(ilDate $a_seed, int $a_ref_id=0)
Constructor.
const CAL_GRP_CURRENT_CONT_CONS
setTitle(string $a_title)
This class represents a block method of a block.
renderItem(array $a_set, ilTemplate $a_tpl)
addBlockCommand(string $a_href, string $a_text, string $a_onclick="")
static _lookupType(int $id, bool $reference=false)
static _getInstanceByUserId(int $a_user_id, int $a_ref_id=0)
setPresentation(int $type)
const CAL_GRP_CURRENT_CONT
static sortArray(array $array, string $a_array_sortby_key, string $a_array_sortorder="asc", bool $a_numeric=false, bool $a_keep_keys=false)
const MODE_PERSONAL_DESKTOP_ITEMS