46 $a_user_image =
false,
47 $a_profile_link =
false,
48 $a_profile_back_link =
"",
49 $a_force_first_lastname =
false,
50 $a_omit_login =
false,
52 $a_return_data_array =
false,
53 $a_ctrl_path =
"ilpublicuserprofilegui" 58 $ilCtrl = $DIC[
'ilCtrl'];
61 if (!is_array($a_ctrl_path)) {
62 $a_ctrl_path = array($a_ctrl_path);
65 if (!($return_as_array = is_array($a_user_id))) {
66 $a_user_id = array($a_user_id);
75 b.value public_profile, 81 (a.usr_id = b.usr_id AND 85 (a.usr_id = c.usr_id AND 87 WHERE ' .
$ilDB->in(
'a.usr_id', $a_user_id,
false,
'integer');
89 $userrow =
$ilDB->queryF($sql, array(
'text',
'text'), array(
'public_profile',
'public_title'));
94 while ($row =
$ilDB->fetchObject($userrow)) {
96 $d = array(
"id" => (
int) $row->usr_id,
"title" =>
"",
"lastname" =>
"",
"firstname" =>
"",
"img" =>
"",
"link" =>
"",
97 "public_profile" =>
"");
98 $has_public_profile = in_array($row->public_profile, array(
"y",
"g"));
99 if ($a_force_first_lastname || $has_public_profile) {
101 if ($row->public_title ==
"y" && $row->title) {
102 $title = $row->title .
" ";
104 $d[
"title"] = $title;
106 $pres = $row->lastname;
107 if (strlen($row->firstname)) {
108 $pres .= (
', ' . $row->firstname .
' ');
112 if (strlen($row->firstname)) {
113 $pres .= $row->firstname .
' ';
115 $pres .= ($row->lastname .
' ');
117 $d[
"firstname"] = $row->firstname;
118 $d[
"lastname"] = $row->lastname;
120 $d[
"login"] = $row->login;
121 $d[
"public_profile"] = $has_public_profile;
124 if (!$a_omit_login) {
125 $pres .=
"[" . $row->login .
"]";
128 if ($a_profile_link && $has_public_profile) {
129 $ilCtrl->setParameterByClass(end($a_ctrl_path),
"user_id", $row->usr_id);
130 if ($a_profile_back_link !=
"") {
131 $ilCtrl->setParameterByClass(
134 rawurlencode($a_profile_back_link)
137 $link = $ilCtrl->getLinkTargetByClass($a_ctrl_path,
"getHTML");
138 $pres =
'<a href="' . $link .
'">' . $pres .
'</a>';
144 $pres =
'<img class="ilUserXXSmall" src="' .
$img .
'" alt="' .
$lng->txt(
"icon") .
145 " " .
$lng->txt(
"user_picture") .
'" /> ' . $pres;
149 $names[$row->usr_id] = $pres;
153 foreach ($a_user_id as $id) {
155 $names[$id] =
$lng->txt(
'usr_name_undisclosed');
159 if ($a_return_data_array) {
160 if ($return_as_array) {
163 return current(
$data);
166 return $return_as_array ? $names : $names[$a_user_id[0]];
179 $ilDB = $DIC[
'ilDB'];
182 "SELECT value FROM usr_pref " .
183 " WHERE usr_id = " .
$ilDB->quote($a_user_id,
"integer") .
184 " and keyword = " .
$ilDB->quote(
"public_profile",
"text")
186 $rec =
$ilDB->fetchAssoc($set);
188 return in_array($rec[
"value"], array(
"y",
"g"));
201 if ($public_profile !=
'y' and $public_profile !=
'g') {
205 $GLOBALS[
'DIC'][
'ilCtrl']->setParameterByClass(
'ilpublicuserprofilegui',
'user', $a_usr_id);
206 return $GLOBALS[
'DIC'][
'ilCtrl']->getLinkTargetByClass(
'ilpublicuserprofilegui',
'getHTML');
230 $all[self::START_PD_OVERVIEW] =
'mm_dashboard';
231 $all[self::START_PD_SUBSCRIPTION] =
'my_courses_groups';
233 if (ilMyStaffAccess::getInstance()->hasCurrentUserAccessToMyStaff()) {
234 $all[self::START_PD_MYSTAFF] =
'my_staff';
237 if ($a_force_all || !
$ilSetting->get(
"disable_personal_workspace")) {
238 $all[self::START_PD_WORKSPACE] =
'mm_personal_and_shared_r';
241 include_once(
'./Services/Calendar/classes/class.ilCalendarSettings.php');
243 if ($a_force_all || $settings->isEnabled()) {
244 $all[self::START_PD_CALENDAR] =
'calendar';
247 $all[self::START_REPOSITORY] =
'obj_root';
249 foreach ($all as $idx =>
$lang) {
269 $tree = $DIC[
'tree'];
271 if ($a_value == self::START_REPOSITORY_OBJ) {
272 $a_ref_id = (int) $a_ref_id;
274 !$tree->isDeleted($a_ref_id)) {
275 $ilSetting->set(
"usr_starting_point", $a_value);
276 $ilSetting->set(
"usr_starting_point_ref_id", $a_ref_id);
280 $valid = array_keys(self::getPossibleStartingPoints());
281 if (in_array($a_value,
$valid)) {
282 $ilSetting->set(
"usr_starting_point", $a_value);
283 if ($a_value == self::START_PD_CALENDAR) {
284 foreach ($a_cal_view as $key => $value) {
305 $valid = array_keys(self::getPossibleStartingPoints());
306 $current =
$ilSetting->get(
"usr_starting_point");
307 if ($current == self::START_REPOSITORY_OBJ) {
309 } elseif (!$current || !in_array($current,
$valid)) {
310 $current = self::START_PD_OVERVIEW;
313 if (
$ilSetting->get(
'disable_my_offers') == 0 &&
314 $ilSetting->get(
'disable_my_memberships') == 0 &&
315 $ilSetting->get(
'personal_items_default_view') == 1) {
316 $current = self::START_PD_SUBSCRIPTION;
319 self::setStartingPoint($current);
323 $current = self::START_REPOSITORY;
333 public static function getStartingPointAsUrl()
338 $log = $DIC->logger()->root();
340 $tree = $DIC[
'tree'];
343 $rbacreview = $DIC[
'rbacreview'];
344 $rbacsystem = $DIC[
'rbacsystem'];
351 if (self::hasPersonalStartingPoint() &&
$ilUser->getPref(
'usr_starting_point') != null) {
352 $current = self::getPersonalStartingPoint();
353 if ($current == self::START_REPOSITORY_OBJ) {
354 $ref_id = self::getPersonalStartingObject();
357 include_once
'./Services/AccessControl/classes/class.ilStartingPoint.php';
362 $roles_ids = array_keys($roles);
364 foreach ($roles_ids as $role_id) {
365 if ($rbacreview->isAssigned(
$ilUser->getId(), $role_id)) {
366 $gr[$roles[$role_id][
'position']] = array(
367 "point" => $roles[$role_id][
'starting_point'],
368 "object" => $roles[$role_id][
'starting_object'],
369 "cal_view" => $roles[$role_id][
'calendar_view'],
370 "cal_period" => $roles[$role_id][
'calendar_period']
376 $role_point = array_pop($gr);
377 $current = $role_point[
'point'];
378 $ref_id = $role_point[
'object'];
379 $cal_view = $role_point[
'cal_view'];
380 $cal_period = $role_point[
'cal_period'];
385 $current = self::getStartingPoint();
387 $cal_view = self::getCalendarView();
388 $cal_period = self::getCalendarPeriod();
389 if ($current == self::START_REPOSITORY_OBJ) {
390 $ref_id = self::getStartingObject();
395 $calendar_string =
"";
396 if (!empty($cal_view) && !empty($cal_period)) {
397 $calendar_string =
"&cal_view=" . $cal_view .
"&cal_agenda_per=" . $cal_period;
400 if ($current == self::START_REPOSITORY_OBJ
403 || !$rbacsystem->checkAccessOfUser(
410 $log->warning(sprintf(
'Permission to Starting Point Denied. Starting Point Type: %s.', $current));
411 $current = self::START_REPOSITORY;
414 if ($current == self::START_REPOSITORY
415 && !$rbacsystem->checkAccessOfUser(
420 || $current == self::START_PD_CALENDAR
423 $log->warning(sprintf(
'Permission to Starting Point Denied. Starting Point Type: %s.', $current));
424 $current = self::START_PD_OVERVIEW;
427 if (
$ilSetting->get(
'disable_my_offers') == 0 &&
428 $ilSetting->get(
'disable_my_memberships') == 0 &&
429 $ilSetting->get(
'personal_items_default_view') == 1) {
430 $log->warning(sprintf(
'Permission to Starting Point Denied. Starting Point Type: %s.', $current));
431 $current = self::START_PD_SUBSCRIPTION;
436 case self::START_REPOSITORY:
437 $ref_id = $tree->readRootId();
440 case self::START_REPOSITORY_OBJ:
443 !$tree->isDeleted($ref_id)) {
444 include_once(
'./Services/Link/classes/class.ilLink.php');
448 $current = self::START_PD_OVERVIEW;
454 self::START_PD_OVERVIEW =>
'ilias.php?baseClass=ilDashboardGUI&cmd=jumpToSelectedItems',
455 self::START_PD_SUBSCRIPTION =>
'ilias.php?baseClass=ilMembershipOverviewGUI',
456 self::START_PD_WORKSPACE =>
'ilias.php?baseClass=ilDashboardGUI&cmd=jumpToWorkspace',
457 self::START_PD_CALENDAR =>
'ilias.php?baseClass=ilDashboardGUI&cmd=jumpToCalendar' . $calendar_string,
460 return $map[$current];
475 return $ilSetting->get(
"usr_starting_point_ref_id");
517 $ilSetting->set(
"usr_starting_point_personal", (
bool) $a_value);
531 return $ilSetting->get(
"usr_starting_point_personal");
545 return (
bool)
$ilUser->getPref(
"usr_starting_point");
559 $valid = array_keys(self::getPossibleStartingPoints());
560 $current =
$ilUser->getPref(
"usr_starting_point");
561 if ($current == self::START_REPOSITORY_OBJ) {
563 } elseif (!$current || !in_array($current,
$valid)) {
564 return self::getStartingPoint();
581 $tree = $DIC[
'tree'];
584 $ilUser->setPref(
"usr_starting_point", null);
585 $ilUser->setPref(
"usr_starting_point_ref_id", null);
589 if ($a_value == self::START_REPOSITORY_OBJ) {
590 $a_ref_id = (int) $a_ref_id;
592 !$tree->isDeleted($a_ref_id)) {
593 $ilUser->setPref(
"usr_starting_point", $a_value);
594 $ilUser->setPref(
"usr_starting_point_ref_id", $a_ref_id);
598 $valid = array_keys(self::getPossibleStartingPoints());
599 if (in_array($a_value,
$valid)) {
600 $ilUser->setPref(
"usr_starting_point", $a_value);
617 $ref_id =
$ilUser->getPref(
"usr_starting_point_ref_id");
619 $ref_id = self::getStartingObject();
static _getInstance()
get singleton instance
static hasPersonalStartPointPref()
Did user set any personal starting point (yet)?
static _getStaticLink( $a_ref_id, $a_type='', $a_fallback_goto=true, $append="")
Get static link.
static getPersonalStartingPoint()
Get current personal starting point.
static getRolesWithStartingPoint()
get array with all roles which have starting point defined.
static getStartingPoint()
Get current starting point setting.
const CMD_JUMP_TO_MY_STAFF
static hasPersonalStartingPoint()
Can starting point be personalized?
static getPossibleStartingPoints($a_force_all=false)
Get all valid starting points.
static hasPublicProfile($a_user_id)
Has public profile.
static _lookupObjId($a_id)
if(!defined('PATH_SEPARATOR')) $GLOBALS['_PEAR_default_error_mode']
static getStartingObject()
Get ref id of starting object.
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.
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 setStartingPoint($a_value, $a_ref_id=null, $a_cal_view=[])
Set starting point setting.
static getCalendarPeriod()
Get time frame of calendar view.
static _lookupPref($a_usr_id, $a_keyword)
const START_PD_SUBSCRIPTION
static getCalendarView()
Get specific view of calendar starting point.
const START_REPOSITORY_OBJ
static getPersonalStartingObject()
Get ref id of personal starting object.
static togglePersonalStartingPoint($a_value)
Toggle personal starting point setting.
for($i=6; $i< 13; $i++) for($i=1; $i< 13; $i++) $d
static setPersonalStartingPoint($a_value, $a_ref_id=null)
Set personal starting point setting.
static getProfileLink($a_usr_id)
Get link to personal profile Return empty string in case of not public profile.