126 public function __construct($a_id = 0, $a_id_type = self::REPOSITORY_NODE_ID, $a_parent_node_id = 0)
131 $this->
help = $DIC[
"ilHelp"];
132 $this->tabs = $DIC->tabs();
133 $this->nav_history = $DIC[
"ilNavigationHistory"];
134 $this->
user = $DIC->user();
135 $this->toolbar = $DIC->toolbar();
136 $this->tree = $DIC->repositoryTree();
137 $this->locator = $DIC[
"ilLocator"];
138 $this->main_menu = $DIC[
"ilMainMenu"];
139 $this->rbacreview = $DIC->rbac()->review();
140 $this->rbacadmin = $DIC->rbac()->admin();
142 $lng = $DIC->language();
143 $ilCtrl = $DIC->ctrl();
145 $this->gtp = (int)
$_GET[
"gtp"];
146 $this->edt =
$_GET[
"edt"];
147 $this->blpg = (int) $_REQUEST[
"blpg"];
148 $this->old_nr = (int)
$_GET[
"old_nr"];
149 $this->ppage = (int)
$_GET[
"ppage"];
150 $this->user_page = (int) $_REQUEST[
"user_page"];
153 $this->ntf = (int)
$_GET[
"ntf"];
154 $this->apid = (int)
$_GET[
"apid"];
157 $this->author = (int) $_REQUEST[
"ath"];
158 $this->prt_id = (int) $_REQUEST[
"prt_id"];
159 $this->
ui = $DIC->ui();
161 $this->tool_context = $DIC->globalScreen()->tool()->context();
166 throw new ilException(
"Posting ID does not match blog.");
174 if (!$this->month || !$this->items[$this->month]) {
175 $this->month = array_keys($this->items);
176 $this->month = array_shift($this->month);
177 $this->month_default =
true;
181 $ilCtrl->setParameter($this,
"bmn", $this->month);
184 $lng->loadLanguageModule(
"blog");
185 $ilCtrl->saveParameter($this,
"prvm");
206 $forms = parent::initCreationForms($a_new_type);
208 if ($this->id_type == self::WORKSPACE_NODE_ID) {
209 unset($forms[self::CFORM_IMPORT]);
210 unset($forms[self::CFORM_CLONE]);
220 ilUtil::sendSuccess($this->lng->txt(
"object_added"),
true);
221 $ilCtrl->redirect($this,
"");
228 $tree = $DIC->repositoryTree();
232 $this->tabs_gui->addSubTab(
234 $this->lng->txt(
"blog_properties"),
235 $this->ctrl->getLinkTarget($this,
'edit')
238 $this->tabs_gui->addSubTab(
240 $this->lng->txt(
"obj_sty"),
241 $this->ctrl->getLinkTarget($this,
'editStyleProperties')
245 if ($this->id_type == self::REPOSITORY_NODE_ID) {
246 $grp_ref_id =
$tree->checkForParentType($this->object->getRefId(),
'grp');
247 $crs_ref_id =
$tree->checkForParentType($this->object->getRefId(),
'crs');
249 if ((
int) $grp_ref_id > 0 || (int) $crs_ref_id > 0) {
250 if (
$access->checkAccess(
'write',
'', $this->ref_id)) {
251 $this->tabs_gui->addSubTab(
253 $this->lng->txt(
"notifications"),
254 $this->ctrl->getLinkTargetByClass(
"ilobjnotificationsettingsgui",
'')
260 $this->tabs_gui->activateSubTab($a_active);
271 if ($this->id_type == self::REPOSITORY_NODE_ID) {
273 $appr->
setInfo(
$lng->txt(
"blog_enable_approval_info"));
280 if (
$ilSetting->get(
'enable_global_profiles')) {
290 $nav->setTitle(
$lng->txt(
"blog_settings_navigation"));
298 $opt->
setInfo(
$lng->txt(
"blog_nav_mode_month_list_info"));
299 $nav_mode->addOption($opt);
302 $mon_num =
new ilNumberInputGUI(
$lng->txt(
"blog_nav_mode_month_list_num_month"),
"nav_list_mon");
303 $mon_num->
setInfo(
$lng->txt(
"blog_nav_mode_month_list_num_month_info"));
304 $mon_num->setSize(3);
305 $mon_num->setMinValue(1);
306 $opt->addSubItem($mon_num);
308 $detail_num =
new ilNumberInputGUI(
$lng->txt(
"blog_nav_mode_month_list_num_month_with_post"),
"nav_list_mon_with_post");
309 $detail_num->
setInfo(
$lng->txt(
"blog_nav_mode_month_list_num_month_with_post_info"));
311 $detail_num->setSize(3);
313 $opt->addSubItem($detail_num);
316 $opt->
setInfo(
$lng->txt(
"blog_nav_mode_month_single_info"));
317 $nav_mode->addOption($opt);
319 $order_options = array();
320 if ($this->object->getOrder()) {
321 foreach ($this->object->getOrder() as $item) {
322 $order_options[] =
$lng->txt(
"blog_" . $item);
326 if (!in_array(
$lng->txt(
"blog_navigation"), $order_options)) {
327 $order_options[] =
$lng->txt(
"blog_navigation");
330 if ($this->id_type == self::REPOSITORY_NODE_ID) {
331 if (!in_array(
$lng->txt(
"blog_authors"), $order_options)) {
332 $order_options[] =
$lng->txt(
"blog_authors");
336 $auth->setInfo(
$lng->txt(
"blog_enable_nav_authors_info"));
341 $keyw->
setInfo(
$lng->txt(
"blog_enable_keywords_info"));
344 if (!in_array(
$lng->txt(
"blog_keywords"), $order_options)) {
345 $order_options[] =
$lng->txt(
"blog_keywords");
350 $order->setValue(array_shift($order_options));
351 $order->setMulti(
true,
true,
false);
358 $pres->setTitle(
$lng->txt(
"blog_presentation_frame"));
361 if ($this->id_type == self::REPOSITORY_NODE_ID) {
362 $obj_service->commonSettings()->legacyForm($a_form, $this->
object)->addTileImage();
368 if ($this->id_type == self::REPOSITORY_NODE_ID) {
369 $ppic->setInfo(
$lng->txt(
"blog_profile_picture_repository_info"));
373 if ($blga_set->get(
"banner")) {
374 $dimensions =
" (" . $blga_set->get(
"banner_width") .
"x" .
375 $blga_set->get(
"banner_height") .
")";
381 $file = $this->
object->getImageFullPath(
true);
383 $img->setImage($file);
398 $list->setTitle(
$lng->txt(
"blog_presentation_overview"));
403 $post_num->
setInfo(
$lng->txt(
"blog_list_num_postings_info"));
404 $post_num->setSize(3);
405 $post_num->setMinValue(1);
406 $post_num->setRequired(
true);
410 $a_form->
addItem($abs_shorten);
414 $abs_shorten_len->setRequired(
true);
415 $abs_shorten_len->setSuffix(
$lng->txt(
"blog_abstract_shorten_characters"));
416 $abs_shorten_len->setMinValue(50,
true);
417 $abs_shorten->addSubItem($abs_shorten_len);
420 $abs_img->
setInfo(
$lng->txt(
"blog_abstract_image_info"));
425 $abs_img_width->setRequired(
true);
426 $abs_img_width->setSuffix(
$lng->txt(
"blog_abstract_image_pixels"));
427 $abs_img_width->setMinValue(32,
true);
428 $abs_img->addSubItem($abs_img_width);
432 $abs_img_height->setRequired(
true);
433 $abs_img_height->setSuffix(
$lng->txt(
"blog_abstract_image_pixels"));
434 $abs_img_height->setMinValue(32,
true);
435 $abs_img->addSubItem($abs_img_height);
440 if ($this->id_type == self::REPOSITORY_NODE_ID) {
441 $a_values[
"approval"] = $this->
object->hasApproval();
442 $a_values[
"nav_authors"] = $this->
object->hasAuthors();
444 $a_values[
"keywords"] = $this->
object->hasKeywords();
445 $a_values[
"notes"] = $this->
object->getNotesStatus();
446 $a_values[
"ppic"] = $this->
object->hasProfilePicture();
451 $a_values[
"banner"] = $this->
object->getImage();
452 $a_values[
"rss"] = $this->
object->hasRSS();
453 $a_values[
"abss"] = $this->
object->hasAbstractShorten();
454 $a_values[
"absi"] = $this->
object->hasAbstractImage();
455 $a_values[
"nav"] = $this->
object->getNavMode();
456 $a_values[
"nav_list_mon_with_post"] = $this->
object->getNavModeListMonthsWithPostings();
457 $a_values[
"nav_list_mon"] = $this->
object->getNavModeListMonths();
458 $a_values[
"ov_list_post_num"] = $this->
object->getOverviewPostings();
471 if ($this->id_type == self::REPOSITORY_NODE_ID) {
472 $this->
object->setApproval($a_form->
getInput(
"approval"));
473 $this->
object->setAuthors($a_form->
getInput(
"nav_authors"));
474 $obj_service->commonSettings()->legacyForm($a_form, $this->
object)->saveTileImage();
476 $this->
object->setKeywords($a_form->
getInput(
"keywords"));
477 $this->
object->setNotesStatus($a_form->
getInput(
"notes"));
478 $this->
object->setProfilePicture($a_form->
getInput(
"ppic"));
483 $this->
object->setRSS($a_form->
getInput(
"rss"));
484 $this->
object->setAbstractShorten($a_form->
getInput(
"abss"));
485 $this->
object->setAbstractShortenLength($a_form->
getInput(
"abssl"));
486 $this->
object->setAbstractImage($a_form->
getInput(
"absi"));
487 $this->
object->setAbstractImageWidth($a_form->
getInput(
"absiw"));
488 $this->
object->setAbstractImageHeight($a_form->
getInput(
"absih"));
489 $this->
object->setNavMode($a_form->
getInput(
"nav"));
490 $this->
object->setNavModeListMonthsWithPostings($a_form->
getInput(
"nav_list_mon_with_post"));
491 $this->
object->setNavModeListMonths($a_form->
getInput(
"nav_list_mon"));
492 $this->
object->setOverviewPostings($a_form->
getInput(
"ov_list_post_num"));
494 $order = $a_form->
getInput(
"order");
495 foreach ($order as $idx => $value) {
496 if ($value ==
$lng->txt(
"blog_navigation")) {
497 $order[$idx] =
"navigation";
498 } elseif ($value ==
$lng->txt(
"blog_keywords")) {
499 $order[$idx] =
"keywords";
501 $order[$idx] =
"authors";
504 $this->
object->setOrder($order);
508 if ($_FILES[
"banner"][
"tmp_name"]) {
509 $this->
object->uploadImage($_FILES[
"banner"]);
510 } elseif ($banner->getDeletionFlag()) {
511 $this->
object->deleteImage();
521 if ($this->id_type == self::WORKSPACE_NODE_ID) {
522 $this->ctrl->setParameter($this,
"wsp_id", $this->node_id);
525 $ilHelp->setScreenIdComponent(
"blog");
528 $this->tabs_gui->addTab(
530 $lng->txt(
"content"),
531 $this->ctrl->getLinkTarget($this,
"")
535 $this->tabs_gui->addTab(
537 $lng->txt(
"info_short"),
538 $this->ctrl->getLinkTargetByClass(array(
"ilobjbloggui",
"ilinfoscreengui"),
"showSummary")
543 $this->tabs_gui->addTab(
545 $lng->txt(
"settings"),
546 $this->ctrl->getLinkTarget($this,
"edit")
549 if (!$this->prtf_embed) {
550 if ($this->id_type == self::REPOSITORY_NODE_ID) {
551 $this->tabs_gui->addTab(
553 $lng->txt(
"blog_contributors"),
554 $this->ctrl->getLinkTarget($this,
"contributors")
558 if ($this->id_type == self::REPOSITORY_NODE_ID) {
559 $this->tabs_gui->addTab(
562 $this->ctrl->getLinkTargetByClass(
"ilexportgui",
"")
568 if (!$this->prtf_embed) {
570 $this->tabs_gui->addNonTabbedLink(
572 $lng->txt(
"blog_preview"),
573 $this->ctrl->getLinkTarget($this,
"preview")
591 if ($this->gtp > 0) {
595 $ilCtrl->setCmdClass(
"ilblogpostinggui");
596 $ilCtrl->setParameterByClass(
"ilblogpostinggui",
"blpg", $page_id);
597 if ($this->edt ==
"edit") {
598 $ilCtrl->redirectByClass(
"ilblogpostinggui",
"edit");
600 $ilCtrl->redirectByClass(
"ilblogpostinggui",
"previewFullscreen");
607 $next_class = $ilCtrl->getNextClass($this);
608 $cmd = $ilCtrl->getCmd();
610 if ($this->id_type == self::REPOSITORY_NODE_ID) {
615 $link = $ilCtrl->getLinkTargetByClass([
"ilrepositorygui",
"ilObjBlogGUI"],
"preview");
616 $ilNavigationHistory->addItem($this->node_id, $link,
"blog");
620 switch ($next_class) {
621 case 'ilblogpostinggui':
623 $this->ctrl->saveParameter($this,
"user_page");
624 if (!$this->prtf_embed) {
625 $tpl->loadStandardTemplate();
634 if ($this->id_type == self::REPOSITORY_NODE_ID) {
641 $this->object->getStyleSheetId(),
650 ($this->object->getNotesStatus() && !$this->disable_notes),
658 case "previewFullscreen":
659 $ilCtrl->setParameter($this,
"prvm",
"fsc");
663 case "previewEmbedded":
664 $ilCtrl->setParameter($this,
"prvm",
"emb");
672 if (!$this->prtf_embed) {
673 $this->ctrl->setParameterByClass(
"ilblogpostinggui",
"blpg", $this->blpg);
674 $this->tabs_gui->addNonTabbedLink(
676 $lng->txt(
"blog_preview"),
677 $this->ctrl->getLinkTargetByClass(
"ilblogpostinggui",
"previewFullscreen")
679 $this->ctrl->setParameterByClass(
"ilblogpostinggui",
"blpg",
"");
681 $this->ctrl->setParameterByClass(
"ilobjportfoliogui",
"user_page", $this->ppage);
682 $this->tabs_gui->addNonTabbedLink(
684 $lng->txt(
"blog_preview"),
685 $this->ctrl->getLinkTargetByClass(
"ilobjportfoliogui",
"preview")
687 $this->ctrl->setParameterByClass(
"ilobjportfoliogui",
"user_page",
"");
694 $cmd =
"preview" . (($this->prvm ==
"fsc") ?
"Fullscreen" :
"Embedded");
696 if (in_array($cmd, array(
"previewFullscreen",
"previewEmbedded"))) {
699 $ret = $ilCtrl->forwardCommand($bpost_gui);
700 if (!$ilTabs->back_target) {
701 $ilCtrl->setParameter($this,
"bmn",
"");
702 $ilTabs->setBackTarget(
704 $ilCtrl->getLinkTarget($this,
"")
712 $is_active = $bpost_gui->getBlogPosting()->getActive();
715 if (($cmd ==
"previewFullscreen" || $cmd ==
"previewEmbedded")
716 && !$is_owner && !$is_active) {
717 $this->ctrl->redirect($this,
"preview");
722 case "previewFullscreen":
730 case "previewEmbedded":
742 if ($this->id_type == self::WORKSPACE_NODE_ID) {
743 $info[] =
$lng->txt(
"blog_draft_info");
745 $info[] =
$lng->txt(
"blog_draft_info_contributors");
748 if ($cmd !=
"history" && $cmd !=
"edit" && $is_active && empty($info)) {
749 $info[] =
$lng->txt(
"blog_new_posting_info");
750 $public_action =
true;
752 if ($this->object->hasApproval() && !$bpost_gui->getBlogPosting()->isApproved()) {
754 $info[] =
$lng->txt(
"blog_posting_edit_approval_info");
759 if ($public_action) {
760 ilUtil::sendSuccess(implode(
"<br />", $info));
767 if ($cmd !=
"edit") {
770 $tpl->setRightContent($nav);
772 $this->tabs->setBackTarget(
"",
"");
779 case "ilinfoscreengui":
789 case "ilcommonactiondispatchergui":
791 $gui->enableCommentsSettings(
false);
793 $this->ctrl->forwardCommand($gui);
796 case "ilpermissiongui":
798 $ilTabs->activateTab(
"id_permissions");
800 $this->ctrl->forwardCommand($perm_gui);
803 case "ilobjectcopygui":
806 $cp->setType(
"blog");
807 $this->ctrl->forwardCommand($cp);
810 case 'ilrepositorysearchgui':
812 $ilTabs->activateTab(
"contributors");
814 $rep_search->setTitle($this->lng->txt(
"blog_add_contributor"));
815 $rep_search->setCallback($this,
'addContributor', $this->object->getAllLocalRoles($this->node_id));
816 $this->ctrl->setReturn($this,
'contributors');
817 $ret = &$this->ctrl->forwardCommand($rep_search);
822 $ilTabs->activateTab(
"export");
824 $exp_gui->addFormat(
"xml");
825 $exp_gui->addFormat(
"html", null, $this,
"buildExportFile");
827 $exp_gui->addFormat(
"html_comments",
"HTML (" . $this->lng->txt(
"blog_incl_comments") .
")", $this,
"buildExportFile");
829 $ret = $ilCtrl->forwardCommand($exp_gui);
832 case "ilobjstylesheetgui":
833 $this->ctrl->setReturn($this,
"editStyleProperties");
834 $style_gui =
new ilObjStyleSheetGUI(
"", $this->object->getStyleSheetId(),
false,
false);
836 if ($cmd ==
"create" || $this->new_type ==
"sty") {
837 $style_gui->setCreationMode(
true);
840 if ($cmd ==
"confirmedDelete") {
841 $this->
object->setStyleSheetId(0);
842 $this->
object->update();
845 $ret = $this->ctrl->forwardCommand($style_gui);
847 if ($cmd ==
"save" || $cmd ==
"copyStyle" || $cmd ==
"importStyle") {
849 $this->
object->setStyleSheetId($style_id);
850 $this->
object->update();
851 $this->ctrl->redirectByClass(
"ilobjstylesheetgui",
"edit");
855 case "ilblogexercisegui":
856 $this->ctrl->setReturn($this,
"render");
858 $this->ctrl->forwardCommand($gui);
861 case 'ilobjnotificationsettingsgui':
863 $ilTabs->activateTab(
"settings");
866 $this->ctrl->forwardCommand($gui);
870 if ($cmd !=
"gethtml") {
872 if ($cmd ==
"addToDesk" || $cmd ==
"removeFromDesk") {
873 $this->{$cmd .
"Object"}();
879 $ilCtrl->setCmd($cmd);
883 if (!$this->prtf_embed) {
884 return parent::executeCommand();
891 return $this->$cmd();
907 $assignments = $be->getAssignmentsOfBlog();
908 if (count($assignments) > 0) {
909 $ass_ids = array_map(
function (
$i) {
914 $this->tool_context->current()->addAdditionalData(
916 $be_gui->getActionButtons()
928 $this->ctrl->setCmd(
"showSummary");
929 $this->ctrl->setCmdClass(
"ilinfoscreengui");
940 $ilTabs->activateTab(
"id_info");
946 if ($this->id_type != self::WORKSPACE_NODE_ID) {
947 $info->enablePrivateNotes();
955 $info->enableNewsEditing(
false);
958 $enable_internal_rss = $news_set->get(
"enable_rss_for_internal");
960 if ($enable_internal_rss) {
961 $info->setBlockProperty(
"news",
"settings",
true);
962 $info->setBlockProperty(
"news",
"public_notifications_option",
true);
967 $info->addMetaDataSections($this->object->getId(), 0, $this->
object->getType());
969 if ($this->id_type == self::WORKSPACE_NODE_ID) {
973 $this->ctrl->forwardCommand($info);
988 $posting->setTitle($title);
989 $posting->setBlogId($this->object->getId());
990 $posting->setActive(
false);
991 $posting->setAuthor(
$ilUser->getId());
995 $ilCtrl->setParameter($this,
"bmn", date(
"Y-m"));
997 $ilCtrl->setParameterByClass(
"ilblogpostinggui",
"blpg", $posting->getId());
998 $ilCtrl->redirectByClass(
"ilblogpostinggui",
"edit");
1001 $ilCtrl->redirect($this,
"render");
1026 $ilTabs->activateTab(
"content");
1030 $ilToolbar->setFormAction($ilCtrl->getFormAction($this,
"createPosting"));
1033 $ilToolbar->addStickyItem($title,
$lng->txt(
"title"));
1036 $button->setCaption(
"blog_add_posting");
1037 $button->setCommand(
"createPosting");
1038 $ilToolbar->addStickyItem($button);
1041 $first = array_shift((array_keys($this->items)));
1042 if ($first != $this->month) {
1043 $ilToolbar->addSeparator();
1045 $ilCtrl->setParameter($this,
"bmn", $first);
1046 $url = $ilCtrl->getLinkTarget($this,
"");
1047 $ilCtrl->setParameter($this,
"bmn", $this->month);
1050 $button->setCaption(
"blog_show_latest");
1051 $button->setUrl(
$url);
1052 $ilToolbar->addButtonInstance($button);
1063 $list = $this->
renderList($list_items,
"preview", null, $is_owner);
1069 $tpl->setContent(
$message . $ilToolbar->getHTML() . $list);
1070 $tpl->setRightContent($nav);
1085 if ($this->id_type == self::REPOSITORY_NODE_ID) {
1097 $list = $this->
renderList($list_items,
"previewEmbedded");
1101 elseif ($this->prt_id) {
1105 $ilCtrl->setParameterByClass(
"ilportfoliopagegui",
"ppage", $this->user_page);
1106 $link = $ilCtrl->getLinkTargetByClass(array(
"ilportfoliopagegui",
"ilobjbloggui"),
"render");
1107 $ilCtrl->setParameterByClass(
"ilportfoliopagegui",
"ppage",
"");
1109 $this->toolbar->addComponent($this->
ui->factory()->button()->standard(
1110 $this->lng->txt(
"blog_edit"),
1127 if ($this->author) {
1128 $list_items = array();
1130 foreach (
$items as $id => $item) {
1131 if ($item[
"author"] == $this->author ||
1132 (is_array($item[
"editors"]) && in_array($this->author, $item[
"editors"]))) {
1133 $list_items[$id] = $item;
1137 } elseif ($this->keyword) {
1138 $list_items = $this->filterItemsByKeyword($this->items, $this->keyword);
1140 $max = $this->
object->getOverviewPostings();
1141 if ($this->month_default && $max) {
1142 $list_items = array();
1143 foreach ($this->items as
$month => $postings) {
1144 foreach ($postings as $id => $item) {
1145 if (!$a_show_inactive &&
1149 $list_items[$id] = $item;
1151 if (
sizeof($list_items) >= $max) {
1170 $lng = $DIC->language();
1184 $list = $this->
renderList($list_items,
"previewFullscreen");
1196 public function export($a_with_comments =
false)
1214 $wtpl =
new ilTemplate(
"tpl.blog_embedded.html",
true,
true,
"Modules/Blog");
1215 $wtpl->setVariable(
"VAL_LIST", $a_content);
1216 $wtpl->setVariable(
"VAL_NAVIGATION", $a_nav);
1217 return $wtpl->get();
1233 $owner = $this->
object->getOwner();
1235 $ilTabs->clearTargets();
1241 if ($owner ==
$ilUser->getId()) {
1243 if ($this->id_type == self::WORKSPACE_NODE_ID) {
1244 $back =
"ilias.php?baseClass=ilDashboardGUI&cmd=jumpToWorkspace&wsp_id=" .
$this->node_id;
1248 $this->ctrl->setParameter($this,
"prvm",
"");
1249 if ($this->blpg == 0) {
1250 $back = $this->ctrl->getLinkTarget($this,
"");
1252 $this->ctrl->setParameterByClass(
"ilblogpostinggui",
"bmn", $this->month);
1253 $this->ctrl->setParameterByClass(
"ilblogpostinggui",
"blpg", $this->blpg);
1254 $back = $this->ctrl->getLinkTargetByClass(
"ilblogpostinggui",
"preview");
1256 $this->ctrl->setParameter($this,
"prvm", $this->prvm);
1259 $back_caption = $this->lng->txt(
"blog_back_to_blog_owner");
1264 if ($this->id_type == self::WORKSPACE_NODE_ID) {
1265 $back =
"ilias.php?baseClass=ilDashboardGUI&cmd=jumpToWorkspace&dsh=" . $owner;
1269 $back = $this->ctrl->getLinkTarget($this,
"");
1270 $back_caption = $this->lng->txt(
"blog_back_to_blog_owner");
1282 $ilMainMenu->setTopBarBack($back, $back_caption);
1287 $this->ctrl->setParameter($this,
"bmn",
"");
1289 $this->ctrl->setParameter($this,
"bmn", $this->month);
1294 $tpl->setContent($a_content);
1295 $tpl->setRightContent($a_navigation);
1311 $this->object->getType(),
1313 $this->
object->getId(),
1320 if ($this->id_type != self::REPOSITORY_NODE_ID) {
1322 $name = $name[
"lastname"] .
", " . ($t = $name[
"title"] ? $t .
" " :
"") . $name[
"firstname"];
1328 if ($blga_set->get(
"banner")) {
1330 $banner_width = $blga_set->get(
"banner_width");
1331 $banner_height = $blga_set->get(
"banner_height");
1333 $banner = basename($banner);
1338 if ($this->object->hasProfilePicture()) {
1340 if ($this->id_type == self::REPOSITORY_NODE_ID) {
1342 if ($this->blpg > 0 && !$a_export) {
1344 $author_id = $post->getAuthor();
1349 $name = $name[
"lastname"] .
", " . ($t = $name[
"title"] ? $t .
" " :
"") . $name[
"firstname"];
1357 $ppic = basename($ppic);
1362 $a_tpl->resetHeaderBlock(
false);
1363 $a_tpl->setBanner($banner, $banner_width, $banner_height, $a_export);
1364 $a_tpl->setTitleIcon($ppic);
1365 $a_tpl->setTitle($this->object->getTitle());
1366 $a_tpl->setDescription($name);
1377 $author_found =
false;
1381 if ($this->author &&
1382 ($posting[
"author"] == $this->author ||
1383 (is_array($posting[
"editors"]) && in_array($this->author, $posting[
"editors"])))) {
1384 $author_found =
true;
1391 if ($this->author && !$author_found) {
1392 $this->author = null;
1408 public function renderList(array
$items, $a_cmd =
"preview", $a_link_template = null, $a_show_inactive =
false, $a_export_directory = null)
1414 $wtpl =
new ilTemplate(
"tpl.blog_list.html",
true,
true,
"Modules/Blog");
1417 if ($this->prt_id > 0 &&
1418 stristr($a_cmd,
"embedded")) {
1421 $ilCtrl->setParameterByClass(
"ilportfoliopagegui",
"ppage", $this->user_page);
1422 $link = $ilCtrl->getLinkTargetByClass(array(
"ilportfoliopagegui",
"ilobjbloggui"),
"render");
1423 $ilCtrl->setParameterByClass(
"ilportfoliopagegui",
"ppage",
"");
1426 $list->setListTitle(
$lng->txt(
"action"));
1428 sprintf(
$lng->txt(
"prtf_edit_embedded_blog"), $this->
object->getTitle()),
1433 $wtpl->setCurrentBlock(
"prtf_edit_bl");
1435 $wtpl->parseCurrentBlock();
1436 $b = $this->
ui->factory()->button()->standard(
1437 $this->lng->txt(
"blog_edit"),
1440 $this->toolbar->addComponent(
$b);
1448 foreach ($items as $item) {
1451 if (!$is_active && !$a_show_inactive) {
1457 if (!$this->keyword && !$this->author) {
1461 if (!$last_month || $last_month !=
$month) {
1463 $wtpl->setCurrentBlock(
"month_bl");
1464 $wtpl->parseCurrentBlock();
1468 if ($this->keyword) {
1470 } elseif ($this->author) {
1474 " " . substr(
$month, 0, 4);
1479 $wtpl->setVariable(
"TXT_CURRENT_MONTH", $title);
1482 if (!$a_link_template) {
1483 $ilCtrl->setParameterByClass(
"ilblogpostinggui",
"bmn", $this->month);
1484 $ilCtrl->setParameterByClass(
"ilblogpostinggui",
"blpg", $item[
"id"]);
1485 $preview = $ilCtrl->getLinkTargetByClass(
"ilblogpostinggui", $a_cmd);
1492 $posting_edit = $this->
mayEditPosting($item[
"id"], $item[
"author"]);
1493 if (($posting_edit || $is_admin) && !$a_link_template && $a_cmd ==
"preview") {
1495 $alist->setId($item[
"id"]);
1496 $alist->setListTitle(
$lng->txt(
"actions"));
1498 if ($is_active && $this->object->hasApproval() && !$item[
"approved"]) {
1500 $ilCtrl->setParameter($this,
"apid", $item[
"id"]);
1502 $lng->txt(
"blog_approve"),
1504 $ilCtrl->getLinkTarget($this,
"approve")
1506 $ilCtrl->setParameter($this,
"apid",
"");
1509 $wtpl->setVariable(
"APPROVAL",
$lng->txt(
"blog_needs_approval"));
1512 if ($posting_edit) {
1514 $lng->txt(
"edit_content"),
1516 $ilCtrl->getLinkTargetByClass(
"ilblogpostinggui",
"edit")
1518 $more_link = $ilCtrl->getLinkTargetByClass(
"ilblogpostinggui",
"edit");
1523 $lng->txt(
"blog_toggle_draft"),
1525 $ilCtrl->getLinkTargetByClass(
"ilblogpostinggui",
"deactivatePageToList")
1529 $lng->txt(
"blog_toggle_final"),
1531 $ilCtrl->getLinkTargetByClass(
"ilblogpostinggui",
"activatePageToList")
1536 $lng->txt(
"rename"),
1538 $ilCtrl->getLinkTargetByClass(
"ilblogpostinggui",
"edittitle")
1541 if ($this->object->hasKeywords()) {
1543 $lng->txt(
"blog_edit_keywords"),
1545 $ilCtrl->getLinkTargetByClass(
"ilblogpostinggui",
"editKeywords")
1550 $lng->txt(
"blog_edit_date"),
1552 $ilCtrl->getLinkTargetByClass(
"ilblogpostinggui",
"editdate")
1555 $lng->txt(
"delete"),
1557 $ilCtrl->getLinkTargetByClass(
"ilblogpostinggui",
"deleteBlogPostingConfirmationScreen")
1559 } elseif ($is_admin) {
1562 $ilCtrl->setParameter($this,
"apid", $item[
"id"]);
1564 $lng->txt(
"blog_toggle_draft_admin"),
1566 $ilCtrl->getLinkTarget($this,
"deactivateAdmin")
1568 $ilCtrl->setParameter($this,
"apid",
"");
1572 $lng->txt(
"delete"),
1574 $ilCtrl->getLinkTargetByClass(
"ilblogpostinggui",
"deleteBlogPostingConfirmationScreen")
1578 $wtpl->setCurrentBlock(
"actions");
1579 $wtpl->setVariable(
"ACTION_SELECTOR", $alist->getHTML());
1580 $wtpl->parseCurrentBlock();
1584 if ($this->object->getNotesStatus() && !$a_link_template && !$this->disable_notes) {
1593 if ($a_cmd !=
"preview") {
1594 $wtpl->setCurrentBlock(
"comments");
1595 $wtpl->setVariable(
"TEXT_COMMENTS",
$lng->txt(
"blog_comments"));
1596 $wtpl->setVariable(
"URL_COMMENTS",
$preview);
1597 $wtpl->setVariable(
"COUNT_COMMENTS", $count);
1598 $wtpl->parseCurrentBlock();
1611 if ($a_cmd !=
"preview" && $a_cmd !=
"previewEmbedded") {
1612 if ($this->id_type == self::WORKSPACE_NODE_ID) {
1613 $goto = $this->
getAccessHandler()->getGotoLink($this->node_id, $this->obj_id,
"_" . $item[
"id"]);
1617 $wtpl->setCurrentBlock(
"permalink");
1618 $wtpl->setVariable(
"URL_PERMALINK", $goto);
1619 $wtpl->setVariable(
"TEXT_PERMALINK",
$lng->txt(
"blog_permanent_link"));
1620 $wtpl->parseCurrentBlock();
1625 $this->object->hasAbstractShorten(),
1626 $this->
object->getAbstractShortenLength(),
1628 $this->
object->hasAbstractImage(),
1629 $this->
object->getAbstractImageWidth(),
1630 $this->
object->getAbstractImageHeight(),
1635 $wtpl->setCurrentBlock(
"more");
1636 $wtpl->setVariable(
"URL_MORE", $more_link);
1637 $wtpl->setVariable(
"TEXT_MORE",
$lng->txt(
"blog_list_more"));
1638 $wtpl->parseCurrentBlock();
1644 $wtpl->setCurrentBlock(
"draft_text");
1645 $wtpl->setVariable(
"DRAFT_TEXT",
$lng->txt(
"blog_draft_text"));
1646 $wtpl->parseCurrentBlock();
1647 $wtpl->setVariable(
"DRAFT_CLASS",
" ilBlogListItemDraft");
1650 $wtpl->setCurrentBlock(
"posting");
1653 if ($this->id_type == self::REPOSITORY_NODE_ID) {
1656 $author_id = $item[
"author"];
1661 if (is_array($item[
"editors"])) {
1662 foreach ($item[
"editors"] as $editor_id) {
1668 $author = implode(
", ", $authors) .
" - ";
1673 $wtpl->setVariable(
"URL_TITLE",
$preview);
1674 $wtpl->setVariable(
"TITLE", $item[
"title"]);
1678 $keywords = (count($kw) > 0)
1679 ?
"<br>" . $this->lng->txt(
"keywords") .
": " . implode(
", ", $kw)
1682 $wtpl->setVariable(
"DATETIME",
$author .
1686 $wtpl->setVariable(
"CONTENT", $snippet);
1688 $wtpl->parseCurrentBlock();
1692 if ($a_cmd ==
"previewFullscreen") {
1693 $this->tpl->setPermanentLink(
1696 ($this->id_type == self::WORKSPACE_NODE_ID)
1702 if (!$is_empty || $a_show_inactive) {
1703 return $wtpl->get();
1715 return \ILIAS\Blog\Export\BlogHtmlExport::buildExportLink($a_template, $a_type, $a_id, $this->
getKeywords(
false));
1729 protected function renderNavigationByDate(array $a_items, $a_list_cmd =
"render", $a_posting_cmd =
"preview", $a_link_template = null, $a_show_inactive =
false, $a_blpg = 0)
1733 $blpg = ($a_blpg > 0)
1739 foreach ($a_items as
$month => $postings) {
1740 foreach (array_keys($postings) as $id) {
1742 if (!$a_show_inactive && !$active) {
1743 unset($a_items[
$month][$id]);
1745 $a_items[
$month][$id][
"active"] = $active;
1748 if (!
sizeof($a_items[
$month])) {
1749 unset($a_items[$month]);
1756 $max_months = $this->
object->getNavModeListMonths();
1758 $wtpl =
new ilTemplate(
"tpl.blog_list_navigation_by_date.html",
true,
true,
"Modules/Blog");
1760 $ilCtrl->setParameter($this,
"blpg",
"");
1762 $counter = $mon_counter = $last_year = 0;
1763 foreach ($a_items as
$month => $postings) {
1764 if (!$a_link_template && $max_months && $mon_counter >= $max_months) {
1769 $year = substr(
$month, 0, 4);
1770 if (!$last_year || $year != $last_year) {
1780 if (!$a_link_template) {
1781 $ilCtrl->setParameter($this,
"bmn",
$month);
1782 $month_url = $ilCtrl->getLinkTarget($this, $a_list_cmd);
1789 if ($mon_counter <= $this->object->getNavModeListMonthsWithPostings()) {
1791 $wtpl->setCurrentBlock(
"navigation_year_details");
1792 $wtpl->setVariable(
"YEAR", $year);
1793 $wtpl->parseCurrentBlock();
1796 foreach ($postings as $id => $posting) {
1807 if (!$a_link_template) {
1808 $ilCtrl->setParameterByClass(
"ilblogpostinggui",
"bmn",
$month);
1809 $ilCtrl->setParameterByClass(
"ilblogpostinggui",
"blpg", $id);
1810 $url = $ilCtrl->getLinkTargetByClass(
"ilblogpostinggui", $a_posting_cmd);
1815 if (!$posting[
"active"]) {
1816 $wtpl->setVariable(
"NAV_ITEM_DRAFT", $this->lng->txt(
"blog_draft"));
1817 } elseif ($this->object->hasApproval() && !$posting[
"approved"]) {
1818 $wtpl->setVariable(
"NAV_ITEM_APPROVAL", $this->lng->txt(
"blog_needs_approval"));
1821 $wtpl->setCurrentBlock(
"navigation_item");
1822 $wtpl->setVariable(
"NAV_ITEM_URL",
$url);
1823 $wtpl->setVariable(
"NAV_ITEM_CAPTION", $caption);
1824 $wtpl->parseCurrentBlock();
1827 $wtpl->setCurrentBlock(
"navigation_month_details");
1828 $wtpl->setVariable(
"NAV_MONTH", $month_name);
1829 $wtpl->setVariable(
"URL_MONTH", $month_url);
1830 $wtpl->parseCurrentBlock();
1835 $wtpl->setCurrentBlock(
"navigation_year");
1836 $wtpl->setVariable(
"YEAR", $year);
1837 $wtpl->parseCurrentBlock();
1840 $wtpl->setCurrentBlock(
"navigation_month");
1841 $wtpl->setVariable(
"MONTH_NAME", $month_name);
1842 $wtpl->setVariable(
"URL_MONTH", $month_url);
1843 $wtpl->setVariable(
"MONTH_COUNT",
sizeof($postings));
1844 $wtpl->parseCurrentBlock();
1848 $ilCtrl->setParameter($this,
"bmn", $this->month);
1849 $ilCtrl->setParameterByClass(
"ilblogpostinggui",
"bmn",
"");
1851 return $wtpl->get();
1855 $wtpl =
new ilTemplate(
"tpl.blog_list_navigation_month.html",
true,
true,
"Modules/Blog");
1857 $ilCtrl->setParameter($this,
"blpg",
"");
1859 $month_options = array();
1860 foreach ($a_items as
$month => $postings) {
1862 " " . substr(
$month, 0, 4);
1864 $month_options[
$month] = $month_name;
1866 if (
$month == $this->month) {
1867 if (!$a_link_template) {
1868 $ilCtrl->setParameter($this,
"bmn",
$month);
1869 $month_url = $ilCtrl->getLinkTarget($this, $a_list_cmd);
1874 foreach ($postings as $id => $posting) {
1878 if (!$a_link_template) {
1879 $ilCtrl->setParameterByClass(
"ilblogpostinggui",
"bmn",
$month);
1880 $ilCtrl->setParameterByClass(
"ilblogpostinggui",
"blpg", $id);
1881 $url = $ilCtrl->getLinkTargetByClass(
"ilblogpostinggui", $a_posting_cmd);
1886 if (!$posting[
"active"]) {
1887 $wtpl->setVariable(
"NAV_ITEM_DRAFT", $this->lng->txt(
"blog_draft"));
1888 } elseif ($this->object->hasApproval() && !$posting[
"approved"]) {
1889 $wtpl->setVariable(
"NAV_ITEM_APPROVAL", $this->lng->txt(
"blog_needs_approval"));
1892 $wtpl->setCurrentBlock(
"navigation_item");
1893 $wtpl->setVariable(
"NAV_ITEM_URL",
$url);
1894 $wtpl->setVariable(
"NAV_ITEM_CAPTION", $caption);
1895 $wtpl->parseCurrentBlock();
1898 $wtpl->setCurrentBlock(
"navigation_month_details");
1900 $wtpl->setVariable(
"NAV_MONTH", $month_name);
1901 $wtpl->setVariable(
"URL_MONTH", $month_url);
1903 $wtpl->parseCurrentBlock();
1908 $wtpl->setCurrentBlock(
"option_bl");
1909 foreach ($month_options as $value => $caption) {
1910 $wtpl->setVariable(
"OPTION_VALUE", $value);
1911 $wtpl->setVariable(
"OPTION_CAPTION", $caption);
1912 if ($value == $this->month) {
1913 $wtpl->setVariable(
"OPTION_SEL",
' selected="selected"');
1915 $wtpl->parseCurrentBlock();
1918 $wtpl->setVariable(
"FORM_ACTION", $ilCtrl->getFormAction($this, $a_list_cmd));
1921 $ilCtrl->setParameter($this,
"bmn", $this->month);
1922 $ilCtrl->setParameterByClass(
"ilblogpostinggui",
"bmn",
"");
1924 return $wtpl->get();
1936 $a_list_cmd =
"render",
1937 $a_show_inactive =
false,
1938 $a_link_template =
false,
1943 $blpg = ($a_blpg > 0)
1949 $wtpl =
new ilTemplate(
"tpl.blog_list_navigation_keywords.html",
true,
true,
"Modules/Blog");
1951 $max = max($keywords);
1953 $wtpl->setCurrentBlock(
"keyword");
1954 foreach ($keywords as
$keyword => $counter) {
1955 if (!$a_link_template) {
1956 $ilCtrl->setParameter($this,
"kwd", urlencode(
$keyword));
1957 $url = $ilCtrl->getLinkTarget($this, $a_list_cmd);
1958 $ilCtrl->setParameter($this,
"kwd",
"");
1963 $wtpl->setVariable(
"TXT_KEYWORD",
$keyword);
1965 $wtpl->setVariable(
"URL_KEYWORD",
$url);
1966 $wtpl->parseCurrentBlock();
1969 return $wtpl->get();
1979 foreach (
$items as $item) {
1981 if ($item[
"author"]) {
1982 $authors[] = $item[
"author"];
1985 if (is_array($item[
"editors"])) {
1986 foreach ($item[
"editors"] as $editor_id) {
1987 if ($editor_id != $item[
"author"]) {
1988 $authors[] = $editor_id;
1996 $authors = array_unique($authors);
1997 if (
sizeof($authors) > 1) {
1999 foreach ($authors as $user_id) {
2001 $ilCtrl->setParameter($this,
"ath", $user_id);
2002 $url = $ilCtrl->getLinkTarget($this, $a_list_cmd);
2003 $ilCtrl->setParameter($this,
"ath",
"");
2006 $idx = trim(strip_tags(
$name)) .
"///" . $user_id;
2012 $wtpl =
new ilTemplate(
"tpl.blog_list_navigation_authors.html",
true,
true,
"Modules/Blog");
2014 $wtpl->setCurrentBlock(
"author");
2016 $wtpl->setVariable(
"TXT_AUTHOR", $author[0]);
2017 $wtpl->setVariable(
"URL_AUTHOR", $author[1]);
2018 $wtpl->parseCurrentBlock();
2021 return $wtpl->get();
2036 $lng = $DIC->language();
2037 $ctrl = $DIC->ctrl();
2039 $f = $DIC->ui()->factory();
2043 :
"previewFullscreen";
2045 if ($single_posting) {
2047 if ($latest_posting !=
"" && $this->blpg != $latest_posting) {
2048 $ctrl->setParameterByClass(
"ilblogpostinggui",
"blpg", $latest_posting);
2049 $mb =
$f->button()->standard(
2050 $lng->txt(
"blog_latest_posting"),
2051 $ctrl->getLinkTargetByClass(
"ilblogpostinggui", $cmd)
2054 $mb =
$f->button()->standard(
$lng->txt(
"blog_latest_posting"),
"#")->withUnavailableAction();
2058 if ($prev_posting !=
"") {
2059 $ctrl->setParameterByClass(
"ilblogpostinggui",
"blpg", $prev_posting);
2060 $pb =
$f->button()->standard(
2061 $lng->txt(
"previous"),
2062 $ctrl->getLinkTargetByClass(
"ilblogpostinggui", $cmd)
2065 $pb =
$f->button()->standard(
$lng->txt(
"previous"),
"#")->withUnavailableAction();
2069 if ($next_posting !=
"") {
2070 $ctrl->setParameterByClass(
"ilblogpostinggui",
"blpg", $next_posting);
2071 $nb =
$f->button()->standard(
2073 $ctrl->getLinkTargetByClass(
"ilblogpostinggui", $cmd)
2076 $nb =
$f->button()->standard(
$lng->txt(
"next"),
"#")->withUnavailableAction();
2078 $ctrl->setParameter($this,
"blpg", $this->blpg);
2079 $vc =
$f->viewControl()->section($pb, $mb, $nb);
2082 $ctrl->setParameter($this,
"prvm",
"");
2085 $ctrl->setParameter($this,
"bmn",
"");
2086 $ctrl->setParameter($this,
"blpg",
"");
2087 $link =
$ctrl->getLinkTarget($this,
"");
2088 $ctrl->setParameter($this,
"blpg", $this->blpg);
2089 $ctrl->setParameter($this,
"bmn", $this->month);
2091 $toolbar->addComponent(
$f->button()->standard(
$lng->txt(
"blog_edit"), $link));
2094 $ctrl->setParameterByClass(
"ilblogpostinggui",
"blpg", $this->blpg);
2095 if ($this->prtf_embed) {
2096 $this->ctrl->setParameterByClass(
"ilobjportfoliogui",
"ppage", $this->user_page);
2098 $link =
$ctrl->getLinkTargetByClass(
"ilblogpostinggui",
"edit");
2099 $toolbar->addComponent(
$f->button()->standard(
$lng->txt(
"blog_edit_posting"), $link));
2103 if ($latest_month !=
"" && $this->month != $latest_month) {
2104 $ctrl->setParameter($this,
"bmn", $latest_month);
2105 $mb =
$f->button()->standard(
2106 $lng->txt(
"blog_latest_posting"),
2107 $ctrl->getLinkTarget($this,
"preview")
2110 $mb =
$f->button()->standard(
$lng->txt(
"blog_latest_posting"),
"#")->withUnavailableAction();
2114 if ($prev_month !=
"") {
2115 $ctrl->setParameter($this,
"bmn", $prev_month);
2116 $pb =
$f->button()->standard(
$lng->txt(
"previous"),
$ctrl->getLinkTarget($this,
"preview"));
2118 $pb =
$f->button()->standard(
$lng->txt(
"previous"),
"#")->withUnavailableAction();
2122 if ($next_month !=
"") {
2123 $ctrl->setParameter($this,
"bmn", $next_month);
2124 $nb =
$f->button()->standard(
$lng->txt(
"next"),
$ctrl->getLinkTarget($this,
"preview"));
2126 $nb =
$f->button()->standard(
$lng->txt(
"next"),
"#")->withUnavailableAction();
2128 $ctrl->setParameter($this,
"bmn", $this->month);
2129 $vc =
$f->viewControl()->section($pb, $mb, $nb);
2133 $ctrl->setParameter($this,
"prvm",
"");
2135 $ctrl->setParameter($this,
"bmn",
"");
2136 $ctrl->setParameter($this,
"blpg",
"");
2137 $link =
$ctrl->getLinkTarget($this,
"");
2138 $ctrl->setParameter($this,
"blpg", $this->blpg);
2139 $ctrl->setParameter($this,
"bmn", $this->month);
2141 $toolbar->addComponent(
$f->button()->standard(
$lng->txt(
"blog_edit"), $link));
2157 if (
$month > $this->month) {
2175 if ($month < $this->month && $found ==
"") {
2191 return key($a_items);
2206 foreach (
$items as $item) {
2207 if ($item[
"id"] == $this->blpg) {
2211 $next_blpg = $item[
"id"];
2230 foreach (
$items as $item) {
2231 if ($found && $prev_blpg ==
"") {
2232 $prev_blpg = $item[
"id"];
2234 if ($item[
"id"] == $this->blpg) {
2251 $month = current($a_items);
2253 return current(
$month)[
"id"];
2268 public function renderNavigation($a_list_cmd =
"render", $a_posting_cmd =
"preview", $a_link_template = null, $a_show_inactive =
false, $a_blpg = 0)
2274 $blpg = ($a_blpg > 0)
2278 if ($this->object->getOrder()) {
2279 $order = array_flip($this->object->getOrder());
2288 $wtpl =
new ilTemplate(
"tpl.blog_list_navigation.html",
true,
true,
"Modules/Blog");
2293 if (
sizeof($a_items)) {
2294 $blocks[$order[
"navigation"]] = array(
2295 $this->lng->txt(
"blog_navigation"),
2296 $this->
renderNavigationByDate($a_items, $a_list_cmd, $a_posting_cmd, $a_link_template, $a_show_inactive, $a_blpg)
2300 if ($this->object->hasKeywords()) {
2302 $may_edit_keywords = (
$blpg > 0 &&
2304 $a_list_cmd !=
"preview" &&
2305 $a_list_cmd !=
"gethtml" &&
2308 if ($keywords || $may_edit_keywords) {
2310 $keywords = $this->lng->txt(
"blog_no_keywords");
2313 $blocks[$order[
"keywords"]] = array(
2314 $this->lng->txt(
"blog_keywords"),
2317 ? array($cmd, $this->lng->txt(
"blog_edit_keywords"))
2324 if (!$a_link_template) {
2326 if ($this->id_type == self::REPOSITORY_NODE_ID &&
2327 $this->object->hasAuthors()) {
2330 $blocks[$order[
"authors"]] = array($this->lng->txt(
"blog_authors"), $authors);
2335 if ($this->object->hasRSS() &&
2337 $a_list_cmd ==
"preview") {
2340 if ($this->id_type != self::WORKSPACE_NODE_ID) {
2343 $url = ILIAS_HTTP_PATH .
"/feed.php?blog_id=" . $blog_id .
2344 "&client_id=" . rawurlencode(
CLIENT_ID);
2350 if (
sizeof($blocks)) {
2353 $ui_factory = $DIC->ui()->factory();
2354 $ui_renderer = $DIC->ui()->renderer();
2357 foreach ($blocks as $block) {
2360 $content = $block[1];
2362 $secondary_panel = $ui_factory->panel()->secondary()->legacy($title, $ui_factory->legacy($content));
2364 if (isset($block[2]) && is_array($block[2])) {
2365 $link = $ui_factory->button()->shy($block[2][1], $block[2][0]);
2366 $secondary_panel = $secondary_panel->withFooter($link);
2369 $wtpl->setCurrentBlock(
"block_bl");
2370 $wtpl->setVariable(
"BLOCK", $ui_renderer->render($secondary_panel));
2371 $wtpl->parseCurrentBlock();
2375 return $wtpl->get();
2387 $keywords = array();
2388 if ($a_posting_id) {
2394 foreach (
$items as $item) {
2406 foreach ($keywords as
$keyword => $counter) {
2407 $tmp[] = array(
"keyword" =>
$keyword,
"counter" => $counter);
2411 $keywords = array();
2412 foreach ($tmp as $item) {
2413 $keywords[$item[
"keyword"]] = $item[
"counter"];
2427 if (
$format[1] ==
"comments" || $a_include_comments) {
2428 $a_include_comments =
true;
2429 $type =
"html_comments";
2436 $subdir = $this->
object->getType() .
"_" . $this->
object->getId();
2438 $blog_export = new \ILIAS\Blog\Export\BlogHtmlExport($this, $exp_dir, $subdir);
2439 $blog_export->includeComments($a_include_comments);
2440 return $blog_export->exportHTML();
2450 $this->disable_notes = (bool) $a_value;
2458 if ($a_cmd ==
"preview" || $a_cmd ==
"previewEmbedded" || $a_cmd ==
"previewFullscreen" || $this->prvm) {
2462 $ilCtrl->setParameter($this,
"prvm",
"fsc");
2466 $ilCtrl->setParameter($this,
"prvm",
"");
2470 return parent::addHeaderAction();
2478 if (!$this->obj_id) {
2481 $sub_type = $sub_id = null;
2482 if ($this->blpg > 0) {
2487 $lg = parent::initHeaderAction($sub_type, $sub_id);
2491 $lg->enableComments(
false);
2492 $lg->enableNotes(
false);
2494 if ($a_is_preview) {
2495 if ($this->blpg > 0) {
2496 if (($this->object->getNotesStatus() && !$this->disable_notes)) {
2497 $lg->enableComments(
true);
2499 $lg->enableNotes(
true);
2501 $lg->enableTags(
false);
2503 if (!$this->prtf_embed) {
2505 $ilCtrl->setParameter($this,
"ntf", 1);
2506 $link = $ilCtrl->getLinkTarget($this,
"setNotification");
2507 $ilCtrl->setParameter($this,
"ntf",
"");
2509 $lg->addCustomCommand($link,
"blog_notification_toggle_off");
2515 $this->lng->txt(
"blog_notification_activated")
2518 $ilCtrl->setParameter($this,
"ntf", 2);
2519 $link = $ilCtrl->getLinkTarget($this,
"setNotification");
2520 $ilCtrl->setParameter($this,
"ntf",
"");
2521 $lg->addCustomCommand($link,
"blog_notification_toggle_on");
2526 $this->lng->txt(
"blog_notification_deactivated")
2533 $ilCtrl->setParameter($this,
"prvm",
"");
2535 $ilCtrl->setParameter($this,
"bmn",
"");
2536 $ilCtrl->setParameter($this,
"blpg",
"");
2537 $link = $ilCtrl->getLinkTarget($this,
"");
2538 $ilCtrl->setParameter($this,
"blpg", $sub_id);
2539 $ilCtrl->setParameter($this,
"bmn", $this->month);
2540 $lg->addCustomCommand($link,
"blog_edit");
2543 $link = $ilCtrl->getLinkTargetByClass(
"ilblogpostinggui",
"edit");
2544 $lg->addCustomCommand($link,
"blog_edit_posting");
2547 $ilCtrl->setParameter($this,
"prvm",
"fsc");
2550 $ilCtrl->setParameter($this,
"ntf",
"");
2561 switch ($this->ntf) {
2571 $ilCtrl->redirect($this,
"preview");
2585 if ($post->getBlogId() == $a_blog_id) {
2586 return $post->getTitle();
2597 foreach ($this->items as
$month => $postings) {
2598 foreach ($postings as $id => $item) {
2600 unset($this->items[
$month][$id]);
2601 } elseif ($this->object->hasApproval() && !$item[
"approved"]) {
2602 unset($this->items[
$month][$id]);
2605 if (!
sizeof($this->items[
$month])) {
2606 unset($this->items[$month]);
2610 if ($this->items && !isset($this->items[$this->month])) {
2611 $this->month = array_shift(array_keys($this->items));
2619 foreach (
$items as $item) {
2654 if ($this->id_type == self::WORKSPACE_NODE_ID) {
2668 if (!$a_author_id) {
2670 $a_author_id = $post->getAuthor();
2672 if (
$ilUser->getId() == $a_author_id) {
2691 if ($this->id_type == self::WORKSPACE_NODE_ID) {
2703 if (is_object($this->
object)) {
2704 $ilLocator->addItem($this->object->getTitle(), $this->ctrl->getLinkTarget($this,
"preview"),
"",
$this->node_id);
2710 if ($this->
isAdmin() && $this->apid > 0) {
2712 $post->setApproved(
true);
2713 $post->setBlogNodeId($this->node_id, ($this->id_type == self::WORKSPACE_NODE_ID));
2714 $post->update(
true,
false,
true,
"new");
2716 ilUtil::sendSuccess($this->lng->txt(
"settings_saved"),
true);
2719 $this->ctrl->redirect($this,
"render");
2739 $ilTabs->activateTab(
"contributors");
2741 $local_roles = $this->
object->getAllLocalRoles($this->node_id);
2748 'auto_complete_name' =>
$lng->txt(
'user'),
2749 'submit_name' =>
$lng->txt(
'add'),
2750 'add_search' =>
true,
2752 'user_type' => $local_roles
2757 $other_roles = $this->
object->getRolesWithContributeOrRedact($this->node_id);
2759 ilUtil::sendInfo(sprintf(
$lng->txt(
"blog_contribute_other_roles"), implode(
", ", $other_roles)));
2762 $tbl =
new ilContributorTableGUI($this,
"contributors", $this->object->getAllLocalRoles($this->node_id));
2764 $tpl->setContent($tbl->getHTML());
2777 if (!strlen(trim($user_login))) {
2781 $users = explode(
',', $user_login);
2783 $user_ids = array();
2784 foreach ($users as
$user) {
2792 $user_ids[] = $user_id;
2814 if (!count($a_user_ids) || !$a_user_type) {
2820 $local_roles = array_keys($this->object->getAllLocalRoles($this->node_id));
2821 if (!in_array($a_user_type, $local_roles)) {
2826 foreach ($a_user_ids as $user_id) {
2827 if (!
$rbacreview->isAssigned($user_id, $a_user_type)) {
2828 $rbacadmin->assignUser($a_user_type, $user_id);
2832 ilUtil::sendSuccess(
$lng->txt(
"settings_saved"),
true);
2833 $ilCtrl->redirect($this,
"contributors");
2843 if (!is_array($ids)) {
2845 $this->ctrl->redirect($this,
"contributors");
2849 $confirm->setHeaderText($this->lng->txt(
'blog_confirm_delete_contributors'));
2850 $confirm->setFormAction($this->ctrl->getFormAction($this,
'removeContributor'));
2851 $confirm->setConfirm($this->lng->txt(
'delete'),
'removeContributor');
2852 $confirm->setCancel($this->lng->txt(
'cancel'),
'contributors');
2854 foreach ($ids as $user_id) {
2862 $this->tpl->setContent($confirm->getHTML());
2876 if (!is_array($ids)) {
2878 $ilCtrl->redirect($this,
"contributors");
2882 $local_roles = array_keys($this->object->getAllLocalRoles($this->node_id));
2883 if (!$local_roles) {
2888 foreach ($ids as $user_id) {
2889 foreach ($local_roles as $role_id) {
2890 $rbacadmin->deassignUser($role_id, $user_id);
2894 ilUtil::sendSuccess(
$lng->txt(
"settings_saved"),
true);
2895 $this->ctrl->redirect($this,
"contributors");
2903 $post->setApproved(
false);
2904 $post->setActive(
false);
2905 $post->update(
true,
false,
false);
2907 ilUtil::sendSuccess($this->lng->txt(
"settings_saved"),
true);
2910 $this->ctrl->redirect($this,
"render");
2922 if ($a_tpl != null) {
2928 $ctpl->setCurrentBlock(
"ContentStyle");
2930 "LOCATION_CONTENT_STYLESHEET",
2933 $ctpl->parseCurrentBlock();
2940 $this->tabs_gui->activateTab(
"settings");
2944 $this->tpl->setContent($form->getHTML());
2951 $this->lng->loadLanguageModule(
"style");
2955 $fixed_style =
$ilSetting->get(
"fixed_content_style_id");
2956 $style_id = $this->
object->getStyleSheetId();
2958 if ($fixed_style > 0) {
2961 $this->lng->txt(
"global_fixed") .
")");
2962 $form->addItem($st);
2970 $st_styles[0] = $this->lng->txt(
"default");
2973 if ($style_id > 0) {
2978 $form->addItem($st);
2981 $form->addCommandButton(
"editStyle", $this->lng->txt(
"style_edit_style"));
2982 $form->addCommandButton(
"deleteStyle", $this->lng->txt(
"style_delete_style"));
2988 $this->lng->txt(
"style_current_style"),
2991 $style_sel->setOptions($st_styles);
2992 $style_sel->setValue($style_id);
2993 $form->addItem($style_sel);
2995 $form->addCommandButton(
"saveStyleSettings", $this->lng->txt(
"save"));
2996 $form->addCommandButton(
"createStyle", $this->lng->txt(
"sty_create_ind_style"));
3000 $form->setTitle($this->lng->txt(
"blog_style"));
3001 $form->setFormAction($this->ctrl->getFormAction($this));
3008 $this->ctrl->redirectByClass(
"ilobjstylesheetgui",
"create");
3013 $this->ctrl->redirectByClass(
"ilobjstylesheetgui",
"edit");
3018 $this->ctrl->redirectByClass(
"ilobjstylesheetgui",
"delete");
3025 if (
$ilSetting->get(
"fixed_content_style_id") <= 0 &&
3027 || $this->object->getStyleSheetId() == 0)) {
3028 $this->
object->setStyleSheetId((
int)
$_POST[
"style_id"]);
3029 $this->
object->update();
3031 ilUtil::sendSuccess($this->lng->txt(
"msg_obj_modified"),
true);
3033 $this->ctrl->redirect($this,
"editStyleProperties");
3045 $ilCtrl = $DIC->ctrl();
3048 if (substr($a_target, -3) ==
"wsp") {
3049 $id = explode(
"_", $a_target);
3051 $ilCtrl->setTargetScript(
"ilias.php");
3052 $ilCtrl->initBaseClass(
"ilSharedResourceGUI");
3053 $ilCtrl->setParameterByClass(
"ilSharedResourceGUI",
"wsp_id", $id[0]);
3055 if (
sizeof($id) >= 2) {
3056 if (is_numeric($id[1])) {
3057 $ilCtrl->setParameterByClass(
"ilSharedResourceGUI",
"gtp", $id[1]);
3059 $ilCtrl->setParameterByClass(
"ilSharedResourceGUI",
"kwd", $id[1]);
3061 if ($id[2] ==
"edit") {
3062 $ilCtrl->setParameterByClass(
"ilSharedResourceGUI",
"edt", $id[2]);
3065 $ilCtrl->redirectByClass(
"ilSharedResourceGUI",
"");
3067 $id = explode(
"_", $a_target);
3069 $ilCtrl->setTargetScript(
"ilias.php");
3070 $ilCtrl->initBaseClass(
"ilRepositoryGUI");
3071 $ilCtrl->setParameterByClass(
"ilRepositoryGUI",
"ref_id", $id[0]);
3073 if (
sizeof($id) >= 2) {
3074 if (is_numeric($id[1])) {
3075 $ilCtrl->setParameterByClass(
"ilRepositoryGUI",
"gtp", $id[1]);
3077 $ilCtrl->setParameterByClass(
"ilRepositoryGUI",
"kwd", $id[1]);
3080 if ($id[2] ==
"edit") {
3081 $ilCtrl->setParameterByClass(
"ilRepositoryGUI",
"edt", $id[2]);
3084 if (
$access->checkAccess(
"read",
"", $id[0])) {
3085 $ilCtrl->redirectByClass(
"ilRepositoryGUI",
"preview");
3087 if (
$access->checkAccess(
"visible",
"", $id[0])) {
3088 $ilCtrl->redirectByClass(
"ilRepositoryGUI",
"infoScreen");
3105 $this->ctrl->redirectByClass(ilExportGUI::class);
static _createExportDirectory($a_obj_id, $a_export_type="xml", $a_obj_type="")
static getContentStylePath($a_style_id, $add_random=true, $add_token=true)
get content style path
static sortArray( $array, $a_array_sortby, $a_array_sortorder=0, $a_numeric=false, $a_keep_keys=false)
sortArray
static _lookupName($a_user_id)
lookup user name
getLatestPosting($a_items)
Get previous posting.
filterInactivePostings()
Filter inactive items from items list.
static _recordReadEvent( $a_type, $a_ref_id, $obj_id, $usr_id, $isCatchupWriteEvents=true, $a_ext_rc=false, $a_ext_time=false)
Records a read event and catches up with write events.
const ABSTRACT_DEFAULT_IMAGE_WIDTH
This class represents an option in a radio group.
addUserFromAutoComplete()
Autocomplete submit.
checkPermission($a_perm, $a_cmd="", $a_type="", $a_ref_id=null)
static hasNotification($type, $user_id, $id)
Check notification status for object and user.
disableNotes($a_value=false)
buildExportFile($a_include_comments=false)
Build export file.
mayContribute()
Check if user may contribute at all.
renderFullscreenHeader($a_tpl, $a_user_id, $a_export=false)
Render banner, user name.
static lookupBlogId($a_posting_id)
Lookup blog id.
getNextPosting($a_items)
Get next posting.
setValue($a_value)
Set Value.
preview()
Render fullscreen presentation.
checkPermissionBool($a_perm, $a_cmd="", $a_type="", $a_node_id=null)
Check permission.
New implementation of ilObjectGUI.
GUI class for the workflow of copying objects.
static _goto($a_target)
Deep link.
static lookupSubObjectTitle($a_blog_id, $a_posting_id)
Get title for blog posting (used in ilNotesGUI)
Class ilBlogPosting GUI class.
getAccessHandler()
Get access handler.
static _getStaticLink( $a_ref_id, $a_type='', $a_fallback_goto=true, $append="")
Get static link.
getPermanentLinkWidget($a_append=null, $a_center=false)
initStylePropertiesForm()
getPreviousMonth($a_items)
Get next month.
static hasOptOut($obj_id)
Is opt out (disable notification) allowed?
exportWithComments()
Handle export choice.
static _lookupId($a_user_str)
Lookup id by login.
static _lookupTitle($a_id)
lookup object title
static _getNotesOfObject( $a_rep_obj_id, $a_obj_id, $a_obj_type, $a_type=IL_NOTE_PRIVATE, $a_incl_sub=false, $a_filter="", $a_all_public="y", $a_repository_mode=true, $a_sort_ascending=false, $a_news_id=0)
get all notes related to a specific object
static _getStandardStyles( $a_exclude_default_style=false, $a_include_deactivated=false, $a_scope=0)
Get standard styles.
static getKeywords($a_obj_id, $a_posting_id)
const ABSTRACT_DEFAULT_SHORTEN_LENGTH
setInfo($a_info)
Set Info.
static formatDate(ilDateTime $date, $a_skip_day=false, $a_include_wd=false, $include_seconds=false)
Format a date public.
updateCustom(ilPropertyFormGUI $a_form)
static _numericMonthToString($a_month, $a_long=true)
numeric month to string
initEditCustomForm(ilPropertyFormGUI $a_form)
filterItemsByKeyWord(array $a_items, $a_keyword)
static _lookupStandard($a_id)
Lookup standard flag.
renderNavigationByKeywords( $a_list_cmd="render", $a_show_inactive=false, $a_link_template=false, $a_blpg=0)
Build navigation by keywords block.
getEditFormCustomValues(array &$a_values)
static sendInfo($a_info="", $a_keep=false)
Send Info Message to Screen.
static getAllPostings($a_blog_id, $a_limit=1000, $a_offset=0)
Get all postings of blog.
renderNavigationByDate(array $a_items, $a_list_cmd="render", $a_posting_cmd="preview", $a_link_template=null, $a_show_inactive=false, $a_blpg=0)
Build navigation by date block.
Export User Interface Class.
getListItems($a_show_inactive=false)
Filter blog postings by month, keyword or author.
buildEmbedded($a_content, $a_nav)
Combine content (list/posting) and navigation to html chunk.
renderList(array $items, $a_cmd="preview", $a_link_template=null, $a_show_inactive=false, $a_export_directory=null)
Build posting month list.
static exists($a_blog_id, $a_posting_id)
Checks whether a posting exists.
getNextMonth($a_items)
Get next month.
__construct($a_id=0, $a_id_type=self::REPOSITORY_NODE_ID, $a_parent_node_id=0)
foreach($_POST as $key=> $value) $res
triggerAssignmentTool()
Trigger assignment tool.
renderFullScreen($a_content, $a_navigation)
Build fullscreen context.
static _lookupActive($a_id, $a_parent_type, $a_check_scheduled_activation=false, $a_lang="-")
lookup activation status
const ABSTRACT_DEFAULT_IMAGE_HEIGHT
buildPostingList($a_obj_id)
Gather all blog postings.
confirmRemoveContributor()
Used in ilContributorTableGUI.
static getImagePath($img, $module_path="", $mode="output", $offline=false)
get image path (for images located in a template directory)
static getSnippet($a_id, $a_truncate=false, $a_truncate_length=500, $a_truncate_sign="...", $a_include_picture=false, $a_picture_width=144, $a_picture_height=144, $a_export_directory=null)
Get first text paragraph of page.
omitLocator($a_omit=true)
static getEffectiveContentStyleId($a_style_id, $a_type="")
Get effective Style Id.
static setNotification($type, $user_id, $id, $status=true)
Set notification status for object and user.
static stripSlashesRecursive($a_data, $a_strip_html=true, $a_allow="")
Strip slashes from array and sub-arrays.
static _getPersonalPicturePath( $a_usr_id, $a_size="small", $a_force_pic=false, $a_prevent_no_photo_image=false, $html_export=false)
Get path to personal picture.
render()
Render object context.
static _lookupOwner($a_id)
lookup object owner
static stripSlashes($a_str, $a_strip_html=true, $a_allow="")
strip slashes if magic qoutes is enabled
static getNamePresentation( $a_user_id, $a_user_image=false, $a_profile_link=false, $a_profile_back_link="", $a_force_first_lastname=false, $a_omit_login=false, $a_sortable=true, $a_return_data_array=false, $a_ctrl_path="ilpublicuserprofilegui")
Default behaviour is:
static signFile($path_to_file)
static getRelevanceClass($cnt, $max)
Get style class for tag relevance.
addContributor($a_user_ids=array(), $a_user_type=null)
Centralized method to add contributors.
static sendFailure($a_info="", $a_keep=false)
Send Failure Message to Screen.
createPosting()
Create new posting.
infoScreenForward()
show information screen
export($a_with_comments=false)
Build and deliver export file.
buildExportLink($a_template, $a_type, $a_id)
Build export link.
removeContributor()
Used in ilContributorTableGUI.
getKeywords($a_show_inactive, $a_posting_id=null)
Get keywords for single posting or complete blog.
renderNavigationByAuthors(array $a_items, $a_list_cmd="render", $a_show_inactive=false)
setContentStyleSheet($a_tpl=null)
infoScreen()
this one is called from the info button in the repository not very nice to set cmdClass/Cmd manually...
isAdmin()
Check if user has admin access (approve, may edit & deactivate all postings)
This class represents a non editable value in a property form.
Interface for gui classes (e.g ilLuceneSearchGUI) that offer add/remove to/from desktop.
Class ilObjStyleSheetGUI.
setSettingsSubTabs($a_active)
__construct(Container $dic, ilPlugin $plugin)
Handles general notification settings, see e.g.
insertHeaderAction($a_list_gui)
Insert header action into main template.
initCreationForms($a_new_type)
initHeaderAction($sub_type=null, $sub_id=null, $a_is_preview=false)
static _getExportDirectory($a_obj_id, $a_type="xml", $a_obj_type="", $a_entity="")
Get export directory for an repository object.
prepareOutput($a_show_subobjects=true)
getPreviousPosting($a_items)
Get previous posting.
New PermissionGUI (extends from old ilPermission2GUI) RBAC related output.
static fillAutoCompleteToolbar($parent_object, ilToolbarGUI $toolbar=null, $a_options=array(), $a_sticky=false)
fill toolbar with
getObjectService()
Get object service.
getLatestMonth($a_items)
Get next month.
List all contributors members of a blog.
static isCommentsExportPossible($blog_id)
Is comments export possible?
addHeaderActionForCommand($a_cmd)
afterSave(ilObject $a_new_object)
static getInstanceFromAjaxCall()
(Re-)Build instance from ajax call
renderToolbarNavigation($a_items, $single_posting=false)
Toolbar navigation.
static deliverFile( $a_file, $a_filename, $a_mime='', $isInline=false, $removeAfterDelivery=false, $a_exit_after=true)
deliver file for download via browser.
Confirmation screen class.
renderNavigation($a_list_cmd="render", $a_posting_cmd="preview", $a_link_template=null, $a_show_inactive=false, $a_blpg=0)
Build navigation blocks.
getHTML()
Return embeddable HTML chunk.
mayEditPosting($a_posting_id, $a_author_id=null)
Check if user may edit posting.