35 public function __construct(?
object $a_parent_obj,
string $a_parent_cmd)
39 $this->
user = $DIC->user();
40 $this->
lng = $DIC->language();
41 $this->
lng->loadLanguageModule(
'dateplaner');
42 $this->
ctrl = $DIC->ctrl();
44 $this->
setId(
'calinbox');
48 $this->
addColumn($this->
lng->txt(
'date'),
'begin',
"30%");
49 $this->
addColumn($this->
lng->txt(
'title'),
'title',
"40%");
50 #$this->addColumn($this->lng->txt('cal_duration'),'duration',"15%"); 51 $this->
addColumn($this->
lng->txt(
'cal_recurrences'),
'frequence',
"15%");
52 $this->
addColumn($this->
lng->txt(
'last_update'),
'last_update',
"15%");
55 $this->
setRowTemplate(
"tpl.show_changed_appointment_row.html",
"Services/Calendar");
66 protected function fillRow(array $a_set): void
73 if ($a_set[
"milestone"]) {
74 $this->tpl->setCurrentBlock(
"img_ms");
76 $this->tpl->setVariable(
"ALT_MS", $this->
lng->txt(
"cal_milestone"));
77 $this->tpl->parseCurrentBlock();
80 $this->tpl->setVariable(
'VAL_DESCRIPTION', $a_set[
'description']);
82 $this->tpl->setVariable(
'VAL_TITLE_LINK', $a_set[
'title']);
83 $this->
ctrl->setParameterByClass(
'ilcalendarappointmentgui',
'app_id', $a_set[
'id']);
84 $this->tpl->setVariable(
'VAL_LINK', $this->
ctrl->getLinkTargetByClass(
'ilcalendarappointmentgui',
'edit'));
86 switch ($a_set[
'frequence']) {
88 $this->tpl->setVariable(
'VAL_FREQUENCE', $this->
lng->txt(
'cal_daily'));
92 $this->tpl->setVariable(
'VAL_FREQUENCE', $this->
lng->txt(
'cal_weekly'));
96 $this->tpl->setVariable(
'VAL_FREQUENCE', $this->
lng->txt(
'cal_monthly'));
100 $this->tpl->setVariable(
'VAL_FREQUENCE', $this->
lng->txt(
'cal_yearly'));
104 #$this->tpl->setVariable('VAL_FREQUENCE',$this->lng->txt('cal_no_recurrence')); 107 if ($a_set[
'fullday']) {
118 $this->tpl->setVariable(
'VAL_BEGIN', $date);
126 foreach ($a_apps as $event) {
127 $entry = $event[
'event'];
131 $tmp_arr[
'id'] = $entry->getEntryId();
132 $tmp_arr[
'milestone'] = $entry->isMilestone();
133 $tmp_arr[
'title'] = $entry->getPresentationTitle();
134 $tmp_arr[
'description'] = $entry->getDescription();
135 $tmp_arr[
'fullday'] = $entry->isFullday();
137 $tmp_arr[
'begin'] = $event[
'dstart'];
138 $tmp_arr[
'end'] = $event[
'dend'];
140 $tmp_arr[
'duration'] = $tmp_arr[
'end'] - $tmp_arr[
'begin'];
141 if ($tmp_arr[
'fullday']) {
142 $tmp_arr[
'duration'] += (60 * 60 * 24);
144 if (!$tmp_arr[
'fullday'] and $tmp_arr[
'end'] == $tmp_arr[
'begin']) {
145 $tmp_arr[
'duration'] =
'';
148 $tmp_arr[
'last_update'] = $entry->getLastUpdate()->get(
IL_CAL_UNIX);
149 $tmp_arr[
'frequence'] = $rec->getFrequenceType();
151 $appointments[] = $tmp_arr;
155 $appointments = array_slice($appointments, 0, $this->
getLimit());
enable(string $a_module_name)
setFormAction(string $a_form_action, bool $a_multipart=false)
static _getFirstRecurrence($a_cal_id)
static getImagePath(string $img, string $module_path="", string $mode="output", bool $offline=false)
get image path (for images located in a template directory)
static formatDate(ilDateTime $date, bool $a_skip_day=false, bool $a_include_wd=false, bool $include_seconds=false)
setFormName(string $a_name="")
setShowRowsSelector(bool $a_value)
Toggle rows-per-page selector.
__construct(?object $a_parent_obj, string $a_parent_cmd)
setDefaultOrderField(string $a_defaultorderfield)
setRowTemplate(string $a_template, string $a_template_dir="")
Set row template.
setDefaultOrderDirection(string $a_defaultorderdirection)
setAppointments(array $a_apps)
static formatPeriod(ilDateTime $start, ilDateTime $end, bool $a_skip_starting_day=false)
Format a period of two dates Shows: 14.
__construct(Container $dic, ilPlugin $plugin)
addColumn(string $a_text, string $a_sort_field="", string $a_width="", bool $a_is_checkbox_action_column=false, string $a_class="", string $a_tooltip="", bool $a_tooltip_with_html=false)