43 $a_user_image =
false, $a_profile_link =
false, $a_profile_back_link =
"",
44 $a_force_first_lastname =
false, $a_omit_login =
false, $a_sortable =
true)
48 if (!($return_as_array = is_array($a_user_id)))
49 $a_user_id = array($a_user_id);
57 b.value public_profile, 63 (a.usr_id = b.usr_id AND 67 (a.usr_id = c.usr_id AND 69 WHERE ' . $ilDB->in(
'a.usr_id', $a_user_id,
false,
'integer');
71 $userrow = $ilDB->queryF($sql, array(
'text',
'text'), array(
'public_profile',
'public_title'));
75 while (
$row = $ilDB->fetchObject($userrow))
77 if ($a_force_first_lastname ||
78 $has_public_profile = in_array(
$row->public_profile, array(
"y",
"g")))
81 if(
$row->public_title ==
"y" &&
$row->title)
83 $title =
$row->title .
" ";
87 $pres =
$row->lastname;
88 if(strlen(
$row->firstname))
90 $pres .= (
', '.$row->firstname.
' ');
96 if(strlen(
$row->firstname))
98 $pres .=
$row->firstname.
' ';
100 $pres .= (
$row->lastname.
' ');
107 $pres.=
"[".$row->login.
"]";
110 if ($a_profile_link && $has_public_profile)
112 $ilCtrl->setParameterByClass(
"ilpublicuserprofilegui",
"user_id",
$row->usr_id);
113 if ($a_profile_back_link !=
"")
115 $ilCtrl->setParameterByClass(
"ilpublicuserprofilegui",
"back_url",
116 rawurlencode($a_profile_back_link));
118 $pres =
'<a href="'.$ilCtrl->getLinkTargetByClass(
"ilpublicuserprofilegui",
"getHTML").
'">'.$pres.
'</a>';
124 $pres =
'<img border="0" src="'.$img.
'" alt="'.$lng->txt(
"icon").
125 " ".$lng->txt(
"user_picture").
'" /> '.$pres;
128 $names[
$row->usr_id] = $pres;
131 foreach($a_user_id as $id)
134 $names[$id] =
"unknown";
137 return $return_as_array ? $names : $names[$a_user_id[0]];
149 if($public_profile !=
'y' and $public_profile !=
'g')
154 $GLOBALS[
'ilCtrl']->setParameterByClass(
'ilpublicuserprofilegui',
'user',$a_usr_id);
155 return $GLOBALS[
'ilCtrl']->getLinkTargetByClass(
'ilpublicuserprofilegui',
'getHTML');
176 $all[self::START_PD_OVERVIEW] =
'overview';
178 if($a_force_all || ($ilSetting->get(
'disable_my_offers') == 0 &&
179 $ilSetting->get(
'disable_my_memberships') == 0))
181 $all[self::START_PD_SUBSCRIPTION] =
'my_courses_groups';
184 if($a_force_all || !$ilSetting->get(
"disable_personal_workspace"))
186 $all[self::START_PD_WORKSPACE] =
'personal_workspace';
189 include_once(
'./Services/Calendar/classes/class.ilCalendarSettings.php');
191 if($a_force_all || $settings->isEnabled())
193 $all[self::START_PD_CALENDAR] =
'calendar';
196 $all[self::START_REPOSITORY] =
'repository';
198 foreach($all as $idx =>
$lang)
200 $all[$idx] = $lng->txt(
$lang);
217 if($a_value == self::START_REPOSITORY_OBJ)
219 $a_ref_id = (int)$a_ref_id;
221 !$tree->isDeleted($a_ref_id))
223 $ilSetting->set(
"usr_starting_point", $a_value);
224 $ilSetting->set(
"usr_starting_point_ref_id", $a_ref_id);
228 $valid = array_keys(self::getPossibleStartingPoints());
229 if(in_array($a_value,
$valid))
231 $ilSetting->set(
"usr_starting_point", $a_value);
246 $valid = array_keys(self::getPossibleStartingPoints());
247 $current = $ilSetting->get(
"usr_starting_point");
248 if($current == self::START_REPOSITORY_OBJ)
252 else if(!$current || !in_array($current,
$valid))
254 $current = self::START_PD_OVERVIEW;
257 if($ilSetting->get(
'disable_my_offers') == 0 &&
258 $ilSetting->get(
'disable_my_memberships') == 0 &&
259 $ilSetting->get(
'personal_items_default_view') == 1)
261 $current = self::START_PD_SUBSCRIPTION;
264 self::setStartingPoint($current);
266 if($ilUser->getId() == ANONYMOUS_USER_ID ||
269 $current = self::START_REPOSITORY;
284 if(self::hasPersonalStartingPoint())
286 $current = self::getPersonalStartingPoint();
287 if($current == self::START_REPOSITORY_OBJ)
289 $ref_id = self::getPersonalStartingObject();
294 $current = self::getStartingPoint();
295 if($current == self::START_REPOSITORY_OBJ)
297 $ref_id = self::getStartingObject();
302 case self::START_REPOSITORY:
303 case self::START_REPOSITORY_OBJ:
308 include_once(
'./Services/Link/classes/class.ilLink.php');
312 $current = self::START_PD_OVERVIEW;
317 self::START_PD_OVERVIEW =>
'ilias.php?baseClass=ilPersonalDesktopGUI&cmd=jumpToSelectedItems',
318 self::START_PD_SUBSCRIPTION =>
'ilias.php?baseClass=ilPersonalDesktopGUI&cmd=jumpToMemberships',
322 self::START_PD_WORKSPACE =>
'ilias.php?baseClass=ilPersonalDesktopGUI&cmd=jumpToWorkspace',
326 self::START_PD_CALENDAR =>
'ilias.php?baseClass=ilPersonalDesktopGUI&cmd=jumpToCalendar',
332 return $map[$current];
345 return $ilSetting->get(
"usr_starting_point_ref_id");
357 $ilSetting->set(
"usr_starting_point_personal", (
bool)$a_value);
369 return $ilSetting->get(
"usr_starting_point_personal");
381 return (
bool)$ilUser->getPref(
"usr_starting_point");
393 $valid = array_keys(self::getPossibleStartingPoints());
394 $current = $ilUser->getPref(
"usr_starting_point");
395 if($current == self::START_REPOSITORY_OBJ)
399 else if(!$current || !in_array($current,
$valid))
401 return self::getStartingPoint();
419 $ilUser->setPref(
"usr_starting_point", null);
420 $ilUser->setPref(
"usr_starting_point_ref_id", null);
424 if($a_value == self::START_REPOSITORY_OBJ)
426 $a_ref_id = (int)$a_ref_id;
428 !$tree->isDeleted($a_ref_id))
430 $ilUser->setPref(
"usr_starting_point", $a_value);
431 $ilUser->setPref(
"usr_starting_point_ref_id", $a_ref_id);
435 $valid = array_keys(self::getPossibleStartingPoints());
436 if(in_array($a_value,
$valid))
438 $ilUser->setPref(
"usr_starting_point", $a_value);
453 $ref_id = $ilUser->getPref(
"usr_starting_point_ref_id");
456 $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 getStartingPoint()
Get current starting point setting.
_lookupPref($a_usr_id, $a_keyword)
static getStartingPointAsUrl()
Get current starting point setting as URL.
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 hasPersonalStartingPoint()
Can starting point be personalized?
static getPossibleStartingPoints($a_force_all=false)
Get all valid starting points.
static _lookupObjId($a_id)
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)
Get path to personal picture.
const START_PD_SUBSCRIPTION
const START_REPOSITORY_OBJ
static getPersonalStartingObject()
Get ref id of personal starting object.
static setStartingPoint($a_value, $a_ref_id=null)
Set starting point setting.
static togglePersonalStartingPoint($a_value)
Toggle personal starting point setting.
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.