42 $lng = $DIC->language();
43 $ilAccess = $DIC->access();
44 $this->obj_definition = $DIC[
"objDefinition"];
52 $this->dynamic =
false;
60 $cres = unserialize($this->acache->getEntry($this->user->getId() .
":0"), [
"allowed_classes" =>
false]);
61 $this->cache_hit =
false;
62 if (is_array($cres) && $this->acache->getLastAccessStatus() ===
"hit") {
64 $this->cache_hit =
true;
67 if (!$this->cache_hit && $this->
getDynamic()) {
68 $this->dynamic =
true;
74 if (empty(self::$st_data)) {
77 $data = self::$st_data;
81 $this->
setRowTemplate(
"tpl.block_row_news_for_context.html",
"Services/News");
88 $ilAccess->setResults((array) $this->acc_results);
107 $this->acache->storeEntry(
117 return self::$block_type;
124 $cmd = $DIC->ctrl()->getCmd();
130 case "changeFeedSettings":
143 $cmd = $ilCtrl->getCmd(
"getHTML");
145 switch ($next_class) {
147 return $this->$cmd();
153 if ($this->dynamic) {
155 } elseif (count($this->
getData()) > 0) {
156 parent::fillDataSection();
173 $enable_internal_rss = $news_set->get(
"enable_rss_for_internal");
174 $allow_shorter_periods = $news_set->get(
"allow_shorter_periods");
175 $allow_longer_periods = $news_set->get(
"allow_longer_periods");
176 $enable_private_feed = $news_set->get(
"enable_private_feed");
178 if ($enable_internal_rss) {
181 $ilCtrl->getLinkTarget($this,
"showFeedUrl"),
186 if ($allow_shorter_periods || $allow_longer_periods || $enable_private_feed) {
188 $ilCtrl->getLinkTarget($this,
"editSettings"),
194 if (
$ilUser->getPref(
"il_feed_js") ===
"n") {
210 if ($news_set->get(
"enable_private_feed")) {
211 $tpl =
new ilTemplate(
"tpl.show_priv_feed_url.html",
true,
true,
"Services/News");
221 str_replace(
"://",
"://" .
$ilUser->getLogin() .
":-password-@", ILIAS_HTTP_PATH) .
"/privfeed.php?client_id=" . rawurlencode(
CLIENT_ID) .
"&user_id=" .
$ilUser->getId() .
225 "VAL_PRIV_FEED_URL_TXT",
226 str_replace(
"://",
"://" .
$ilUser->getLogin() .
":-password-@", ILIAS_HTTP_PATH) .
"/privfeed.php?client_id=" . rawurlencode(
CLIENT_ID) .
"&<br />user_id=" .
$ilUser->getId() .
231 $tpl->
setVariable(
"EDIT_SETTINGS_URL", $ilCtrl->getLinkTarget($this,
"editSettings"));
235 $tpl =
new ilTemplate(
"tpl.show_feed_url.html",
true,
true,
"Services/News");
242 ILIAS_HTTP_PATH .
"/feed.php?client_id=" . rawurlencode(
CLIENT_ID) .
"&user_id=" .
$ilUser->getId() .
247 ILIAS_HTTP_PATH .
"/feed.php?client_id=" . rawurlencode(
CLIENT_ID) .
"&<br />user_id=" .
$ilUser->getId() .
252 $panel = $this->
ui->factory()->panel()->standard(
253 $lng->
txt(
"news_internal_news"),
254 $this->
ui->factory()->legacy(
$tpl->
get())
257 return $this->
ui->renderer()->render(
$panel);
268 $allow_shorter_periods = $news_set->get(
"allow_shorter_periods");
269 $allow_longer_periods = $news_set->get(
"allow_longer_periods");
270 $enable_private_feed = $news_set->get(
"enable_private_feed");
272 if (!$a_private_form && ($allow_shorter_periods || $allow_longer_periods)) {
274 $form->setFormAction($ilCtrl->getFormAction($this));
275 $form->setTitle(
$lng->
txt(
"news_settings"));
280 $form->setTableWidth(
"100%");
287 14 =>
"2 " .
$lng->
txt(
"weeks"),
288 30 =>
"1 " .
$lng->
txt(
"month"),
289 60 =>
"2 " .
$lng->
txt(
"months"),
290 120 =>
"4 " .
$lng->
txt(
"months"),
291 180 =>
"6 " .
$lng->
txt(
"months"),
292 366 =>
"1 " .
$lng->
txt(
"year")
296 foreach ($per_opts as $k => $opt) {
297 if (!$allow_shorter_periods && ($k < $default_per)) {
300 if (!$allow_longer_periods && ($k > $default_per)) {
304 foreach ($unset as $k) {
305 unset($per_opts[$k]);
312 $per_sel->setOptions($per_opts);
313 $per_sel->setValue((
string) $per);
314 $form->addItem($per_sel);
316 $form->addCommandButton(
"saveSettings",
$lng->
txt(
"save"));
317 $form->addCommandButton(
"cancelSettings",
$lng->
txt(
"cancel"));
319 $returnForm = $form->getHTML();
322 if ($enable_private_feed) {
323 if (!$a_private_form) {
326 $returnForm .= ($returnForm ===
"")
327 ? $a_private_form->getHTML()
328 :
"<br>" . $a_private_form->getHTML();
341 $feed_form->setFormAction($ilCtrl->getFormAction($this));
342 $feed_form->setTitle(
$lng->
txt(
"priv_feed_settings"));
344 $feed_form->setTableWidth(
"100%");
348 $feed_form->addItem($enable_private_feed);
353 $enable_private_feed->addSubItem($passwd);
355 $feed_form->addCommandButton(
"changeFeedSettings",
$lng->
txt(
"save"));
356 $feed_form->addCommandButton(
"cancelSettings",
$lng->
txt(
"cancel"));
371 $this->std_request->getDashboardPeriod(),
377 $cache->deleteEntry(
$ilUser->getId() .
":0");
379 $ilCtrl->returnToParent($this);
390 if ($form->checkInput()) {
392 if (!$form->getInput(
"enable_private_feed")) {
394 $this->main_tpl->setOnScreenMessage(
'success',
$lng->
txt(
"priv_feed_disabled"),
true);
396 $ilCtrl->redirect($this,
"showFeedUrl");
398 $passwd = $form->getInput(
"desired_password");
400 $form->getItemByPostVar(
"desired_password")->setAlert(
$lng->
txt(
"passwd_equals_ilpasswd"));
401 $this->main_tpl->setOnScreenMessage(
'failure',
$lng->
txt(
"form_input_not_valid"));
404 $this->main_tpl->setOnScreenMessage(
'success',
$lng->
txt(
"saved_successfully"),
true);
405 $ilCtrl->redirect($this,
"showFeedUrl");
410 $form->setValuesByPost();
initPrivateSettingsForm()
static string $block_type
static _setFeedPass(int $a_user_id, string $a_password)
Set news feed password for user.
static _lookupUserPDPeriod(int $a_user_id)
static _getNewsItemsOfUser(int $a_user_id, bool $a_only_public=false, bool $a_prevent_aggregation=false, int $a_per=0, array &$a_cnt=[])
Get all news items for a user.
StandardGUIRequest $std_request
get(string $part=ilGlobalTemplateInterface::DEFAULT_BLOCK)
txt(string $a_topic, string $a_default_lang_fallback_mod="")
gets the text for a given topic if the topic is not in the list, the topic itself with "-" will be re...
handleView()
Handles show/hide notification view and removes notifications if hidden.
if(isset($_FILES['img_file']) &&is_array($_FILES['img_file'])) $panel
setDataSection(string $a_content)
Call this from overwritten fillDataSection(), if standard row based data is not used.
setEnableNumInfo(bool $a_enablenuminfo)
editSettings()
Show settings screen.
loadLanguageModule(string $a_module)
Load language module.
BlockGUI class for block NewsForContext.
editSettings(ilPropertyFormGUI $a_private_form=null)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
setRowTemplate(string $a_rowtemplatename, string $a_rowtemplatedir="")
Set Row Template Name.
getNextClass($a_gui_class=null)
setVariable($variable, $value='')
Sets a variable value.
static _getFeedPass(int $a_user_id)
Lookup news feed password for user.
if(!defined('PATH_SEPARATOR')) $GLOBALS['_PEAR_default_error_mode']
static _write(string $a_type, string $a_setting, string $a_value, int $a_user=0, int $a_block_id=0)
Write setting to database.
static getPasswordRequirementsInfo()
infotext for ilPasswordInputGUI setInfo()
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static _lookupFeedHash(int $a_user_id, bool $a_create=false)
Lookup news feed hash for user.
__construct(Container $dic, ilPlugin $plugin)
setTitle(string $a_title)
static prepareNewsDataFromCache(array $a_cres)
Prepare news data from cache.
BlockGUI class for block NewsForContext.
addBlockCommand(string $a_href, string $a_text, string $a_onclick="")
static getInstance()
Singleton method to reduce footprint (included files, created instances)
setPresentation(int $type)
static _lookupDefaultPDPeriod()