4 include_once(
"./Services/COPage/classes/class.ilPageObjectGUI.php");
5 include_once(
"./Modules/Blog/classes/class.ilBlogPosting.php");
36 function __construct($a_node_id, $a_access_handler = null, $a_id = 0, $a_old_nr = 0, $a_enable_public_notes =
true, $a_may_contribute =
true, $a_style_sheet_id = 0)
40 $lng->loadLanguageModule(
"blog");
42 $this->node_id = $a_node_id;
43 $this->access_handler = $a_access_handler;
44 $this->enable_public_notes = (bool)$a_enable_public_notes;
46 parent::__construct(
"blp", $a_id, $a_old_nr);
52 $this->may_contribute = (bool)$a_may_contribute;
56 include_once(
"./Services/Style/classes/class.ilObjStyleSheet.php");
58 $tpl->setCurrentBlock(
"SyntaxStyle");
59 $tpl->setVariable(
"LOCATION_SYNTAX_STYLESHEET",
61 $tpl->parseCurrentBlock();
64 $tpl->setCurrentBlock(
"ContentStyle");
65 $tpl->setVariable(
"LOCATION_CONTENT_STYLESHEET",
67 $tpl->parseCurrentBlock();
80 $next_class = $ilCtrl->getNextClass($this);
81 $cmd = $ilCtrl->getCmd();
84 $ilCtrl->setParameter($this,
"blpg", $posting->getId());
104 case "ilpageobjectgui":
105 die(
"Deprecated. Blog Posting gui forwarding to ilpageobject");
114 $posting->getTitle());
116 $this->lng->txt(
"obj_blog"));
118 $ilLocator->addItem($posting->getTitle(),
119 $ilCtrl->getLinkTarget($this,
"preview"));
121 return parent::executeCommand();
153 if($a_cmd ==
"contribute")
157 return $this->access_handler->checkAccess($a_cmd,
"", $this->node_id);
169 $wtpl =
new ilTemplate(
"tpl.blog_page_view_main_column.html",
170 true,
true,
"Modules/Blog");
195 $callback = array($this,
"observeNoteAction");
199 $may_delete_comments = ($this->
checkAccess(
"contribute") &&
200 $ilSetting->get(
"comments_del_tutor", 1));
203 false, $this->enable_public_notes, $may_delete_comments, $callback));
207 if($a_mode !=
"embedded")
209 $append = (
$_GET[
"blpg"] !=
"")
216 $tpl->setPermanentLink(
"blog", $this->node_id, $append);
219 $wtpl->setVariable(
"PAGE", parent::preview());
221 $tpl->setLoginTargetPar(
"blog_".$this->node_id.$append);
235 return $this->
preview(
"embedded");
245 $this->add_date =
true;
246 return $this->
preview(
"fullscreen");
264 return parent::showPage();
274 return stristr(get_class($this->access_handler),
"workspace");
295 include_once
"Services/User/classes/class.ilUserUtil.php";
303 $prefix =
"<div class=\"il_BlockInfo\" style=\"text-align:right\">".
304 $author.ilDatePresentation::formatDate($this->
getBlogPosting()->getCreated()).
308 $a_output = $prefix.$a_output;
325 parent::getTabs($a_activate);
337 include_once(
"./Services/Utilities/classes/class.ilConfirmationGUI.php");
339 $confirmation_gui->setFormAction($ilCtrl->getFormAction($this));
340 $confirmation_gui->setHeaderText($lng->txt(
"blog_posting_deletion_confirmation"));
341 $confirmation_gui->setCancel($lng->txt(
"cancel"),
"cancelBlogPostingDeletion");
342 $confirmation_gui->setConfirm($lng->txt(
"delete"),
"confirmBlogPostingDeletion");
344 $dtpl =
new ilTemplate(
"tpl.blog_posting_deletion_confirmation.html",
true,
345 true,
"Modules/Blog");
347 $dtpl->setVariable(
"PAGE_TITLE", $this->
getBlogPosting()->getTitle());
350 include_once(
"./Services/Notes/classes/class.ilNote.php");
353 $dtpl->setVariable(
"TXT_NUMBER_USERS_NOTES_OR_COMMENTS",
354 $lng->txt(
"blog_number_users_notes_or_comments"));
355 $dtpl->setVariable(
"TXT_NR_NOTES_COMMENTS", $cnt_note_users);
357 $confirmation_gui->addItem(
"",
"", $dtpl->get());
359 $tpl->setContent($confirmation_gui->getHTML());
370 $ilCtrl->redirect($this,
"preview");
384 foreach($md_section->getKeywordIds() as $id)
386 $md_key = $md_section->getKeyword($id);
394 $ilCtrl->setParameterByClass(
"ilobjbloggui",
"blpg",
"");
395 $ilCtrl->redirectByClass(
"ilobjbloggui",
"render");
400 global
$tpl, $ilTabs;
402 $ilTabs->activateTab(
"edit");
409 $tpl->setContent($a_form->getHTML());
417 if($form->checkInput())
420 $page->setTitle($form->getInput(
"title"));
424 $ilCtrl->redirect($this,
"preview");
427 $form->setValuesByPost();
435 include_once(
'Services/Form/classes/class.ilPropertyFormGUI.php');
437 $form->setFormAction($ilCtrl->getFormAction($this));
438 $form->setTitle($lng->txt(
'blog_rename_posting'));
442 $form->addItem($title);
446 $form->addCommandButton(
'updateTitle', $lng->txt(
'save'));
447 $form->addCommandButton(
'preview', $lng->txt(
'cancel'));
454 global
$tpl, $ilTabs;
456 $ilTabs->activateTab(
"edit");
463 $tpl->setContent($a_form->getHTML());
471 if($form->checkInput())
473 $dt = $form->getInput(
"date");
477 $page->setCreated($dt);
481 $ilCtrl->redirect($this,
"preview");
484 $form->setValuesByPost();
492 include_once(
'Services/Form/classes/class.ilPropertyFormGUI.php');
494 $form->setFormAction($ilCtrl->getFormAction($this));
495 $form->setTitle($lng->txt(
'blog_edit_date'));
499 $date->setShowTime(
true);
500 $date->setInfo($lng->txt(
'blog_edit_date_info'));
501 $form->addItem($date);
505 $form->addCommandButton(
'updateDate', $lng->txt(
'save'));
506 $form->addCommandButton(
'preview', $lng->txt(
'cancel'));
514 include_once
"Services/Notes/classes/class.ilNote.php";
515 $note =
new ilNote($a_note_id);
516 $note = $note->getText();
518 include_once
"Modules/Blog/classes/class.ilObjBlog.php";
526 return array(
"deactivatePage" => $lng->txt(
"blog_toggle_draft"),
527 "activatePage" => $lng->txt(
"blog_toggle_final"));
542 $this->ctrl->redirect($this,
"edit");
546 $this->ctrl->setParameterByClass(
"ilobjbloggui",
"blpg",
"");
547 $this->ctrl->redirectByClass(
"ilobjbloggui",
"");
559 include_once
"Modules/Blog/classes/class.ilObjBlog.php";
566 $this->ctrl->redirect($this,
"edit");
570 $this->ctrl->setParameterByClass(
"ilobjbloggui",
"blpg",
"");
571 $this->ctrl->redirectByClass(
"ilobjbloggui",
"");
577 global $ilTabs,
$tpl;
584 $ilTabs->activateTab(
"pg");
591 $tpl->setContent($a_form->getHTML());
598 include_once(
"Services/Form/classes/class.ilPropertyFormGUI.php");
600 $form->setFormAction($this->ctrl->getFormAction($this,
"saveKeywordsForm"));
601 $form->setTitle($this->lng->txt(
"blog_edit_keywords"));
605 $txt->setMulti(
true);
606 $txt->setDataSource($this->ctrl->getLinkTarget($this,
"keywordAutocomplete",
"",
true));
607 $txt->setMaxLength(200);
609 $txt->setInfo($this->lng->txt(
"blog_keywords_info"));
610 $form->addItem(
$txt);
615 foreach($ids = $md_section->getKeywordIds() as $id)
617 $md_key = $md_section->getKeyword($id);
618 if (trim($md_key->getKeyword()) !=
"")
620 $keywords[$md_key->getKeywordLanguageCode()][]
621 = $md_key->getKeyword();
626 $ulang = $ilUser->getLanguage();
627 if($keywords[$ulang])
629 asort($keywords[$ulang]);
630 $txt->setValue($keywords[$ulang]);
643 $other = array_unique($other);
644 sort($other, SORT_LOCALE_STRING);
645 if(is_array($keywords[$ulang]))
647 $other = array_diff($other, $keywords[$ulang]);
652 foreach($other as $item)
654 $html .=
'<span class="ilTag">'.$item.
'</span>';
657 $info->
setInfo($this->lng->txt(
"blog_keywords_other_info"));
658 $info->setValue($html);
659 $form->addItem($info);
662 $form->addCommandButton(
"saveKeywordsForm", $this->lng->txt(
"save"));
663 $form->addCommandButton(
"preview", $this->lng->txt(
"cancel"));
674 return $this->access_handler->getTree()->lookupObjectId($this->node_id);
686 if($form->checkInput())
688 $keywords = $form->getInput(
"keywords");
689 if(is_array($keywords))
694 $this->ctrl->redirect($this,
"preview");
697 $form->setValuesByPost();
703 $force_all = (bool)
$_GET[
"fetchall"];
705 include_once(
"./Services/MetaData/classes/class.ilMDKeyword.php");
709 include_once(
"./Services/Search/classes/class.ilSearchSettings.php");
717 sizeof(
$result[
"items"]) >= $cut)
722 $entry =
new stdClass();
728 $result[
"hasMoreResults"] = $has_more;
730 include_once
'./Services/JSON/classes/class.ilJsonUtil.php';
747 static function 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)
749 $bpgui =
new self(0, null, $a_id);
752 if($a_include_picture)
754 $img = $bpgui->getFirstMediaObjectAsTag($a_picture_width, $a_picture_height, $a_export_directory);
757 $bpgui->setRawPageContent(
true);
758 $bpgui->setAbstractOnly(
true);
761 $bpgui->setFileDownloadLink(
".");
762 $bpgui->setFullscreenLink(
".");
763 $bpgui->setSourcecodeDownloadScript(
".");
766 $page = $bpgui->showPage();
775 $page =
'<div>'.$img.$page.
'</div><div style="clear:both;"></div>';
783 $this->obj->buildDom();
784 $mob_ids = $this->obj->collectMediaObjects();
787 require_once(
"./Services/MediaObjects/classes/class.ilObjMediaObject.php");
788 foreach($mob_ids as $mob_id)
791 $mob_item = $mob_obj->getMediaItem(
"Standard");
792 if(stristr($mob_item->getFormat(),
"image"))
794 $mob_size = $mob_item->getOriginalSize();
795 if($mob_size[
"width"] >= $a_width ||
796 $mob_size[
"height"] >= $a_height)
798 if(!$a_export_directory)
805 $mob_dir =
"./mobs/mm_".$mob_obj->getId();
807 $mob_res = self::parseImage($mob_size[
"width"],
808 $mob_size[
"height"], $a_width, $a_height);
811 ' src="'.$mob_dir.
"/".$mob_item->getLocation().
'"'.
812 ' width="'.$mob_res[0].
'"'.
813 ' height="'.$mob_res[1].
'"'.
814 ' class="ilBlogListItemSnippetPreviewImage ilFloatLeft noMirror"'.
822 protected static function parseImage($src_width, $src_height, $tgt_width, $tgt_height)
824 $ratio_width = $ratio_height = 1;
825 if($src_width > $tgt_width)
827 $ratio_width = $tgt_width / $src_width;
829 if($src_height > $tgt_height)
831 $ratio_height = $tgt_height / $src_height;
833 $shrink_ratio = min($ratio_width, $ratio_height);
836 (
int)round($src_width*$shrink_ratio),
837 (
int)round($src_height*$shrink_ratio)
static sendSuccess($a_info="", $a_keep=false)
Send Success Message to Screen.
previewEmbedded()
Needed for portfolio/blog handling.
getPageObject()
Get Page Object.
setTemplateOutput($a_output=true)
observeNoteAction($a_blog_id, $a_posting_id, $a_type, $a_action, $a_note_id)
getTabs($a_activate="")
Get tabs.
Class ilBlogPosting GUI class.
setInfo($a_info)
Set Information Text.
__construct($a_node_id, $a_access_handler=null, $a_id=0, $a_old_nr=0, $a_enable_public_notes=true, $a_may_contribute=true, $a_style_sheet_id=0)
Constructor.
static setUseRelativeDates($a_status)
set use relative dates
static _lookupTitle($a_id)
lookup object title
setEnableEditing($a_enableediting)
Set Enable Editing.
static getKeywords($a_obj_id, $a_posting_id)
postOutputProcessing($a_output)
Finalizing output processing.
setPageObject($a_pg_obj)
Set Page Object.
getSyntaxStylePath()
get syntax style path
static useRelativeDates()
check if relative dates are used
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)
Default behaviour is:
static getAllPostings($a_blog_id, $a_limit=1000, $a_offset=0)
Get all postings of blog.
getFirstMediaObjectAsTag($a_width=144, $a_height=144, $a_export_directory=null)
previewFullscreen()
Needed for portfolio/blog handling.
static encode($mixed, $suppress_native=false)
static getUserCount($a_rep_obj_id, $a_obj_id, $a_type)
How many users have attached a note/comment to a given object?
setBlogPosting(ilBlogPosting $a_posting)
Set blog posting.
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.
getBlogPosting()
Get blog posting.
static _lookupObjId($a_id)
special template class to simplify handling of ITX/PEAR
This class represents a text property in a property form.
setPresentationTitle($a_title="")
static stripSlashes($a_str, $a_strip_html=true, $a_allow="")
strip slashes if magic qoutes is enabled
getAbstractOnly()
Get abstract only.
preview($a_mode=null)
Preview blog posting.
confirmBlogPostingDeletion()
Delete the blog posting.
static truncateHTML($a_text, $a_length=100, $a_ending='...', $a_exact=false, $a_consider_html=true)
Truncate (html) string.
showPage()
Embedded posting in portfolio.
static _getMatchingKeywords($a_query, $a_type, $a_rbac_id=0)
Search for keywords.
setStyleId($a_styleid)
Set Style Id.
static parseImage($src_width, $src_height, $tgt_width, $tgt_height)
deactivatePage($a_to_list=false)
This class represents a non editable value in a property form.
getContentStylePath($a_style_id)
get content style path
isInWorkspace()
Is current page part of personal workspace blog?
editKeywords(ilPropertyFormGUI $a_form=null)
checkAccess($a_cmd)
Centralized access management.
static sendNotification($a_action, $a_in_wsp, $a_blog_node_id, $a_posting_id, $a_comment=null)
executeCommand()
execute command
getNotesHTML($a_content_object=null, $a_enable_private_notes=true, $a_enable_public_notes=false, $a_enable_notes_deletion=false, $a_callback=null)
Get html for public and/or private notes.
activatePage($a_to_list=false)
deleteBlogPostingConfirmationScreen()
Delete blog posting confirmation screen.
cancelBlogPostingDeletion()
Cancel blog posting deletion.
Confirmation screen class.