42 $this->
ctrl = $DIC->ctrl();
43 $this->
lng = $DIC->language();
44 $this->
lng->loadLanguageModule(
"news");
45 $this->tpl = $DIC[
"tpl"];
46 $this->setting = $DIC[
"ilSetting"];
47 $this->parent_gui = $a_parent_gui;
48 $this->
object = $this->parent_gui->
getObject();
55 $next_class = $this->
ctrl->getNextClass($this);
56 $cmd = $this->
ctrl->getCmd(
"show");
58 switch ($next_class) {
60 if (in_array($cmd, [
"show",
"save"])) {
66 public function show(): void
69 $this->tpl->setContent($form->getHTML());
77 if ($this->setting->get(
'block_activated_news')) {
80 if ($this->has_block_forced) {
81 $news->setChecked(
true);
82 $news->setDisabled(
true);
84 $news->setChecked($this->
object->getNewsBlockActivated());
86 $news->setInfo($this->
lng->txt(
'obj_tool_setting_news_info'));
88 $form->addItem($news);
92 if ($this->has_timeline) {
95 $cb->setInfo($this->
lng->txt(
"cont_news_timeline_info"));
96 $cb->setChecked($this->
object->getNewsTimeline());
100 $cb2 =
new ilCheckboxInputGUI($this->
lng->txt(
"cont_news_timeline_auto_entries"),
"news_timeline_auto_entries");
101 $cb2->setInfo($this->
lng->txt(
"cont_news_timeline_auto_entries_info"));
102 $cb2->setChecked($this->
object->getNewsTimelineAutoEntries());
103 $cb->addSubItem($cb2);
106 $cb2 =
new ilCheckboxInputGUI($this->
lng->txt(
"cont_news_timeline_landing_page"),
"news_timeline_landing_page");
107 $cb2->setInfo($this->
lng->txt(
"cont_news_timeline_landing_page_info"));
108 $cb2->setChecked($this->
object->getNewsTimelineLandingPage());
109 $cb->addSubItem($cb2);
119 $block_id = $this->
ctrl->getContextObjId();
124 "hide_news_per_date",
135 if ($hide_news_date !=
"") {
136 $hide_news_date = explode(
" ", $hide_news_date);
140 if ($this->has_hide_by_date) {
143 $this->
lng->txt(
"news_hide_news_per_date"),
146 $hnpd->setInfo($this->
lng->txt(
"news_hide_news_per_date_info"));
147 $hnpd->setChecked((
bool) $hide_news_per_date);
151 if (is_array($hide_news_date)) {
155 $dt_prop->setShowTime(
true);
157 $hnpd->addSubItem($dt_prop);
159 $form->addItem($hnpd);
163 if ($this->has_public_notification) {
167 $this->
lng->txt(
"news_notifications_public"),
168 "public_notifications" 170 $ch->setInfo($this->
lng->txt(
"news_notifications_public_info"));
171 $ch->setChecked((
bool) $public);
175 $form->setTitle($this->
lng->txt(
"cont_news_settings"));
176 $form->setFormAction($this->
ctrl->getFormAction($this));
177 $form->addCommandButton(
"save", $this->
lng->txt(
"save"));
185 if ($form->checkInput()) {
187 if (!$this->has_block_forced) {
190 if ($this->has_timeline) {
191 $this->
object->setNewsTimeline($form->getInput(
"news_timeline"));
192 $this->
object->setNewsTimelineAutoEntries($form->getInput(
"news_timeline_auto_entries"));
193 $this->
object->setNewsTimelineLandingPage($form->getInput(
"news_timeline_landing_page"));
195 if ($this->setting->get(
'block_activated_news')) {
197 $context_block_settings = [
198 "public_feed" => $form->getInput(
"notifications_public_feed") ??
"",
199 "default_visibility" => $form->getInput(
"default_visibility"),
200 "hide_news_per_date" => $form->getInput(
"hide_news_per_date"),
201 "hide_news_date" => $form->getInput(
"hide_news_date")
203 if ($this->has_public_notification) {
204 $context_block_settings[
"public_notifications"] =
205 $form->getInput(
'public_notifications');
218 $this->
object->update();
219 $this->tpl->setOnScreenMessage(
'success', $this->
lng->txt(
"msg_obj_modified"),
true);
220 $this->
ctrl->redirect($this,
"");
222 $form->setValuesByPost();
223 $this->tpl->setContent($form->getHTML());
230 $this->has_timeline =
false;
231 $this->has_cron_notifications =
false;
232 $this->has_hide_by_date =
false;
233 $this->has_block_forced =
false;
238 $this->has_timeline = $a_value;
248 $this->has_cron_notifications = $a_value;
258 $this->has_hide_by_date = $a_value;
268 $this->has_public_notification = $a_value;
279 $this->has_block_forced = $a_value;
setHideByDate(bool $a_value)
static _getAllReferences(int $id)
get all reference ids for object ID
setCronNotifications(bool $a_value)
setPublicNotification(bool $a_value)
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
__construct(ilObjectGUI $a_parent_gui)
bool $has_cron_notifications
static _lookup(string $a_type, string $a_setting, int $a_user=0, int $a_block_id=0)
Lookup setting from database.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Class ilObjectGUI Basic methods of all Output classes.
bool $has_public_notification
setTimeline(bool $a_value)
static importFromForm(int $a_ref_id, ?ilPropertyFormGUI $a_form=null)
static writeSettings(array $a_values)
static addToSettingsForm(ilFormPropertyGUI $a_input)
Add inputs to the container news settings form to configure also the contextBlock options...
static string $block_type
static _lookupType(int $id, bool $reference=false)
setNewsBlockForced(bool $a_value)
ilGlobalTemplateInterface $tpl
static addToSettingsForm(int $a_ref_id, ?ilPropertyFormGUI $a_form=null, ?ilFormPropertyGUI $a_input=null)
Add notification settings to form.