4 include_once(
'./Services/Object/classes/class.ilObject2GUI.php');
5 include_once(
'./Modules/Portfolio/classes/class.ilObjPortfolio.php');
6 include_once(
'./Modules/Portfolio/classes/class.ilPortfolioPage.php');
24 public function __construct($a_id = 0, $a_id_type = self::REPOSITORY_NODE_ID, $a_parent_node_id = 0)
28 parent::__construct($a_id, $a_id_type, $a_parent_node_id);
30 $this->user_id = $ilUser->getId();
32 $this->lng->loadLanguageModule(
"prtf");
33 $this->lng->loadLanguageModule(
"user");
42 $ilLocator->addItem($this->object->getTitle(),
43 $this->ctrl->getLinkTarget($this,
"view"));
49 $title = $page->getTitle();
55 $ilLocator->addItem($title,
56 $this->ctrl->getLinkTargetByClass($this->getPageGUIClassName(),
"edit"));
67 $this->ctrl->redirect($this,
"view");
71 $this->page_mode =
"edit";
72 $this->ctrl->setParameter($this,
"ppage", $this->page_id);
79 $this->page_mode =
"preview";
80 $this->ctrl->setParameter($this,
"user_page", $this->page_id);
87 $this->tabs_gui->clearTargets();
88 $this->tabs_gui->setBackTarget($this->lng->txt(
"back"),
89 $this->ctrl->getLinkTarget($this,
"view"));
93 $this->ctrl->redirect($this,
"view");
100 $this->object->getStyleSheetId(), $this->
getType()));
102 $ret = $this->ctrl->forwardCommand($page_gui);
107 if($this->page_mode ==
"preview")
113 $this->
preview(
false,
$ret, ($a_cmd !=
"previewEmbedded"));
124 $this->tpl->setContent(
$ret);
136 $this->additional = $a_additional;
156 $this->perma_link = $a_link;
167 $this->tabs_gui->addSubTab(
"properties",
168 $this->lng->txt($this->getType().
"_properties"),
169 $this->ctrl->getLinkTarget($this,
'edit'));
171 $this->tabs_gui->addSubTab(
"style",
172 $this->lng->txt(
"obj_sty"),
173 $this->ctrl->getLinkTarget($this,
'editStyleProperties'));
175 $this->tabs_gui->activateSubTab($a_active);
183 $comments =
new ilCheckboxInputGUI($this->lng->txt(
"prtf_public_comments"),
"comments");
191 if($prfa_set->get(
"banner"))
193 include_once
"Services/Form/classes/class.ilFileInputGUI.php";
196 $dimensions =
" (".$prfa_set->get(
"banner_width").
"x".
197 $prfa_set->get(
"banner_height").
")";
203 $file = $this->
object->getImageFullPath(
true);
219 $a_values[
"comments"] = $this->
object->hasPublicComments();
220 $a_values[
"ppic"] = $this->
object->hasProfilePicture();
221 $a_values[
"bg_color"] = $this->
object->getBackgroundColor();
222 $a_values[
"font_color"] = $this->
object->getFontColor();
227 $this->
object->setPublicComments($a_form->
getInput(
"comments"));
228 $this->
object->setProfilePicture($a_form->
getInput(
"ppic"));
229 $this->
object->setBackgroundColor($a_form->
getInput(
"bg_color"));
230 $this->
object->setFontcolor($a_form->
getInput(
"font_color"));
234 if($_FILES[
"banner"][
"tmp_name"])
236 $this->
object->uploadImage($_FILES[
"banner"]);
238 else if($prfa_set->get(
'banner') and $a_form->
getItemByPostVar(
"banner")->getDeletionFlag())
240 $this->
object->deleteImage();
249 abstract protected function getPageInstance($a_page_id = null, $a_portfolio_id = null);
264 $this->ctrl->redirect($this,
"infoScreen");
267 $this->tabs_gui->activateTab(
"pages");
269 $ilToolbar->addButton($this->lng->txt(
"prtf_add_page"),
270 $this->ctrl->getLinkTarget($this,
"addPage"));
272 if(!$ilSetting->get(
'disable_wsp_blogs'))
274 $ilToolbar->addButton($this->lng->txt(
"prtf_add_blog"),
275 $this->ctrl->getLinkTarget($this,
"addBlog"));
278 $ilToolbar->addSeparator();
280 $ilToolbar->addButton($this->lng->txt(
"export_html"),
281 $this->ctrl->getLinkTarget($this,
"export"));
283 include_once
"Modules/Portfolio/classes/class.ilPortfolioPageTableGUI.php";
287 include_once
"Modules/Exercise/classes/class.ilObjExercise.php";
292 foreach($exercises as $exercise)
298 if(!$tree->isSaved($ref_id))
306 $part = $this->getExerciseInfo($exercise[
"ass_id"], $table->dataExists());
319 $this->tpl->setContent($table->getHTML());
329 $this->tabs_gui->clearTargets();
330 $this->tabs_gui->setBackTarget($this->lng->txt(
"back"),
331 $this->ctrl->getLinkTarget($this,
"view"));
333 $ilHelp->setScreenIdComponent(
"prtf");
334 $ilHelp->setScreenId(
"add_page");
338 $this->tpl->setContent($form->getHTML());
349 include_once(
"Services/Form/classes/class.ilPropertyFormGUI.php");
351 $form->setFormAction($this->ctrl->getFormAction($this));
356 $ti->setRequired(
true);
360 if ($a_mode ==
"create")
362 include_once
"Services/Style/classes/class.ilPageLayout.php";
368 $form->addItem($use_template);
371 $use_template->addOption($opt);
373 foreach ($templates as $templ)
375 $templ->readObject();
377 $opt =
new ilRadioOption($templ->getTitle().$templ->getPreview(), $templ->getId());
378 $use_template->addOption($opt);
382 $form->
setTitle($this->lng->txt(
"prtf_add_page").
": ".
383 $this->
object->getTitle());
384 $form->addCommandButton(
"savePage", $this->lng->txt(
"save"));
385 $form->addCommandButton(
"view", $this->lng->txt(
"cancel"));
407 include_once(
"Modules/Portfolio/classes/class.ilPortfolioPage.php");
410 $page->setTitle($form->getInput(
"title"));
413 $layout_id = $form->getInput(
"tmpl");
416 include_once(
"./Services/Style/classes/class.ilPageLayout.php");
418 $page->setXMLContent($layout_obj->getXMLContent());
424 $this->ctrl->redirect($this,
"view");
427 $this->tabs_gui->clearTargets();
428 $this->tabs_gui->setBackTarget($this->lng->txt(
"back"),
429 $this->ctrl->getLinkTarget($this,
"view"));
431 $form->setValuesByPost();
432 $this->tpl->setContent($form->getHtml());
442 $this->tabs_gui->clearTargets();
443 $this->tabs_gui->setBackTarget($this->lng->txt(
"back"),
444 $this->ctrl->getLinkTarget($this,
"view"));
446 $ilHelp->setScreenIdComponent(
"prtf");
447 $ilHelp->setScreenId(
"add_blog");
450 $this->tpl->setContent($form->getHTML());
455 abstract protected function saveBlog();
467 if (is_array(
$_POST[
"order"]))
469 foreach (
$_POST[
"order"] as $k => $v)
483 $this->ctrl->redirect($this,
"view");
491 if (!is_array(
$_POST[
"prtf_pages"]) || count(
$_POST[
"prtf_pages"]) == 0)
494 $this->ctrl->redirect($this,
"view");
498 $this->tabs_gui->activateTab(
"pages");
500 include_once(
"./Services/Utilities/classes/class.ilConfirmationGUI.php");
502 $cgui->setFormAction($this->ctrl->getFormAction($this));
503 $cgui->setHeaderText($this->lng->txt(
"prtf_sure_delete_portfolio_pages"));
504 $cgui->setCancel($this->lng->txt(
"cancel"),
"view");
505 $cgui->setConfirm($this->lng->txt(
"delete"),
"deletePortfolioPages");
507 foreach (
$_POST[
"prtf_pages"] as $id)
510 $title = $page->getTitle();
515 $cgui->addItem(
"prtf_pages[]", $id, $title);
518 $this->tpl->setContent($cgui->getHTML());
532 if (is_array(
$_POST[
"prtf_pages"]))
534 foreach (
$_POST[
"prtf_pages"] as $id)
541 $this->ctrl->redirect($this,
"view");
547 function preview($a_return =
false, $a_content =
false, $a_show_notes =
true)
555 else if(
$_GET[
"baseClass"] !=
"ilPublicUserProfileGUI" &&
556 $this->user_id && $this->user_id != ANONYMOUS_USER_ID)
563 $this->ctrl->setParameterByClass(
"ilportfoliorepositorygui",
"shr_id", $this->object->getOwner());
564 $back = $this->ctrl->getLinkTargetByClass(array(
"ilpersonaldesktopgui",
"ilportfoliorepositorygui"),
"showOther");
565 $this->ctrl->setParameterByClass(
"ilportfoliorepositorygui",
"shr_id",
"");
572 $parent_id = $tree->getParentId($this->node_id);
573 include_once
"Services/Link/classes/class.ilLink.php";
580 $back = $this->ctrl->getLinkTarget($this,
"view");
583 $this->tpl->setTopBar($back);
585 $portfolio_id = $this->
object->getId();
586 $user_id = $this->
object->getOwner();
588 $this->tabs_gui->clearTargets();
591 $current_page = (int)
$_GET[
"user_page"];
594 if($pages && $current_page)
597 foreach($pages as $page)
599 if($page[
"id"] == $current_page)
607 $current_page = null;
612 if(!$current_page && $pages)
614 $current_page = $pages;
615 $current_page = array_shift($current_page);
616 $current_page = $current_page[
"id"];
620 $current_blog = null;
621 if(count($pages) > 1)
623 foreach ($pages as $p)
628 if($p[
"id"] == $current_page)
630 $current_blog = (int)$p[
"title"];
632 include_once
"Modules/Blog/classes/class.ilObjBlog.php";
636 $this->ctrl->setParameter($this,
"user_page", $p[
"id"]);
637 $this->tabs_gui->addTab(
"user_page_".$p[
"id"],
639 $this->ctrl->getLinkTarget($this,
"preview"));
642 $this->tabs_gui->activateTab(
"user_page_".$current_page);
645 $this->ctrl->setParameter($this,
"user_page", $current_page);
651 $page_gui->setEmbedded(
true);
653 $content = $this->ctrl->getHTML($page_gui);
657 $content = $a_content;
667 if($a_show_notes && $this->object->hasPublicComments() && !$current_blog)
669 include_once(
"./Services/Notes/classes/class.ilNoteGUI.php");
670 $note_gui =
new ilNoteGUI($portfolio_id, $current_page,
"pfpg");
671 $note_gui->setRepositoryMode(
false);
672 $note_gui->enablePublicNotes(
true);
673 $note_gui->enablePrivateNotes(
false);
674 $note_gui->enablePublicNotesDeletion($this->user_id ==
$user_id);
676 $next_class = $this->ctrl->getNextClass($this);
677 if ($next_class ==
"ilnotegui")
679 $notes = $this->ctrl->forwardCommand($note_gui);
683 $notes = $note_gui->getNotesHTML();
687 if($this->perma_link === null)
689 include_once(
'Services/PermanentLink/classes/class.ilPermanentLinkGUI.php');
705 self::renderFullscreenHeader($this->
object, $this->tpl,
$user_id);
708 $this->tpl->setVariable(
"LOCATOR",
"");
713 $content =
'<div id="ilCOPageContent" class="ilc_page_cont_PageContainer">'.
714 '<div class="ilc_page_Page">'.
722 $this->tpl->setContent($content.
723 '<div class="ilClearFloat">'.$notes.$plink.
'</div>');
724 $this->tpl->setFrameFixedWidth(
true);
726 echo $this->tpl->show(
"DEFAULT",
true,
true);
740 $name = $name[
"lastname"].
", ".(
$t = $name[
"title"] ?
$t .
" " :
"").$name[
"firstname"];
743 $banner = $banner_width = $banner_height =
false;
745 if($prfa_set->get(
"banner"))
747 $banner = $a_portfolio->getImageFullPath();
748 $banner_width = $prfa_set->get(
"banner_width");
749 $banner_height = $prfa_set->get(
"banner_height");
752 $banner = basename($banner);
758 if($a_portfolio->hasProfilePicture())
763 $ppic = basename($ppic);
767 include_once(
"./Services/User/classes/class.ilUserUtil.php");
768 $a_tpl->setFullscreenHeader($a_portfolio->getTitle(),
772 $a_portfolio->getBackgroundColor(),
773 $a_portfolio->getFontColor(),
777 $a_tpl->setBodyClass(
"std ilExternal ilPortfolio");
782 include_once
"Modules/Portfolio/classes/class.ilPortfolioHTMLExport.php";
784 $zip = $export->buildExportFile();
795 if (!is_array(
$_POST[
"prtf_pages"]) || count(
$_POST[
"prtf_pages"]) == 0)
798 $this->ctrl->redirect($this,
"view");
802 $this->tabs_gui->activateTab(
"pages");
812 $item->setValue($page_id);
813 $a_form->addItem($item);
816 $this->tpl->setContent($a_form->getHTML());
823 if($form->checkInput())
826 if($form->getInput(
"target") ==
"old")
828 $portfolio_id = $form->getInput(
"prtf");
834 $portfolio->setTitle($form->getInput(
"title"));
835 $portfolio->create();
836 $portfolio_id = $portfolio->getId();
844 $target->setXMLContent($source->copyXmlContent(
true));
845 $target->setType($source->getType());
846 $target->setTitle($source->getTitle());
851 $this->ctrl->redirect($this,
"view");
854 $form->setValuesByPost();
862 include_once(
"Services/Form/classes/class.ilPropertyFormGUI.php");
864 $form->setFormAction($this->ctrl->getFormAction($this));
865 $form->setTitle($this->lng->txt(
"prtf_copy_page"));
869 $form->addItem($tgt);
873 $form->addCommandButton(
"copyPage", $this->lng->txt(
"save"));
874 $form->addCommandButton(
"view", $this->lng->txt(
"cancel"));
897 $ctpl->setCurrentBlock(
"ContentStyle");
898 $ctpl->setVariable(
"LOCATION_CONTENT_STYLESHEET",
900 $ctpl->parseCurrentBlock();
907 $this->tabs_gui->activateTab(
"settings");
911 $this->tpl->setContent($form->getHTML());
918 include_once(
"./Services/Style/classes/class.ilObjStyleSheet.php");
919 $this->lng->loadLanguageModule(
"style");
921 include_once(
"./Services/Form/classes/class.ilPropertyFormGUI.php");
924 $fixed_style = $ilSetting->get(
"fixed_content_style_id");
925 $style_id = $this->
object->getStyleSheetId();
927 if ($fixed_style > 0)
931 $this->lng->txt(
"global_fixed").
")");
939 $st_styles[0] = $this->lng->txt(
"default");
952 $form->addCommandButton(
"editStyle", $this->lng->txt(
"style_edit_style"));
953 $form->addCommandButton(
"deleteStyle", $this->lng->txt(
"style_delete_style"));
962 $style_sel->setValue($style_id);
963 $form->addItem($style_sel);
965 $form->addCommandButton(
"saveStyleSettings", $this->lng->txt(
"save"));
966 $form->addCommandButton(
"createStyle", $this->lng->txt(
"sty_create_ind_style"));
970 $form->setTitle($this->lng->txt($this->getType().
"_style"));
971 $form->setFormAction($this->ctrl->getFormAction($this));
978 $this->ctrl->redirectByClass(
"ilobjstylesheetgui",
"create");
983 $this->ctrl->redirectByClass(
"ilobjstylesheetgui",
"edit");
988 $this->ctrl->redirectByClass(
"ilobjstylesheetgui",
"delete");
995 include_once(
"./Services/Style/classes/class.ilObjStyleSheet.php");
996 if ($ilSetting->get(
"fixed_content_style_id") <= 0 &&
998 || $this->object->getStyleSheetId() == 0))
1001 $this->
object->update();
1005 $this->ctrl->redirect($this,
"editStyleProperties");
static sendSuccess($a_info="", $a_keep=false)
Send Success Message to Screen.
static _lookupName($a_user_id)
lookup user name
This class represents an option in a radio group.
setTitle($a_title)
Set Title.
getEditFormCustomValues(array &$a_values)
confirmPortfolioPageDeletion()
Confirm portfolio deletion.
static findUserFiles($a_user_id, $a_filetitle)
Check if given file was assigned.
setValue($a_value)
Set Value.
Class for permanent links.
static _lookupTitle($a_id)
setContentStyleSheet($a_tpl=null)
Portfolio HTML exporter class.
checkPermissionBool($a_perm, $a_cmd="", $a_type="", $a_node_id=null)
Check permission.
New implementation of ilObjectGUI.
view()
Show list of portfolio pages.
static _getStaticLink($a_ref_id, $a_type='', $a_fallback_goto=true, $append="")
Get static link.
setPermaLink($a_link)
Set custom perma link (used in public profile?)
setSettingsSubTabs($a_active)
initCopyPageFormOptions(ilFormPropertyGUI $a_tgt)
static fixOrdering($a_portfolio_id)
Fix ordering.
addPage()
Show portfolio page creation form.
static _lookupTitle($a_id)
lookup object title
savePage()
Create new portfolio page.
static _getAllReferences($a_id)
get all reference ids of object
deletePortfolioPages()
Delete portfolio pages.
getHTML()
Get HTML for link.
static sendInfo($a_info="", $a_keep=false)
Send Info Message to Screen.
savePortfolioPagesOrdering()
Save ordering of portfolio pages.
checkPermission($a_perm, $a_cmd="")
__construct($a_id=0, $a_id_type=self::REPOSITORY_NODE_ID, $a_parent_node_id=0)
setAdditional($a_additional)
Set Additonal Information (used in public profile?)
getType()
Functions that must be overwritten.
static getEffectiveContentStyleId($a_style_id, $a_type="")
Get effective Style Id.
getAdditional()
Get Additonal Information.
This class represents a text property in a property form.
initPageForm($a_mode="create")
Init portfolio page form.
_getStandardStyles($a_exclude_default_style=false, $a_include_deactivated=false, $a_scope=0)
Get standard styles.
setMaxLength($a_maxlength)
Set Max Length.
static stripSlashes($a_str, $a_strip_html=true, $a_allow="")
strip slashes if magic qoutes is enabled
static deliverFile($a_file, $a_filename, $a_mime='', $isInline=false, $removeAfterDelivery=false, $a_exit_after=true)
deliver file for download via browser.
addBlog()
Show portfolio blog page creation form.
getPageGUIInstance($a_page_id)
Portfolio view gui base class.
static getAllPages($a_portfolio_id)
Get pages of portfolio.
_lookupStandard($a_id)
Lookup standard flag.
This class represents a non editable value in a property form.
static renderFullscreenHeader($a_portfolio, $a_tpl, $a_user_id, $a_export=false)
Render banner, user name.
getContentStylePath($a_style_id)
get content style path
static _getPersonalPicturePath($a_usr_id, $a_size="small", $a_force_pic=false, $a_prevent_no_photo_image=false)
Get path to personal picture.
initStylePropertiesForm()
static activeLayouts($a_special_page=false, $a_module=null)
Get active layouts.
if($_REQUEST['ilias_path']) define('ILIAS_HTTP_PATH' $_REQUEST['ilias_path']
getPageInstance($a_page_id=null, $a_portfolio_id=null)
initEditCustomForm(ilPropertyFormGUI $a_form)
preview($a_return=false, $a_content=false, $a_show_notes=true)
Show user page.
updateCustom(ilPropertyFormGUI $a_form)
copyPageForm($a_form=null)
Select target portfolio for page(s) copy.
Confirmation screen class.