19 declare(strict_types=1);
67 $this->tree = $DIC->repositoryTree();
68 $this->
lng->loadLanguageModule(
'dash');
69 $this->
lng->loadLanguageModule(
'dateplaner');
70 $this->
http = $DIC->http();
73 $this->ref_id = $a_ref_id;
75 $this->category_id = 0;
76 if ($this->
http->wrapper()->query()->has(
'category_id')) {
77 $this->category_id = $this->
http->wrapper()->query()->retrieve(
84 $this->allow_moving =
false;
85 $this->seed = $a_seed;
86 $this->
setTitle($this->
lng->txt(
'cal_table_categories'));
89 $this->
ctrl->setParameterByClass(
90 "ilcalendarcategorygui",
94 $this->
ctrl->setParameterByClass(
"ilcalendarcategorygui",
'seed', $this->seed->get(
IL_CAL_DATE));
97 $this->
ctrl->getLinkTargetByClass(
"ilcalendarcategorygui",
'switchCalendarMode'),
98 $this->
lng->txt(
'dash_favourites')
100 $this->
ctrl->setParameterByClass(
101 "ilcalendarcategorygui",
105 $this->
ctrl->setParameterByClass(
"ilcalendarcategorygui",
'seed', $this->seed->get(
IL_CAL_DATE));
109 $this->
ctrl->getLinkTargetByClass(
"ilcalendarcategorygui",
'switchCalendarMode'),
110 $this->
lng->txt(
'dash_memberships')
113 $this->
ctrl->setParameterByClass(
"ilcalendarcategorygui",
'calendar_mode',
"");
115 $this->
ctrl->getLinkTargetByClass(
"ilcalendarcategorygui",
'add'),
116 $this->
lng->txt(
'cal_add_calendar')
119 $this->calendar_groups = array(
120 self::CAL_GRP_CURRENT_CONT_CONS => $this->
lng->txt(
"cal_grp_" . self::CAL_GRP_CURRENT_CONT_CONS),
121 self::CAL_GRP_CURRENT_CONT => $this->
lng->txt(
"cal_grp_" . self::CAL_GRP_CURRENT_CONT),
122 self::CAL_GRP_PERSONAL => $this->
lng->txt(
"cal_grp_" . self::CAL_GRP_PERSONAL),
123 self::CAL_GRP_OTHERS => $this->
lng->txt(
"cal_grp_" . self::CAL_GRP_OTHERS)
142 return self::$block_type;
152 $ilCtrl = $DIC[
'ilCtrl'];
159 $next_class = $this->
ctrl->getNextClass();
160 $cmd = $this->
ctrl->getCmd(
"getHTML");
161 switch ($next_class) {
163 return $this->$cmd();
173 $hidden = $hidden_obj->getHidden();
174 $visible = $hidden_obj->getVisible();
177 if ($this->ref_id > 0) {
185 $all = $cats->getCategoriesInfo();
186 $tmp_title_counter = [];
187 $categories = array();
188 foreach ($all as $category) {
191 $tmp_arr[
'obj_id'] = (
int) $category[
'obj_id'];
192 $tmp_arr[
'id'] = (
int) $category[
'cat_id'];
193 $tmp_arr[
'hidden'] = in_array($category[
'cat_id'], $hidden);
194 $tmp_arr[
'visible'] = in_array($category[
'cat_id'], $visible);
195 $tmp_arr[
'title'] = (string) $category[
'title'];
196 $tmp_arr[
'type'] = (string) $category[
'type'];
197 $tmp_arr[
'source_ref_id'] = (
int) ($category[
'source_ref_id'] ?? 0);
198 $tmp_arr[
'default_selected'] =
true;
199 if ($this->category_id) {
200 if ($this->category_id == $category[
'cat_id']) {
201 $tmp_arr[
'default_selected'] =
true;
203 $tmp_arr[
'default_selected'] =
false;
212 $tmp_arr[
'color'] = (string) $category[
'color'];
213 $tmp_arr[
'editable'] = (bool) ($category[
'editable'] ??
false);
218 if ($this->
access->checkAccess(
'read',
'', $ref_id)) {
219 $tmp_arr[
'ref_id'] = (
int) $ref_id;
224 $categories[] = $tmp_arr;
227 if (isset($tmp_title_counter[$category[
'type'] .
'_' . $category[
'title']])) {
228 $tmp_title_counter[$category[
'type'] .
'_' . $category[
'title']]++;
230 $tmp_title_counter[$category[
'type'] .
'_' . $category[
'title']] = 1;
234 $path_categories = array();
235 foreach ($categories as $cat) {
239 isset($tmp_title_counter[$category[
'type'] .
'_' . $category[
'title']]) &&
240 $tmp_title_counter[$cat[
'type'] .
'_' . $cat[
'title']] > 1
243 $cat[
'path'] = $this->
buildPath($ref_id);
248 $path_categories[] = $cat;
252 $this->calendars[self::CAL_GRP_CURRENT_CONT_CONS] = array();
253 $this->calendars[self::CAL_GRP_CURRENT_CONT] = array();
254 $this->calendars[self::CAL_GRP_PERSONAL] = array();
255 $this->calendars[self::CAL_GRP_OTHERS] = array();
257 foreach ($path_categories as $cal) {
259 $this->calendars[self::CAL_GRP_CURRENT_CONT_CONS][] = $cal;
261 || $this->ref_id == $cal[
"source_ref_id"]))) {
262 $this->calendars[self::CAL_GRP_CURRENT_CONT][] = $cal;
265 $this->calendars[self::CAL_GRP_PERSONAL][] = $cal;
267 $this->calendars[self::CAL_GRP_OTHERS][] = $cal;
278 if (!$this->obj_def->isAllowedInRepository($obj_type)) {
284 unset($path_arr[count($path_arr) - 1]);
287 foreach ($path_arr as
$data) {
291 $path .= $data[
'title'];
293 if (strlen(
$path) > 30) {
294 return '...' . substr(
$path, -30);
301 $tpl =
new ilTemplate(
"tpl.cal_selection_block_content.html",
true,
true,
"components/ILIAS/Calendar");
303 foreach ($this->calendar_groups as $type =>
$txt) {
304 foreach ($this->calendars[$type] as
$c) {
307 if (count($this->calendars[$type]) > 0) {
308 if ($type == self::CAL_GRP_CURRENT_CONT) {
311 if ($type == self::CAL_GRP_CURRENT_CONT_CONS) {
312 $txt = $this->
lng->txt(
"cal_grp_curr_crs_cons");
324 $tpl->
setVariable(
"FORM_ACTION", $this->
ctrl->getFormActionByClass(
"ilcalendarcategorygui"));
332 if (strlen((
string) $a_set[
'path'])) {
334 $a_tpl->
setVariable(
'ADD_PATH_INFO', $a_set[
'path']);
341 if ($this->obj_id === 0 && $this->category_id === 0) {
342 if (!$a_set[
'hidden'] && $a_set[
'default_selected']) {
343 $a_tpl->
setVariable(
'VAL_CHECKED',
'checked="checked"');
345 } elseif ($this->obj_id === 0 && $this->category_id > 0) {
346 if (!$a_set[
'hidden'] && $a_set[
'default_selected']) {
347 $a_tpl->
setVariable(
'VAL_CHECKED',
'checked="checked"');
350 } elseif ($a_set[
"obj_id"] == $this->obj_id) {
352 $a_tpl->
setVariable(
'VAL_CHECKED',
'checked="checked"');
354 } elseif ($a_set[
'visible']) {
355 $a_tpl->
setVariable(
'VAL_CHECKED',
'checked="checked"');
362 ($a_set[
'ref_id'] ??
false)
364 if (!$this->ref_id) {
365 $this->
ctrl->setParameterByClass(
'ilcalendarpresentationgui',
'backpd', 1);
367 $this->
ctrl->setParameterByClass(
'ilcalendarpresentationgui',
'ref_id', $a_set[
'ref_id']);
370 $link = $this->
ctrl->getLinkTargetByClass(
372 ilRepositoryGUI::class,
373 ilObjCourseGUI::class,
374 ilCalendarPresentationGUI::class
381 $link = $this->
ctrl->getLinkTargetByClass(
383 ilRepositoryGUI::class,
384 ilObjGroupGUI::class,
385 ilCalendarPresentationGUI::class
392 $this->
ctrl->setParameterByClass(
"ilcalendarpresentationgui",
'category_id', $a_set[
'id']);
393 $link = $this->
ctrl->getLinkTargetByClass(
"ilcalendarpresentationgui",
'');
394 $this->
ctrl->setParameterByClass(
"ilcalendarpresentationgui",
'category_id', $this->category_id);
398 $link = ilLink::_getLink($a_set[
'ref_id']);
402 $this->
ctrl->clearParameterByClass(ilCalendarPresentationGUI::class,
'ref_id');
407 $a_tpl->
setVariable(
'PLAIN_TITLE', $a_set[
'title']);
410 $this->
ctrl->setParameterByClass(
"ilcalendarpresentationgui",
'category_id', $a_set[
'id']);
411 $a_tpl->
setVariable(
'EDIT_LINK', $this->
ctrl->getLinkTargetByClass(
"ilcalendarpresentationgui",
''));
412 $this->
ctrl->setParameterByClass(
"ilcalendarpresentationgui",
'category_id', $this->category_id);
416 switch ($a_set[
'type']) {
419 $a_tpl->
setVariable(
'IMG_ALT', $this->
lng->txt(
'cal_type_system'));
424 $a_tpl->
setVariable(
'IMG_ALT', $this->
lng->txt(
'cal_type_personal'));
428 $img_type = $obj_type ===
'tals' ?
'etal' : $obj_type;
430 $a_tpl->
setVariable(
'IMG_ALT', $this->
lng->txt(
'cal_type_' . $obj_type));
435 $a_tpl->
setVariable(
'IMG_ALT', $this->
lng->txt(
'cal_type_' . $obj_type));
453 return parent::getHTML();
462 if (isset($data[
"shy_button"])) {
463 return $factory->item()->standard($data[
"shy_button"])->withDescription($data[
"date"]);
465 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
Interface Observer Contains several chained tasks and infos about them.
static _getAllReferences(int $id)
get all reference ids for object ID
RefineryFactory $refinery
const CAL_SELECTION_MEMBERSHIP
BlockGUI class calendar selection.
static string $block_type
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 getImagePath(string $image_name, string $module_path="", string $mode="output", bool $offline=false)
get image path (for images located in a template directory)
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.
addBlockCommand(string $a_href, string $a_text, string $a_onclick="", ?RoundTrip $modal=null)
renderItem(array $a_set, ilTemplate $a_tpl)
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