35 protected \ILIAS\News\InternalGUIService
$gui;
58 $this->
ctrl = $DIC->ctrl();
59 $this->
lng = $DIC->language();
60 $this->
user = $DIC->user();
61 $this->
help = $DIC[
"ilHelp"];
62 $this->
access = $DIC->access();
64 $this->
tabs = $DIC->tabs();
65 $this->obj_definition = $DIC[
"objDefinition"];
66 $this->std_request = $DIC->news()
71 $this->news_access =
new NewsAccess($this->std_request->getRefId());
73 $ilCtrl = $DIC->ctrl();
74 $lng = $DIC->language();
75 $ilUser = $DIC->user();
76 $ilHelp = $DIC[
"ilHelp"];
81 $ilHelp->addHelpSection(
"news_block");
83 $this->
setBlockId((
string) $ilCtrl->getContextObjId());
87 $this->dynamic =
false;
90 (
string) $this->acache->getEntry($ilUser->getId() .
":" . $this->std_request->getRefId()),
91 [
"allowed_classes" =>
false]
93 $this->cache_hit =
false;
95 if ($this->acache->getLastAccessStatus() ===
"hit" && is_array($cres)) {
97 $this->cache_hit =
true;
99 if (!empty(self::$st_data)) {
100 $data = self::$st_data;
103 self::$st_data =
$data;
107 $this->
setRowTemplate(
"tpl.block_row_news_for_context.html",
"components/ILIAS/News");
109 $this->allow_moving =
false;
113 $this->gui = $DIC->news()->internal()->gui();
130 $news_item->setContextObjId($ilCtrl->getContextObjId());
131 $news_item->setContextObjType($ilCtrl->getContextObjType());
135 $prevent_aggregation =
true;
136 if ($ilCtrl->getContextObjType() !==
"frm") {
137 $forum_grouping =
true;
139 $forum_grouping =
false;
143 $news_data = $news_item->getNewsForRefId(
144 $this->std_request->getRefId(),
148 $prevent_aggregation,
152 $this->acache->storeEntry(
153 $ilUser->getId() .
":" . $this->std_request->getRefId(),
154 serialize($news_data)
164 return self::$block_type;
176 $ilCtrl = $DIC->ctrl();
178 if (strtolower($ilCtrl->getCmdClass()) ===
"ilnewsitemgui") {
182 switch ($ilCtrl->getCmd()) {
201 $cmd = $ilCtrl->getCmd(
"getHTML");
203 switch ($next_class) {
204 case "ilnewsitemgui":
207 $html = $ilCtrl->forwardCommand($news_item_gui);
211 return $this->$cmd();
224 $enable_internal_rss = $news_set->get(
"enable_rss_for_internal");
230 (
int) $this->block_id
241 (
int) $this->block_id
243 if ($public_feed && $enable_internal_rss) {
246 ILIAS_HTTP_PATH .
"/feed.php?client_id=" . rawurlencode(
CLIENT_ID) .
"&" .
247 "ref_id=" . $this->std_request->getRefId(),
253 if ($this->news_access->canAdd()) {
255 $ilCtrl->getLinkTargetByClass(
"ilnewsitemgui",
"editNews"),
259 $ilCtrl->setParameter($this,
"add_mode",
"block");
261 $ilCtrl->getLinkTargetByClass(
"ilnewsitemgui",
"createNewsItem"),
264 $ilCtrl->setParameter($this,
"add_mode",
"");
268 $ref_id = $this->std_request->getRefId();
273 $parent_gui =
"ilobj" . $obj_class .
"gui";
275 $ilCtrl->setParameterByClass(
"ilcontainernewssettingsgui",
"ref_id",
$ref_id);
277 if (in_array($obj_class, self::OBJECTS_WITH_NEWS_SUBTAB)) {
279 $ilCtrl->getLinkTargetByClass([
"ilrepositorygui", $parent_gui,
"ilcontainernewssettingsgui"],
"show"),
289 $ilCtrl->getLinkTarget($this,
"editSettings"),
302 (
int) $this->block_id
311 !$news_set->get(
"enable_rss_for_internal") ||
316 (
int) $this->block_id
324 return parent::getHTML() . $en;
338 (
int) $this->block_id
342 $got_notices = $got_messages =
false;
343 foreach ($this->data as $row) {
344 if ((
int) ($row[
"priority"] ?? 0) === 0) {
347 if ((
int) ($row[
"priority"] ?? 0) === 1) {
348 $got_messages =
true;
351 $this->show_view_selection =
false;
353 if ($got_notices && $got_messages) {
354 $this->show_view_selection =
true;
355 } elseif ($got_notices) {
368 $info[
"ref_id"] = $news[
"ref_id"] ?? 0;
369 $info[
"creation_date"] =
373 if (($news[
"ref_id"] ?? 0) > 0) {
374 if (isset($news[
"agg_ref_id"]) && $news[
"agg_ref_id"] > 0) {
377 $context_ref = $news[
"agg_ref_id"];
379 $obj_id = $news[
"context_obj_id"];
380 $type = $news[
"context_obj_type"];
381 $context_ref = $news[
"ref_id"];
384 $lang_type = in_array($type, [
"sahs",
"lm",
"htlm"])
388 $type_txt = ($obj_definition->
isPlugin($news[
"context_obj_type"]))
393 $info[
"type_txt"] = $type_txt;
396 $info[
"user_read"] = $news[
"user_read"];
398 $ilCtrl->setParameter($this,
"news_context", $context_ref);
400 $ilCtrl->setParameter($this,
"news_context",
"");
404 $info[
"news_title"] =
407 $news[
"context_obj_type"] ??
"",
408 $news[
"title"] ??
"",
409 $news[
"content_is_lang_var"] ??
false,
410 $news[
"agg_ref_id"] ?? 0,
411 $news[
"aggregation"] ?? []
416 $ilCtrl->setParameter($this,
"news_id", $news[
"id"]);
418 $ilCtrl->getLinkTarget($this,
"showNews");
419 $ilCtrl->clearParameters($this);
428 return '<div class="small">' . (count($this->
getData())) .
" " .
$lng->
txt(
"news_news_items") .
"</div>";
439 if (empty(self::$st_data)) {
444 $enable_internal_rss = $news_set->get(
"enable_rss_for_internal");
447 $tpl =
new ilTemplate(
"tpl.show_news.html",
true,
true,
"components/ILIAS/News");
452 $c = current($this->data);
455 if ($this->std_request->getNewsId() > 0) {
456 $news =
new ilNewsItem($this->std_request->getNewsId());
457 $news_context = $this->std_request->getNewsContext();
458 while (
$c[
"id"] > 0 && (
int)
$c[
"id"] !== $this->std_request->getNewsId()) {
464 $news_page = $this->std_request->getNewsPage();
466 while ($curr_cnt - 1 < $news_page) {
469 if ($curr_cnt - 1 === $news_page) {
474 if ((
$c[
"ref_id"] ?? 0) > 0) {
475 $news_context = (
int)
$c[
"ref_id"];
480 if (!is_array(
$c) && is_object($news) && $news->getId() > 0
482 throw new ilException(
"News ID does not match object context.");
488 if (isset(
$c[
"aggregation"]) && is_array(
$c[
"aggregation"])) {
490 "ref_id" =>
$c[
"agg_ref_id"],
491 "agg_ref_id" =>
$c[
"agg_ref_id"],
492 "aggregation" =>
$c[
"aggregation"],
494 "content_type" =>
"text",
498 "content_long" =>
"",
499 "update_date" => $news->getUpdateDate(),
500 "creation_date" =>
"",
501 "content_is_lang_var" =>
false,
502 "loc_context" => $news_context,
503 "context_obj_type" => $news->getContextObjType(),
507 foreach (
$c[
"aggregation"] as $c_item) {
509 $c_item[
"loc_context"] = $c_item[
"ref_id"];
510 $c_item[
"loc_stop"] = $news_context;
511 $news_list[] = $c_item;
515 "id" => $news->getId(),
516 "ref_id" => $news_context,
517 "user_id" => $news->getUserId(),
518 "content_type" => $news->getContentType(),
519 "mob_id" => $news->getMobId(),
520 "visibility" => $news->getVisibility(),
521 "priority" => $news->getPriority(),
522 "content" => $news->getContent(),
523 "content_long" => $news->getContentLong(),
524 "update_date" => $news->getUpdateDate(),
525 "creation_date" => $news->getCreationDate(),
526 "context_sub_obj_type" => $news->getContextSubObjType(),
527 "context_obj_type" => $news->getContextObjType(),
528 "context_sub_obj_id" => $news->getContextSubObjId(),
529 "content_is_lang_var" => $news->getContentIsLangVar(),
530 "content_text_is_lang_var" => $news->getContentTextIsLangVar(),
531 "loc_context" => $news_context,
532 "title" => $news->getTitle()
538 $cache_deleted =
false;
539 foreach ($news_list as $item) {
540 $row_css = ($row_css !==
"tblrow1")
544 if ($item[
"ref_id"] > 0 && !$ilAccess->checkAccess(
"read",
"", $item[
"ref_id"])) {
551 if (!$cache_deleted) {
552 $this->acache->deleteEntry($ilUser->getId() .
":" . $this->std_request->getRefId());
553 $cache_deleted =
true;
559 if ($item[
"user_id"] > 0 &&
569 $displayname =
"<" . strtolower(
$lng->
txt(
"deleted")) .
">";
579 $ui_renderer = $this->
ui->renderer();
580 $ui_factory = $this->
ui->factory();
583 $media_path = $this->
getMediaPath((
int) $item[
"mob_id"]);
585 if (in_array($mime, [
"image/jpeg",
"image/svg+xml",
"image/gif",
"image/png"])) {
586 $title = basename($media_path);
587 $html = $ui_renderer->render($ui_factory->image()->responsive($media_path,
$title));
588 } elseif (in_array($mime, [
"video/mp4",
"video/youtube",
"video/vimeo"])) {
589 $video = $ui_factory->player()->video($media_path);
590 $html = $ui_renderer->render($video);
591 } elseif (in_array($mime, [
"audio/mpeg"])) {
592 $audio = $ui_factory->player()->audio($media_path);
593 $html = $ui_renderer->render($audio);
594 } elseif (in_array($mime, [
"application/pdf"])) {
595 $this->
ctrl->setParameter($this,
"news_id", $item[
"id"]);
596 $link = $ui_factory->link()->standard(
597 basename($media_path),
598 $this->
ctrl->getLinkTarget($this,
"downloadMob")
600 $html = $ui_renderer->render($link);
601 $this->
ctrl->setParameter($this,
"news_id",
null);
617 if ($enable_internal_rss && $item[
"visibility"] !=
"") {
622 ((
int) $item[
"priority"] === 0 &&
625 "public_notifications",
638 if (trim($item[
"content"]) !=
"") {
640 $renderer->setNewsItem($it, $item[
"ref_id"]);
645 if ($item[
"update_date"] != $item[
"creation_date"]) {
656 if ($item[
"creation_date"] !=
"") {
668 if ($news_context > 0) {
675 if ($obj_type ===
"file") {
676 $ilCtrl->setParameterByClass(
"ilrepositorygui",
"ref_id", $item[
"ref_id"]);
677 $url = $ilCtrl->getLinkTargetByClass(
"ilrepositorygui",
"sendfile");
678 $ilCtrl->setParameterByClass(
"ilrepositorygui",
"ref_id", $this->std_request->getRefId());
680 $button = $this->gui->button(
681 $this->
lng->txt(
"download"),
692 if ($obj_type ===
"frm" && ($item[
"context_sub_obj_type"] ??
"") ===
"pos" 693 && $item[
"context_sub_obj_id"] > 0) {
694 $pos = $item[
"context_sub_obj_id"];
697 $add =
"_" . $thread .
"_" . $pos;
702 if ($obj_type ===
"wiki" && $item[
"context_sub_obj_type"] ===
"wpg" 703 && $item[
"context_sub_obj_id"] > 0) {
705 if ($wptitle !=
"") {
710 $url_target =
"./goto.php?client_id=" . rawurlencode(
CLIENT_ID) .
"&target=" .
711 $obj_type .
"_" . $item[
"ref_id"] . $add;
715 ($item[
"context_sub_obj_type"] ??
"") ===
"pg" &&
716 $item[
"context_sub_obj_id"] > 0 &&
717 in_array($obj_type, [
"lm"],
true)) {
718 $url_target =
"./goto.php?client_id=" . rawurlencode(
CLIENT_ID) .
"&target=" .
719 "pg_" . $item[
"context_sub_obj_id"] .
"_" . $item[
"ref_id"];
723 if ($obj_type ===
"blog" && ($item[
"context_sub_obj_type"] ??
"") ===
"blp" 724 && $item[
"context_sub_obj_id"] > 0) {
725 $url_target =
"./goto.php?client_id=" . rawurlencode(
CLIENT_ID) .
"&target=" .
726 "blog_" . $item[
"ref_id"] .
"_" . $item[
"context_sub_obj_id"];
729 $context_opened =
false;
730 $loc_stop = $item[
"loc_stop"] ??
"";
731 if ($item[
"loc_context"] !=
null &&
732 $item[
"loc_context"] != $loc_stop
735 $context_opened =
true;
737 $cont_loc->addContextItems($item[
"loc_context"],
true, (
int) $loc_stop);
742 $no_context_title = $item[
"no_context_title"] ??
false;
743 if ($no_context_title !==
true) {
744 if (!$context_opened) {
751 if ($context_opened) {
762 $item[
"context_obj_type"] ??
"",
763 $item[
"title"] ??
"",
764 $item[
"content_is_lang_var"] ??
false,
765 $item[
"agg_ref_id"] ?? 0,
766 $item[
"aggregation"] ?? []
782 $panel = $this->
ui->factory()->panel()->standard(
$title, $this->
ui->factory()->legacy()->content($content));
784 $parameter_name =
'news_page';
786 $pagination = $this->
ui->factory()->viewControl()->pagination()
787 ->withTargetURL($ilCtrl->getLinkTarget($this,
"showNews"),
"news_page")
788 ->withTotalEntries(count($this->
getData()))
790 ->withMaxPaginationButtons(10)
791 ->withCurrentPage($curr_cnt - 1);
792 $panel = $panel->withViewControls([$pagination]);
794 return $this->
ui->renderer()->render($panel);
802 $media_path = $mob->getStandardSrc();
811 if (is_int(strpos($a_str,
">")) && is_int(strpos($a_str,
"<"))) {
828 (
int) $this->block_id
836 if ($ilCtrl->isAsynch()) {
840 $ilCtrl->returnToParent($this);
851 "hide_notifications",
853 (
int) $this->block_id
861 if ($ilCtrl->isAsynch()) {
865 $ilCtrl->returnToParent($this);
874 return $this->settings_form->getHTML();
889 $enable_internal_rss = $news_set->get(
"enable_rss_for_internal");
893 "public_notifications",
895 (
int) $this->block_id
901 (
int) $this->block_id
907 (
int) $this->block_id
911 "hide_news_per_date",
913 (
int) $this->block_id
919 (
int) $this->block_id
922 if (is_string($hide_news_date) && $hide_news_date !==
'') {
923 $hide_news_date = explode(
" ", $hide_news_date);
927 $this->settings_form->setTitle(
$lng->
txt(
"news_settings"));
930 if ($this->
getProperty(
"hide_news_block_option")) {
932 $lng->
txt(
"news_hide_news_block"),
935 $ch->setInfo(
$lng->
txt(
"news_hide_news_block_info"));
936 $ch->setChecked((
bool) $hide_block);
937 $this->settings_form->addItem($ch);
940 $lng->
txt(
"news_hide_news_per_date"),
943 $hnpd->setInfo(
$lng->
txt(
"news_hide_news_per_date_info"));
944 $hnpd->setChecked((
bool) $hide_news_per_date);
947 $lng->
txt(
"news_hide_news_date"),
951 if (is_array($hide_news_date) && count($hide_news_date) === 2) {
954 $dt_prop->setShowTime(
true);
955 $hnpd->addSubItem($dt_prop);
957 $this->settings_form->addItem($hnpd);
961 if ($enable_internal_rss && $this->
getProperty(
"default_visibility_option")) {
964 "default_visibility",
966 (
int) $this->block_id
968 if ($default_visibility ==
"") {
969 $default_visibility =
976 $radio_group->addOption($radio_option);
978 $radio_group->addOption($radio_option);
979 $radio_group->
setInfo(
$lng->
txt(
"news_news_item_visibility_info"));
980 $radio_group->setRequired(
false);
981 $radio_group->setValue($default_visibility);
982 $this->settings_form->addItem($radio_group);
986 if ($enable_internal_rss && $this->
getProperty(
"public_notifications_option")) {
988 $lng->
txt(
"news_notifications_public"),
989 "notifications_public" 991 $ch->setInfo(
$lng->
txt(
"news_notifications_public_info"));
992 $ch->setChecked((
bool) $public);
993 $this->settings_form->addItem($ch);
997 if ($enable_internal_rss) {
1000 "notifications_public_feed" 1002 $ch->setInfo(
$lng->
txt(
"news_public_feed_info"));
1003 $ch->setChecked((
bool) $public_feed);
1004 $this->settings_form->addItem($ch);
1007 $this->settings_form->addCommandButton(
"saveSettings",
$lng->
txt(
"save"));
1008 $this->settings_form->addCommandButton(
"cancelSettings",
$lng->
txt(
"cancel"));
1009 $this->settings_form->setFormAction($ilCtrl->getFormAction($this));
1019 $std_request = $DIC->news()
1022 ->standardRequest();
1024 $lng = $DIC->language();
1025 $block_id = $DIC->ctrl()->getContextObjId();
1028 $enable_internal_rss = $news_set->get(
"enable_rss_for_internal");
1037 if ($default_visibility ==
"") {
1038 $default_visibility =
1043 $radio_group->addOption($radio_option);
1045 $radio_group->addOption($radio_option);
1046 $radio_group->
setInfo(
$lng->
txt(
"news_news_item_visibility_info"));
1047 $radio_group->setRequired(
false);
1048 $radio_group->setValue($default_visibility);
1049 $a_input->addSubItem($radio_group);
1052 if ($enable_internal_rss) {
1054 $lng->
txt(
"news_public_feed"),
1055 "notifications_public_feed" 1057 $radio_rss->setInfo(
$lng->
txt(
"news_public_feed_info"));
1058 $radio_rss->setChecked((
bool) $public_feed);
1059 $a_input->addSubItem($radio_rss);
1067 $block_id = $DIC->ctrl()->getContextObjId();
1068 foreach ($a_values as $key => $value) {
1087 if ($form->checkInput()) {
1089 $enable_internal_rss = $news_set->get(
"enable_rss_for_internal");
1091 if ($enable_internal_rss) {
1094 "public_notifications",
1095 $form->getInput(
"notifications_public"),
1097 (
int) $this->block_id
1102 $form->getInput(
"notifications_public_feed"),
1104 (
int) $this->block_id
1108 "default_visibility",
1109 $form->getInput(
"default_visibility"),
1111 (
int) $this->block_id
1115 if ($this->
getProperty(
"hide_news_block_option")) {
1119 $form->getInput(
"hide_news_block"),
1121 (
int) $this->block_id
1125 "hide_news_per_date",
1126 $form->getInput(
"hide_news_per_date"),
1128 (
int) $this->block_id
1132 $hd = $this->settings_form->getItemByPostVar(
"hide_news_date");
1133 $hide_date = $hd->getDate();
1134 if ($hide_date instanceof
ilDateTime && $form->getInput(
"hide_news_per_date")) {
1140 (
int) $this->block_id
1148 (
int) $this->block_id
1154 $cache->deleteEntry($ilUser->getId() .
":" . $this->std_request->getRefId());
1156 $ilCtrl->returnToParent($this);
1158 $this->settings_form->setValuesByPost();
1159 return $this->settings_form->getHTML();
1171 $tpl =
new ilTemplate(
"tpl.show_feed_url.html",
true,
true,
"components/ILIAS/News");
1180 ILIAS_HTTP_PATH .
"/feed.php?client_id=" . rawurlencode(
CLIENT_ID) .
"&user_id=" . $ilUser->getId() .
1181 "&obj_id=" . $this->block_id .
1186 ILIAS_HTTP_PATH .
"/feed.php?client_id=" . rawurlencode(
CLIENT_ID) .
"&<br />user_id=" . $ilUser->getId() .
1187 "&obj_id=" . $this->block_id .
1191 $panel = $this->
ui->factory()->panel()->standard(
1192 $lng->
txt(
"news_internal_news"),
1193 $this->
ui->factory()->legacy()->content(
$tpl->
get())
1196 return $this->
ui->renderer()->render($panel);
1204 $ilCtrl->setParameterByClass(
1210 $rel_tpl =
new ilTemplate(
"tpl.dynamic_reload.html",
true,
true,
"components/ILIAS/News");
1211 $rel_tpl->setVariable(
"TXT_LOADING",
$lng->
txt(
"news_loading_news"));
1213 $rel_tpl->setVariable(
1215 $ilCtrl->getLinkTargetByClass(
"ilcolumngui",
"updateBlock",
"",
true)
1219 $rel_tpl->setVariable(
"TXT_NEWS_CLICK_HERE",
$lng->
txt(
"news_no_js_click_here"));
1220 $rel_tpl->setVariable(
1222 $ilCtrl->getLinkTargetByClass(strtolower(get_class($this)),
"disableJS")
1225 return $rel_tpl->get();
1238 $rel_tpl =
new ilTemplate(
"tpl.js_enabler.html",
true,
true,
"components/ILIAS/News");
1240 $rel_tpl->setVariable(
1242 $ilCtrl->getLinkTargetByClass(strtolower(get_class($this)),
"enableJS",
"",
true,
false)
1245 return $rel_tpl->get();
1255 $ilUser->writePref(
"il_feed_js",
"n");
1256 $ilCtrl->returnToParent($this);
1263 $ilUser->writePref(
"il_feed_js",
"y");
1269 if ((
int) ($data[
"id"] ?? 0) === 0) {
1275 $this->
lng->txt(
"date") => $info[
"creation_date"] ??
"" 1279 $item =
$factory->item()->standard(
$factory->link()->standard($info[
"news_title"] ??
"", $info[
"url"] ??
""))
1280 ->withProperties($props);
1281 if (($info[
"ref_id"] ?? 0) > 0) {
1282 $item = $item->withDescription($info[
"type_txt"] .
": " . $info[
"obj_title"]);
1289 return $this->
lng->txt(
"news_no_news_items");
1294 $news_id = $this->std_request->getNewsId();
1296 $news->deliverMobFile(
"Standard",
true);
parseCurrentBlock(string $part=ilGlobalTemplateInterface::DEFAULT_BLOCK)
This class represents an option in a radio group.
static _getDefaultVisibilityForRefId(int $a_ref_id)
Get default visibility for reference id.
getListItemForData(array $data)
static _getIcon(int $obj_id=0, string $size="big", string $type="", bool $offline=false)
Get icon for repository item.
ilObjectDefinition $obj_def
get(string $part=ilGlobalTemplateInterface::DEFAULT_BLOCK)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
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.
setBlockId(string $a_block_id="0")
send(string $output)
Send.
Interface Observer Contains several chained tasks and infos about them.
setEnableNumInfo(bool $a_enablenuminfo)
static lookupTitle(int $a_page_id, string $lang="-")
User Interface for NewsItem entities.
ILIAS News InternalGUIService $gui
setParameterByClass(string $a_class, string $a_parameter, $a_value)
editSettings()
Show settings screen.
loadLanguageModule(string $a_module)
Load language module.
makeClickable(string $a_str)
BlockGUI class for block NewsForContext.
bool $show_view_selection
getInfoForData(array $news)
StandardGUIRequest $std_request
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
ilPropertyFormGUI $settings_form
static _lookupObjId(int $ref_id)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static getRenderer(string $a_context_obj_type)
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
setRowTemplate(string $a_rowtemplatename, string $a_rowtemplatedir="")
Set Row Template Name.
static _exists(int $id, bool $reference=false, ?string $type=null)
checks if an object exists in object_data
getNextClass($a_gui_class=null)
setVariable($variable, $value='')
Sets a variable value.
static userExists(array $a_usr_ids=[])
getMediaPath(int $mob_id)
static _lookup(string $a_type, string $a_setting, int $a_user=0, int $a_block_id=0)
Lookup setting from database.
static _lookupTitle(int $obj_id)
ilObjectDefinition $obj_definition
static determineNewsTitle(string $a_context_obj_type, string $a_title, bool $a_content_is_lang_var, int $a_agg_ref_id=0, array $a_aggregation=[], ?ilLanguage $lng=null)
Determine title for news item entry.
static _write(string $a_type, string $a_setting, string $a_value, int $a_user=0, int $a_block_id=0)
Write setting to database.
getClassName(string $obj_name)
static _lookupObjectId(int $ref_id)
initSettingsForm()
Init setting form.
clearTargets()
clear all targets
static lookupTxtById(string $plugin_id, string $lang_var)
static _getThreadForPosting(int $a_pos_id)
setCurrentBlock(string $part=ilGlobalTemplateInterface::DEFAULT_BLOCK)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static makeUrlTitle(string $a_par)
A news item can be created by different sources.
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 formatDate(ilDateTime $date, bool $a_skip_day=false, bool $a_include_wd=false, bool $include_seconds=false, ?ilObjUser $user=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 prepareNewsDataFromCache(array $a_cres)
Prepare news data from cache.
This class represents a block method of a block.
static _setRead(int $a_user_id, int $a_news_id)
Set item read.
addBlockCommand(string $a_href, string $a_text, string $a_onclick="", ?RoundTrip $modal=null)
isPlugin(string $obj_name)
get RBAC status by type returns true if object type is an (activated) plugin type ...
ILIAS UI Renderer $renderer
static string $block_type
returnToParent(object $a_gui_obj, ?string $a_anchor=null)
static _lookupType(int $id, bool $reference=false)
static makeClickable(string $a_text, bool $detectGotoLinks=false)
static _lookupContextObjId(int $a_news_id)
Context Object ID.
getProperty(string $a_property)
static set(string $a_var, $a_val)
Set a value.
setPresentation(int $type)
static shortenWords(string $a_str, int $a_len=30, bool $a_dots=true)
Ensure that the maximum word lenght within a text is not longer than $a_len.
const OBJECTS_WITH_NEWS_SUBTAB
object type names with settings->news settings subtab