4 include_once(
"./Services/COPage/classes/class.ilPageObjectGUI.php");
24 protected $export_material = array(
"js"=>array(),
"images"=>array(),
"files"=>array());
30 function __construct($a_portfolio_id, $a_id = 0, $a_old_nr = 0, $a_enable_comments =
true)
34 $this->portfolio_id = (int)$a_portfolio_id;
35 $this->enable_comments = (bool)$a_enable_comments;
37 parent::__construct($this->
getParentType(), $a_id, $a_old_nr);
41 include_once(
"./Services/Style/classes/class.ilObjStyleSheet.php");
43 $tpl->setCurrentBlock(
"SyntaxStyle");
44 $tpl->setVariable(
"LOCATION_SYNTAX_STYLESHEET",
46 $tpl->parseCurrentBlock();
48 $tpl->setCurrentBlock(
"ContentStyle");
49 $tpl->setVariable(
"LOCATION_CONTENT_STYLESHEET",
51 $tpl->parseCurrentBlock();
72 $next_class = $this->ctrl->getNextClass($this);
73 $cmd = $this->ctrl->getCmd();
79 include_once
"Services/PersonalWorkspace/classes/class.ilWorkspaceTree.php";
82 $blog_node_id = $wsp_tree->lookupNodeId($blog_obj_id);
84 include_once
"Modules/Blog/classes/class.ilObjBlogGUI.php";
86 $blog_gui->disableNotes(!$this->enable_comments);
87 return $ilCtrl->forwardCommand($blog_gui);
89 case "ilcalendarmonthgui":
93 include_once(
'./Services/Calendar/classes/class.ilCalendarMonthGUI.php');
95 return $ilCtrl->forwardCommand($month_gui);
100 $ilCtrl->setParameter($this,
"cmd",
"preview");
101 return self::EMBEDDED_NO_OUTPUT;
104 case "ilpageobjectgui":
105 die(
"Deprecated. ilPortfolioPage gui forwarding to ilpageobject");
110 return parent::executeCommand();
136 $output = parent::showPage();
152 parent::getTabs($a_activate);
163 $this->embedded = (bool)$a_value;
173 $this->additional = $a_additional;
194 "Profile" => array(
"0-9",
"a-z",
"0-9a-z_;\W"),
195 "Verification" => array(
"0-9",
"a-z",
"0-9"),
196 "Blog" => array(
"0-9",
"0-9",
"0-9;\W"),
197 "BlogTeaser" => array(
"0-9",
"0-9",
"0-9;\W"),
198 "Skills" => array(
"0-9",
"0-9"),
199 "SkillsTeaser" => array(
"0-9",
"0-9"),
200 "ConsultationHours" => array(
"0-9",
"a-z",
"0-9;\W"),
201 "ConsultationHoursTeaser" => array(
"0-9",
"a-z",
"0-9;\W"),
202 "MyCourses" => array(
"0-9"),
203 "MyCoursesTeaser" => array(
"0-9")
206 foreach($parts as $type => $def)
208 $def = implode(
"]+)#([", $def);
209 if(preg_match_all(
"/".$this->pl_start.$type.
"#([".$def.
210 "]+)".$this->pl_end.
"/", $a_output, $blocks))
212 foreach($blocks[0] as $idx => $block)
221 case "ConsultationHours":
222 case "ConsultationHoursTeaser":
224 case "MyCoursesTeaser":
226 if(trim($blocks[3][$idx]))
228 foreach(explode(
";", $blocks[3][$idx]) as $sub)
232 $subs[] = trim($sub);
236 $snippet = $this->{
"render".$type}($blocks[1][$idx],
237 $blocks[2][$idx], $subs);
241 $snippet = $this->{
"render".$type}($blocks[1][$idx],
242 $blocks[2][$idx], $blocks[3][$idx]);
247 $a_output = str_replace($block, $snippet, $a_output);
257 return trim($a_html);
265 $options =
'<div class="il_Footer">'.$this->lng->txt(
"prtf_page_element_teaser_settings").
266 ": ".$a_options.
'</div>';
269 return '<div style="margin:5px" class="ilBox"><h3>'.$a_title.
'</h3>'.
270 '<div class="il_Description_no_margin">'.$this->lng->txt(
"prtf_page_element_teaser_".$a_type).
'</div>'.
274 protected function renderProfile($a_user_id, $a_type, array $a_fields = null)
284 $this->export_material[
"js"][] =
"http://maps.google.com/maps/api/js?sensor=false";
285 $this->export_material[
"js"][] =
"./Services/Maps/js/ServiceGoogleMaps.js";
286 $this->export_material[
"js"][] =
"./Services/Maps/js/OpenLayers.js";
287 $this->export_material[
"js"][] =
"./Services/Maps/js/ServiceOpenLayers.js";
290 include_once(
"./Services/User/classes/class.ilPublicUserProfileGUI.php");
292 $pub_profile->setEmbedded(
true, ($this->
getOutputMode() ==
"offline"));
297 if($a_type ==
"manual" &&
sizeof($a_fields))
300 foreach($a_fields as $field)
302 $field = trim($field);
305 $prefs[
"public_".$field] =
"y";
309 $pub_profile->setCustomPrefs($prefs);
314 return $ilCtrl->getHTML($pub_profile);
318 return $pub_profile->getEmbeddable();
324 global $objDefinition;
329 $class =
"ilObj".$objDefinition->getClassName($a_type).
"GUI";
330 include_once $objDefinition->getLocation($a_type).
"/class.".$class.
".php";
336 $this->ctrl->setParameter($this,
"dlid", $a_id);
337 $url = $this->ctrl->getLinkTarget($this,
"dl".$a_type);
338 $this->ctrl->setParameter($this,
"dlid",
"");
342 $file = $verification->object->getFilePath();
343 $url =
"files/".basename(
$file);
345 $this->export_material[
"files"][] =
$file;
348 return $verification->render(
true, $url);
356 include_once
"Modules/Test/classes/class.ilObjTestVerificationGUI.php";
358 $verification->downloadFromPortfolioPage($this->
getPageObject());
367 include_once
"Modules/Exercise/classes/class.ilObjExerciseVerificationGUI.php";
369 $verification->downloadFromPortfolioPage($this->
getPageObject());
378 include_once
"Modules/Course/classes/Verification/class.ilObjCourseVerificationGUI.php";
380 $verification->downloadFromPortfolioPage($this->
getPageObject());
389 include_once
"Modules/ScormAicc/classes/Verification/class.ilObjSCORMVerificationGUI.php";
391 $verification->downloadFromPortfolioPage($this->
getPageObject());
395 protected function renderBlog($a_user_id, $a_blog_id, array $a_posting_ids = null)
405 include_once
"Modules/Blog/classes/class.ilObjBlogGUI.php";
407 $blog->disableNotes(!$this->enable_comments);
408 $blog->setContentStyleSheet();
412 return $ilCtrl->getHTML($blog);
424 include_once
"Modules/Blog/classes/class.ilObjBlog.php";
427 include_once
"Modules/Blog/classes/class.ilBlogPostingGUI.php";
428 foreach($a_posting_ids as $post)
437 $page->setOutputMode(
"offline");
439 $html[] = $page->showPage();
442 return implode(
"\n", $html);
454 $postings = array(
"<ul>");
455 include_once
"Modules/Blog/classes/class.ilBlogPosting.php";
456 foreach($a_posting_ids as $post)
459 $postings[] =
"<li>".$post->getTitle().
" - ".
462 $postings[] =
"</ul>";
463 $postings = implode(
"\n", $postings);
466 return $this->
renderTeaser(
"blog", $this->lng->txt(
"obj_blog").
' "'.
479 include_once
"Services/Skill/classes/class.ilPersonalSkillsGUI.php";
483 $gui->setOfflineMode(
"./files/");
485 $html = $gui->getSkillHTML($a_skills_id, $user_id);
489 $js = $gui->getTooltipsJs();
492 $this->js_onload_code = array_merge($this->js_onload_code, $js);
504 include_once
"Services/Skill/classes/class.ilSkillTreeNode.php";
506 return $this->
renderTeaser(
"skills", $this->lng->txt(
"skills").
' "'.
515 if($a_mode ==
"auto")
517 $mode = $this->lng->txt(
"cont_cach_mode_automatic");
522 $mode = $this->lng->txt(
"cont_cach_mode_manual");
524 include_once
"Services/Calendar/classes/ConsultationHours/class.ilConsultationHourGroups.php";
526 foreach($a_group_ids as $grp_id)
530 $groups =
" (".implode(
", ", $groups).
")";
533 $this->lng->loadLanguageModule(
"dateplaner");
535 $this->lng->txt(
"app_consultation_hours"), $mode.$groups);
555 if($ilUser->getId() != $user_id)
557 $_GET[
"bkid"] = $user_id;
560 if($a_mode !=
"manual")
565 include_once(
'./Services/Calendar/classes/class.ilCalendarCategories.php');
578 include_once(
'./Services/Calendar/classes/class.ilCalendarMonthGUI.php');
582 include_once(
'./Services/Calendar/classes/class.ilCalendarScheduleFilterBookings.php');
584 $month_gui->addScheduleFilter($filter);
588 $this->lng->loadLanguageModule(
"dateplaner");
589 return '<h3>'.$this->lng->txt(
"app_consultation_hours").
'</h3>'.
590 $this->ctrl->getHTML($month_gui);
596 return (
bool)$prfa_set->get(
"mycrs",
true);
606 :
"my_courses_inactive";
609 $this->lng->txt(
"prtf_page_element_my_courses_title"));
629 $this->export_material[
"images"][] =
"./templates/default/images/icon_crs.svg";
630 $this->export_material[
"images"][] =
"./templates/default/images/icon_lobj.svg";
631 $this->export_material[
"images"][] =
"./templates/default/images/scorm/complete.svg";
632 $this->export_material[
"images"][] =
"./templates/default/images/scorm/not_attempted.svg";
633 $this->export_material[
"images"][] =
"./templates/default/images/scorm/failed.svg";
634 $this->export_material[
"images"][] =
"./templates/default/images/scorm/incomplete.svg";
636 $img_path =
"images/";
644 $tpl =
new ilTemplate(
"tpl.pc_my_courses.html",
true,
true,
"Modules/Portfolio");
645 $tpl->setVariable(
"TITLE", $this->lng->txt(
"prtf_page_element_my_courses_title"));
646 $tpl->setVariable(
"INFO", $this->lng->txt(
"prtf_page_element_my_courses_info"));
648 include_once(
"./Services/Tracking/classes/class.ilLearningProgressBaseGUI.php");
649 $this->lng->loadLanguageModule(
"trac");
650 $this->lng->loadLanguageModule(
"crs");
652 include_once(
"./Services/Container/classes/class.ilContainerObjectiveGUI.php");
653 include_once(
"./Services/Link/classes/class.ilLink.php");
655 foreach(
$data as $course)
657 if(isset($course[
"lp_status"]))
664 $lp_icon = $img_path.basename($lp_icon);
667 $tpl->setCurrentBlock(
"lp_bl");
668 $tpl->setVariable(
"LP_ICON_URL", $lp_icon);
669 $tpl->setVariable(
"LP_ICON_ALT", $lp_alt);
670 $tpl->parseCurrentBlock();
673 if(isset($course[
"objectives"]))
675 include_once
'./Modules/Course/classes/Objectives/class.ilLOSettings.php';
677 $has_initial_test = (bool)$loc_settings->getInitialTest();
679 foreach($course[
"objectives"] as $objtv)
684 $objtv_icon = $img_path.basename($objtv_icon);
687 $tpl->setCurrentBlock(
"objective_bl");
688 $tpl->setVariable(
"OBJECTIVE_TITLE", $objtv[
"title"]);
689 $tpl->setVariable(
"OBJTV_ICON_URL", $objtv_icon);
690 $tpl->setVariable(
"OBJTV_ICON_ALT", $this->lng->txt(
"crs_objectives"));
694 $tpl->setVariable(
"LP_OBJTV_PROGRESS",
698 $tpl->parseCurrentBlock();
703 if($ilAccess->checkAccessOfUser($ilUser->getId(),
"read",
"", $course[
"ref_id"],
"crs") ||
704 ($ilAccess->checkAccessOfUser($ilUser->getId(),
"visible",
"", $course[
"ref_id"],
"crs") &&
705 $ilAccess->checkAccessOfUser($ilUser->getId(),
"join",
"", $course[
"ref_id"],
"crs")))
707 $tpl->setCurrentBlock(
"course_link_bl");
708 $tpl->setVariable(
"COURSE_LINK_TITLE", $course[
"title"]);
710 $tpl->parseCurrentBlock();
714 $tpl->setCurrentBlock(
"course_nolink_bl");
715 $tpl->setVariable(
"COURSE_NOLINK_TITLE", $course[
"title"]);
716 $tpl->parseCurrentBlock();
722 $crs_icon = $img_path.basename($crs_icon);
725 $tpl->setCurrentBlock(
"course_bl");
726 $tpl->setVariable(
"CRS_ICON_URL", $crs_icon);
727 $tpl->setVariable(
"CRS_ICON_ALT", $this->lng->txt(
"obj_crs"));
728 $tpl->parseCurrentBlock();
741 include_once
'Modules/Course/classes/class.ilObjCourseAccess.php';
742 include_once
'Services/Membership/classes/class.ilParticipants.php';
745 $references = $lp_obj_refs = array();
746 foreach($items as $obj_id)
756 if($active && $visible)
763 $lp_obj_refs[$obj_id] =
$ref_id;
771 if(
sizeof($lp_obj_refs))
774 include_once
"Services/Tracking/classes/class.ilObjUserTracking.php";
780 include_once
"Services/Tracking/classes/class.ilTrQuery.php";
781 include_once
"Services/Tracking/classes/class.ilLPStatusFactory.php";
783 foreach($lp_data as $item)
786 $references[
$ref_id][
"lp_status"] = $item[
"status"];
792 include_once
"Services/Tracking/classes/collection/class.ilLPCollectionOfObjectives.php";
794 $coll_objtv = $coll_objtv->getItems();
802 include_once
"Modules/Course/classes/class.ilCourseObjective.php";
803 foreach($coll_objtv as $objective_id)
805 $tmp[$objective_id] = array(
806 "id" => $objective_id,
809 if(array_key_exists($objective_id, $lo_results))
811 $lo_result = $lo_results[$objective_id];
812 $tmp[$objective_id][
"result_perc"] = $lo_result[
"result_perc"];
813 $tmp[$objective_id][
"limit_perc"] = $lo_result[
"limit_perc"];
814 $tmp[$objective_id][
"status"] = $lo_result[
"status"];
815 $tmp[$objective_id][
"type"] = $lo_result[
"type"];
820 foreach($coll_objtv as $objtv_id)
822 $references[
$ref_id][
"objectives"][] = $tmp[$objtv_id];
840 include_once
"Modules/Course/classes/Objectives/class.ilLOUserResults.php";
842 foreach($lur->getCourseResultsForUserPresentation() as $objective_id => $types)
862 $result[
"initial_status"] = $initial_status;
static getInstanceByObjId($a_obj_id)
get singleton instance
renderBlog($a_user_id, $a_blog_id, array $a_posting_ids=null)
static buildObjectiveProgressBar($a_has_initial_test, $a_objective_id, array $a_lo_result, $a_list_mode=false)
__construct($a_portfolio_id, $a_id=0, $a_old_nr=0, $a_enable_comments=true)
Constructor.
getPageObject()
Get Page Object.
Calendar schedule filter for consultation hour bookings.
LP collection of objectives.
static _lookupTitle($a_id)
setTemplateOutput($a_output=true)
static lookupTitle($a_group_id)
Lookup group title.
static getStyleSheetLocation($mode="output", $a_css_name="", $a_css_location="")
get full style sheet file name (path inclusive) of current user
static _hasLearningProgressLearner()
getAdditional()
Get Additonal Information.
Class ilBlogPosting GUI class.
renderMyCoursesTeaser($a_user_id)
static _getMembershipByType($a_usr_id, $a_type, $a_only_member_role=false)
get membership by type Get course or group membership
setEmbedded($a_value)
Set embedded mode: will suppress tabs.
_getImagePathForStatus($a_status)
Get image path for status.
static _lookupTitle($a_id)
lookup object title
Portfolio page gui class.
static lookupObjectiveTitle($a_objective_id)
static getTypeIconPath($a_type, $a_obj_id, $a_size='small')
Get type icon path path Return image path for icon_xxx.pngs Or (if enabled) path to custom icon Depre...
static sortArray($array, $a_array_sortby, $a_array_sortorder=0, $a_numeric=false, $a_keep_keys=false)
sortArray
getPageContentUserId($a_user_id)
getSyntaxStylePath()
get syntax style path
static _getAllReferences($a_id)
get all reference ids of object
_getStatusText($a_status)
Get status alt text.
Tree handler for personal workspace.
postOutputProcessing($a_output)
Personal skills GUI class.
static _enabledUserRelatedData()
check wether user related tracking is enabled or not
GUI class for course verification.
GUI class for public user profile presentation.
static _enabledLearningProgress()
check wether learing progress is enabled or not
if(!is_array($argv)) $options
getTabs($a_activate="")
Set all tabs.
GUI class for exercise verification.
renderSkills($a_user_id, $a_skills_id)
renderBlogTeaser($a_user_id, $a_blog_id, array $a_posting_ids=null)
special template class to simplify handling of ITX/PEAR
static formatDate(ilDateTime $date)
Format a date public.
renderSkillsTeaser($a_user_id, $a_skills_id)
setPresentationTitle($a_title="")
renderMyCourses($a_user_id)
const MODE_PORTFOLIO_CONSULTATION
static _getInstance($a_usr_id=0)
get singleton instance
const WORKSPACE_OBJECT_ID
static _lookupTitle($a_obj_id, $a_tref_id=0)
Lookup Title.
GUI class for test verification.
getContentStylePath($a_style_id)
get content style path
setAdditional($a_additional)
Set Additonal Information.
renderTeaser($a_type, $a_title, $a_options=null)
renderVerification($a_user_id, $a_type, $a_id)
getObjectsStatusForUser($a_user_id, array $obj_refs)
if($_REQUEST['ilias_path']) define('ILIAS_HTTP_PATH' $_REQUEST['ilias_path']
renderPageElement($a_type, $a_html)
static _isActivated($a_obj_id, &$a_visible_flag=null, $a_mind_member_view=true)
Is activated?
renderProfile($a_user_id, $a_type, array $a_fields=null)
& executeCommand()
execute command
GUI class for scorm verification.
parseLOUserResults($a_course_obj_id, $a_user_id)
static _getLink($a_ref_id, $a_type='', $a_params=array(), $append="")
renderConsultationHoursTeaser($a_user_id, $a_mode, $a_group_ids)
getCoursesOfUser($a_user_id)
renderConsultationHours($a_user_id, $a_mode, $a_group_ids)