ILIAS  Release_4_4_x_branch Revision 61816
 All Data Structures Namespaces Files Functions Variables Groups Pages
ilPersonalProfileGUI Class Reference

GUI class for personal profile. More...

+ Collaboration diagram for ilPersonalProfileGUI:

Public Member Functions

 ilPersonalProfileGUI ()
 constructor
executeCommand ()
 execute command
 workWithUserSetting ($setting)
 Returns TRUE if working with the given user setting is allowed, FALSE otherwise.
 userSettingVisible ($setting)
 Returns TRUE if user setting is visible, FALSE otherwise.
 userSettingEnabled ($setting)
 Returns TRUE if user setting is enabled, FALSE otherwise.
 uploadUserPicture ()
 Upload user image.
 removeUserPicture ()
 remove user image
 saveProfile ()
 save user profile data
 showProfile ()
 show profile form
 addLocationToForm (ilPropertyFormGUI $a_form, ilObjUser $a_user)
 Add location fields to form if activated.
 setTabs ()
 __showOtherInformations ()
 __showUserDefinedFields ()
 __checkUserDefinedRequiredFields ()
 setHeader ()
 Set header.
 showPersonalData ($a_no_init=false)
 Personal data form.
 initPersonalDataForm ()
 Init personal form.
 savePersonalData ()
 Save personal data form.
 showPublicProfile ($a_no_init=false)
 Public profile form.
 initPublicProfileForm ()
 Init public profile form.
 showPublicProfileFields (ilPropertyformGUI $form, array $prefs, $parent=null, $anonymized=false)
 Add fields to form.
 savePublicProfile ()
 Save public profile form.
 showExportImport ()
 Show export/import.
 exportPersonalData ()
 Export personal data.
 downloadPersonalData ()
 Download personal data export file.
 importPersonalDataSelection ()
 Import personal data selection.
 initPersonalDataImportForm ()
 Init personal data import form.
 importPersonalData ()
 Import personal data.

Data Fields

 $tpl
 $lng
 $ilias
 $ctrl
 $user_defined_fields = null

Protected Member Functions

 getProfilePortfolio ()
 has profile set to a portfolio?

Detailed Description

GUI class for personal profile.

Author
Alex Killing alex..nosp@m.kill.nosp@m.ing@g.nosp@m.mx.d.nosp@m.e
Version
Id:
class.ilPersonalProfileGUI.php 47077 2014-01-08 14:46:43Z smeyer

ilPersonalProfileGUI: ilPublicUserProfileGUI

Definition at line 12 of file class.ilPersonalProfileGUI.php.

Member Function Documentation

ilPersonalProfileGUI::__checkUserDefinedRequiredFields ( )

Definition at line 693 of file class.ilPersonalProfileGUI.php.

References $_POST.

Referenced by saveProfile().

{
foreach($this->user_defined_fields->getVisibleDefinitions() as $definition)
{
$field_id = $definition['field_id'];
if($definition['required'] and !strlen($_POST['udf'][$field_id]))
{
return false;
}
}
return true;
}

+ Here is the caller graph for this function:

ilPersonalProfileGUI::__showOtherInformations ( )

Definition at line 623 of file class.ilPersonalProfileGUI.php.

References userSettingVisible().

{
$d_set = new ilSetting("delicous");
if($this->userSettingVisible("matriculation") or count($this->user_defined_fields->getVisibleDefinitions())
or $d_set->get("user_profile") == "1")
{
return true;
}
return false;
}

+ Here is the call graph for this function:

ilPersonalProfileGUI::__showUserDefinedFields ( )

Definition at line 634 of file class.ilPersonalProfileGUI.php.

References $ilUser, ilUtil\formSelect(), ilUtil\prepareFormOutput(), and UDF_TYPE_TEXT.

{
global $ilUser;
$user_defined_data = $ilUser->getUserDefinedData();
foreach($this->user_defined_fields->getVisibleDefinitions() as $field_id => $definition)
{
if($definition['field_type'] == UDF_TYPE_TEXT)
{
$this->tpl->setCurrentBlock("field_text");
$this->tpl->setVariable("FIELD_VALUE",ilUtil::prepareFormOutput($user_defined_data[$field_id]));
if(!$definition['changeable'])
{
$this->tpl->setVariable("DISABLED_FIELD",'disabled=\"disabled\"');
$this->tpl->setVariable("FIELD_NAME",'udf['.$definition['field_id'].']');
}
else
{
$this->tpl->setVariable("FIELD_NAME",'udf['.$definition['field_id'].']');
}
$this->tpl->parseCurrentBlock();
}
else
{
if($definition['changeable'])
{
$name = 'udf['.$definition['field_id'].']';
$disabled = false;
}
else
{
$name = '';
$disabled = true;
}
$this->tpl->setCurrentBlock("field_select");
$this->tpl->setVariable("SELECT_BOX",ilUtil::formSelect($user_defined_data[$field_id],
$name,
$this->user_defined_fields->fieldValuesToSelectArray(
$definition['field_values']),
false,
true,0,'','',$disabled));
$this->tpl->parseCurrentBlock();
}
$this->tpl->setCurrentBlock("user_defined");
if($definition['required'])
{
$name = $definition['field_name']."<span class=\"asterisk\">*</span>";
}
else
{
$name = $definition['field_name'];
}
$this->tpl->setVariable("TXT_FIELD_NAME",$name);
$this->tpl->parseCurrentBlock();
}
return true;
}

+ Here is the call graph for this function:

ilPersonalProfileGUI::addLocationToForm ( ilPropertyFormGUI  $a_form,
ilObjUser  $a_user 
)

Add location fields to form if activated.

Parameters
ilPropertyFormGUI$a_form
ilObjUser$a_user

Definition at line 537 of file class.ilPersonalProfileGUI.php.

References $ilCtrl, ilPropertyFormGUI\addItem(), ilObjUser\getCity(), ilObjUser\getCountry(), ilGoogleMapUtil\getDefaultSettings(), ilObjUser\getLatitude(), ilObjUser\getLocationZoom(), ilObjUser\getLongitude(), ilObjUser\getStreet(), ilGoogleMapUtil\isActivated(), and ilLocationInputGUI\setLatitude().

Referenced by initPersonalDataForm().

{
global $ilCtrl;
// check google map activation
include_once("./Services/GoogleMaps/classes/class.ilGoogleMapUtil.php");
{
return;
}
$this->lng->loadLanguageModule("gmaps");
// Get user settings
$latitude = $a_user->getLatitude();
$longitude = $a_user->getLongitude();
$zoom = $a_user->getLocationZoom();
// Get Default settings, when nothing is set
if ($latitude == 0 && $longitude == 0 && $zoom == 0)
{
$latitude = $def["latitude"];
$longitude = $def["longitude"];
$zoom = $def["zoom"];
}
$street = $a_user->getStreet();
if (!$street)
{
$street = $this->lng->txt("street");
}
$city = $a_user->getCity();
if (!$city)
{
$city = $this->lng->txt("city");
}
$country = $a_user->getCountry();
if (!$country)
{
$country = $this->lng->txt("country");
}
// location property
$loc_prop = new ilLocationInputGUI($this->lng->txt("location"),
"location");
$loc_prop->setLatitude($latitude);
$loc_prop->setLongitude($longitude);
$loc_prop->setZoom($zoom);
$loc_prop->setAddress($street.",".$city.",".$country);
$a_form->addItem($loc_prop);
}

+ Here is the call graph for this function:

+ Here is the caller graph for this function:

ilPersonalProfileGUI::downloadPersonalData ( )

Download personal data export file.

Parameters
@return

Definition at line 1411 of file class.ilPersonalProfileGUI.php.

References $ilUser.

{
global $ilUser;
$ilUser->sendPersonalDataFile();
}
& ilPersonalProfileGUI::executeCommand ( )

execute command

Definition at line 48 of file class.ilPersonalProfileGUI.php.

References $_GET, $cmd, $ilCtrl, $ilUser, $lng, $tpl, and setTabs().

{
global $ilUser, $ilCtrl, $tpl, $ilTabs, $lng;
$next_class = $this->ctrl->getNextClass();
switch($next_class)
{
case "ilpublicuserprofilegui":
include_once("./Services/User/classes/class.ilPublicUserProfileGUI.php");
$_GET["user_id"] = $ilUser->getId();
$pub_profile_gui = new ilPublicUserProfileGUI($_GET["user_id"]);
$pub_profile_gui->setBackUrl($ilCtrl->getLinkTarget($this, "showPersonalData"));
$ilCtrl->forwardCommand($pub_profile_gui);
$tpl->show();
break;
default:
$this->setTabs();
$cmd = $this->ctrl->getCmd("showPersonalData");
$this->$cmd();
break;
}
return true;
}

+ Here is the call graph for this function:

ilPersonalProfileGUI::exportPersonalData ( )

Export personal data.

Definition at line 1396 of file class.ilPersonalProfileGUI.php.

References $ilCtrl, and $ilUser.

{
global $ilCtrl, $ilUser;
$ilUser->exportPersonalData();
$ilUser->sendPersonalDataFile();
$ilCtrl->redirect($this, "showExportImport");
}
ilPersonalProfileGUI::getProfilePortfolio ( )
protected

has profile set to a portfolio?

Returns
int

Definition at line 1036 of file class.ilPersonalProfileGUI.php.

References $ilSetting, $ilUser, and ilObjPortfolio\getDefaultPortfolio().

Referenced by setTabs().

{
if ($ilSetting->get('user_portfolios'))
{
include_once "Modules/Portfolio/classes/class.ilObjPortfolio.php";
return ilObjPortfolio::getDefaultPortfolio($ilUser->getId());
}
}

+ Here is the call graph for this function:

+ Here is the caller graph for this function:

ilPersonalProfileGUI::ilPersonalProfileGUI ( )

constructor

Definition at line 25 of file class.ilPersonalProfileGUI.php.

References $ilCtrl, $ilias, $lng, $tpl, and ilUserDefinedFields\_getInstance().

{
global $ilias, $tpl, $lng, $rbacsystem, $ilCtrl;
include_once './Services/User/classes/class.ilUserDefinedFields.php';
$this->user_defined_fields =& ilUserDefinedFields::_getInstance();
$this->tpl =& $tpl;
$this->lng =& $lng;
$this->ilias =& $ilias;
$this->ctrl =& $ilCtrl;
$this->settings = $ilias->getAllSettings();
$lng->loadLanguageModule("jsmath");
$lng->loadLanguageModule("pd");
$this->upload_error = "";
$this->password_error = "";
$lng->loadLanguageModule("user");
// $ilCtrl->saveParameter($this, "user_page");
}

+ Here is the call graph for this function:

ilPersonalProfileGUI::importPersonalData ( )

Import personal data.

Parameters
@return

Definition at line 1491 of file class.ilPersonalProfileGUI.php.

References $_POST, $ilCtrl, $ilUser, $tpl, and ilUtil\sendSuccess().

{
global $ilUser, $ilCtrl, $tpl, $ilTabs;
if ($this->form->checkInput())
{
$ilUser->importPersonalData($_FILES["file"],
(int) $_POST["profile_data"],
(int) $_POST["settings"],
(int) $_POST["bookmarks"],
(int) $_POST["notes"],
(int) $_POST["calendar"]
);
ilUtil::sendSuccess($this->lng->txt("msg_obj_modified"), true);
$ilCtrl->redirect($this, "");
}
else
{
$ilTabs->activateTab("export");
$this->setHeader();
$this->form->setValuesByPost();
$tpl->setContent($this->form->getHtml());
$tpl->show();
}
}

+ Here is the call graph for this function:

ilPersonalProfileGUI::importPersonalDataSelection ( )

Import personal data selection.

Parameters
@return

Definition at line 1424 of file class.ilPersonalProfileGUI.php.

References $ilCtrl, $lng, and $tpl.

{
global $lng, $ilCtrl, $tpl, $ilTabs;
$ilTabs->activateTab("export");
$this->setHeader();
$tpl->setContent($this->form->getHTML());
$tpl->show();
}
ilPersonalProfileGUI::initPersonalDataForm ( )

Init personal form.

Definition at line 751 of file class.ilPersonalProfileGUI.php.

References $ilSetting, $ilUser, $lng, $options, addLocationToForm(), UDF_TYPE_SELECT, UDF_TYPE_TEXT, and UDF_TYPE_WYSIWYG.

Referenced by savePersonalData(), and showPersonalData().

{
global $ilSetting, $lng, $ilUser, $styleDefinition, $rbacreview;
include_once("Services/Form/classes/class.ilPropertyFormGUI.php");
$this->form = new ilPropertyFormGUI();
$this->form->setFormAction($this->ctrl->getFormAction($this));
// user defined fields
$user_defined_data = $ilUser->getUserDefinedData();
foreach($this->user_defined_fields->getVisibleDefinitions() as $field_id => $definition)
{
if($definition['field_type'] == UDF_TYPE_TEXT)
{
$this->input["udf_".$definition['field_id']] =
new ilTextInputGUI($definition['field_name'], "udf_".$definition['field_id']);
$this->input["udf_".$definition['field_id']]->setMaxLength(255);
$this->input["udf_".$definition['field_id']]->setSize(40);
}
else if($definition['field_type'] == UDF_TYPE_WYSIWYG)
{
$this->input["udf_".$definition['field_id']] =
new ilTextAreaInputGUI($definition['field_name'], "udf_".$definition['field_id']);
$this->input["udf_".$definition['field_id']]->setUseRte(true);
}
else
{
$options = $this->user_defined_fields->fieldValuesToSelectArray($definition['field_values']);
$this->input["udf_".$definition['field_id']] =
new ilSelectInputGUI($definition['field_name'], "udf_".$definition['field_id']);
$this->input["udf_".$definition['field_id']]->setOptions($options);
}
$value = $user_defined_data["f_".$field_id];
$this->input["udf_".$definition['field_id']]->setValue($value);
if($definition['required'])
{
$this->input["udf_".$definition['field_id']]->setRequired(true);
}
if(!$definition['changeable'] && (!$definition['required'] || $value))
{
$this->input["udf_".$definition['field_id']]->setDisabled(true);
}
// add "please select" if no current value
if($definition['field_type'] == UDF_TYPE_SELECT && !$value)
{
$options = array(""=>$lng->txt("please_select")) + $options;
$this->input["udf_".$definition['field_id']]->setOptions($options);
}
}
// standard fields
include_once("./Services/User/classes/class.ilUserProfile.php");
$up = new ilUserProfile();
$up->skipField("password");
$up->skipGroup("settings");
$up->skipGroup("preferences");
// standard fields
$up->addStandardFieldsToForm($this->form, $ilUser, $this->input);
$this->addLocationToForm($this->form, $ilUser);
$this->form->addCommandButton("savePersonalData", $lng->txt("save"));
}

+ Here is the call graph for this function:

+ Here is the caller graph for this function:

ilPersonalProfileGUI::initPersonalDataImportForm ( )

Init personal data import form.

Parameters
@return

Definition at line 1443 of file class.ilPersonalProfileGUI.php.

References $ilCtrl, $lng, ilFormPropertyGUI\setRequired(), and ilFormPropertyGUI\setTitle().

{
global $lng, $ilCtrl;
include_once("Services/Form/classes/class.ilPropertyFormGUI.php");
$this->form = new ilPropertyFormGUI();
// input file
$fi = new ilFileInputGUI($lng->txt("file"), "file");
$fi->setRequired(true);
$fi->setSuffixes(array("zip"));
$this->form->addItem($fi);
// profile data
$cb = new ilCheckboxInputGUI($this->lng->txt("pd_profile_data"), "profile_data");
$this->form->addItem($cb);
// settings
$cb = new ilCheckboxInputGUI($this->lng->txt("settings"), "settings");
$this->form->addItem($cb);
// bookmarks
$cb = new ilCheckboxInputGUI($this->lng->txt("pd_bookmarks"), "bookmarks");
$this->form->addItem($cb);
// personal notes
$cb = new ilCheckboxInputGUI($this->lng->txt("pd_notes"), "notes");
$this->form->addItem($cb);
// calendar entries
$cb = new ilCheckboxInputGUI($this->lng->txt("pd_private_calendars"), "calendar");
$this->form->addItem($cb);
$this->form->addCommandButton("importPersonalData", $lng->txt("import"));
$this->form->addCommandButton("showExportImport", $lng->txt("cancel"));
$this->form->setTitle($lng->txt("pd_import_personal_data"));
$this->form->setFormAction($ilCtrl->getFormAction($this));
}

+ Here is the call graph for this function:

ilPersonalProfileGUI::initPublicProfileForm ( )

Init public profile form.

Parameters
int$a_modeEdit Mode

Definition at line 1052 of file class.ilPersonalProfileGUI.php.

References $ilSetting, $ilUser, $lng, ilFormPropertyGUI\setInfo(), and ilRadioGroupInputGUI\setValue().

{
include_once("Services/Form/classes/class.ilPropertyFormGUI.php");
$this->form = new ilPropertyFormGUI();
$this->form->setTitle($lng->txt("public_profile"));
$this->form->setDescription($lng->txt("user_public_profile_info"));
$this->form->setFormAction($this->ctrl->getFormAction($this));
$portfolio_id = $this->getProfilePortfolio();
if(!$portfolio_id)
{
// Activate public profile
$radg = new ilRadioGroupInputGUI($lng->txt("user_activate_public_profile"), "public_profile");
$info = $this->lng->txt("user_activate_public_profile_info");
$pub_prof = in_array($ilUser->prefs["public_profile"], array("y", "n", "g"))
? $ilUser->prefs["public_profile"]
: "n";
if (!$ilSetting->get('enable_global_profiles') && $pub_prof == "g")
{
$pub_prof = "y";
}
$radg->setValue($pub_prof);
$op1 = new ilRadioOption($lng->txt("usr_public_profile_disabled"), "n",$lng->txt("usr_public_profile_disabled_info"));
$radg->addOption($op1);
$op2 = new ilRadioOption($lng->txt("usr_public_profile_logged_in"), "y");
$radg->addOption($op2);
if ($ilSetting->get('enable_global_profiles'))
{
$op3 = new ilRadioOption($lng->txt("usr_public_profile_global"), "g");
$radg->addOption($op3);
}
$this->form->addItem($radg);
// #11773
if ($ilSetting->get('user_portfolios'))
{
// #10826
$prtf = "<br />".$lng->txt("user_profile_portfolio");
$prtf .= "<br /><a href=\"ilias.php?baseClass=ilPersonalDesktopGUI&cmd=jumpToPortfolio\">&raquo; ".
$lng->txt("user_portfolios")."</a>";
$info .= $prtf;
}
$radg->setInfo($info);
}
else
{
$prtf = $lng->txt("user_profile_portfolio_selected");
$prtf .= "<br /><a href=\"ilias.php?baseClass=ilPersonalDesktopGUI&cmd=jumpToPortfolio&prt_id=".$portfolio_id."\">&raquo; ".
$lng->txt("portfolio")."</a>";
$info = new ilCustomInputGUI($lng->txt("user_activate_public_profile"));
$info->setHTML($prtf);
$this->form->addItem($info);
}
$this->showPublicProfileFields($this->form, $ilUser->prefs);
$this->form->addCommandButton("savePublicProfile", $lng->txt("save"));
}

+ Here is the call graph for this function:

ilPersonalProfileGUI::removeUserPicture ( )

remove user image

Definition at line 195 of file class.ilPersonalProfileGUI.php.

References $ilUser, and saveProfile().

{
global $ilUser;
$ilUser->removeUserPicture();
$this->saveProfile();
}

+ Here is the call graph for this function:

ilPersonalProfileGUI::savePersonalData ( )

Save personal data form.

Definition at line 825 of file class.ilPersonalProfileGUI.php.

References $_SESSION, $ilCtrl, $ilSetting, $ilUser, $lng, $location, $redirect, $tpl, ilObjUser\_loginExists(), ilSession\get(), initPersonalDataForm(), ilGoogleMapUtil\isActivated(), ilUtil\isLogin(), ilUtil\redirect(), ilUtil\sendFailure(), ilUtil\sendSuccess(), ilSession\set(), ilUtil\stripSlashes(), uploadUserPicture(), and workWithUserSetting().

{
global $tpl, $lng, $ilCtrl, $ilUser, $ilSetting, $ilAuth;
if ($this->form->checkInput())
{
$form_valid = true;
// if form field name differs from setter
$map = array(
"firstname" => "FirstName",
"lastname" => "LastName",
"title" => "UTitle",
"sel_country" => "SelectedCountry",
"phone_office" => "PhoneOffice",
"phone_home" => "PhoneHome",
"phone_mobile" => "PhoneMobile",
"referral_comment" => "Comment"
);
include_once("./Services/User/classes/class.ilUserProfile.php");
$up = new ilUserProfile();
foreach($up->getStandardFields() as $f => $p)
{
// if item is part of form, it is currently valid (if not disabled)
$item = $this->form->getItemByPostVar("usr_".$f);
if($item && !$item->getDisabled())
{
$value = $this->form->getInput("usr_".$f);
switch($f)
{
case "birthday":
if (is_array($value))
{
if (is_array($value['date']))
{
if (($value['d'] > 0) && ($value['m'] > 0) && ($value['y'] > 0))
{
$ilUser->setBirthday(sprintf("%04d-%02d-%02d", $value['y'], $value['m'], $value['d']));
}
else
{
$ilUser->setBirthday("");
}
}
else
{
$ilUser->setBirthday($value['date']);
}
}
break;
default:
$m = ucfirst($f);
if(isset($map[$f]))
{
$m = $map[$f];
}
$ilUser->{"set".$m}($value);
break;
}
}
}
$ilUser->setFullname();
// set instant messengers
if ($this->workWithUserSetting("instant_messengers"))
{
$ilUser->setInstantMessengerId('icq', $this->form->getInput("usr_im_icq"));
$ilUser->setInstantMessengerId('yahoo', $this->form->getInput("usr_im_yahoo"));
$ilUser->setInstantMessengerId('msn', $this->form->getInput("usr_im_msn"));
$ilUser->setInstantMessengerId('aim', $this->form->getInput("usr_im_aim"));
$ilUser->setInstantMessengerId('skype', $this->form->getInput("usr_im_skype"));
$ilUser->setInstantMessengerId('jabber', $this->form->getInput("usr_im_jabber"));
$ilUser->setInstantMessengerId('voip', $this->form->getInput("usr_im_voip"));
}
// check google map activation
include_once("./Services/GoogleMaps/classes/class.ilGoogleMapUtil.php");
{
$location = $this->form->getInput("location");
$ilUser->setLatitude(ilUtil::stripSlashes($location["latitude"]));
$ilUser->setLongitude(ilUtil::stripSlashes($location["longitude"]));
$ilUser->setLocationZoom(ilUtil::stripSlashes($location["zoom"]));
}
// Set user defined data
$defs = $this->user_defined_fields->getVisibleDefinitions();
$udf = array();
foreach ($defs as $definition)
{
$f = "udf_".$definition['field_id'];
$item = $this->form->getItemByPostVar($f);
if ($item && !$item->getDisabled())
{
$udf[$definition['field_id']] = $this->form->getInput($f);
}
}
$ilUser->setUserDefinedData($udf);
// if loginname is changeable -> validate
$un = $this->form->getInput('username');
if((int)$ilSetting->get('allow_change_loginname') &&
$un != $ilUser->getLogin())
{
if(!strlen($un) || !ilUtil::isLogin($un))
{
ilUtil::sendFailure($lng->txt('form_input_not_valid'));
$this->form->getItemByPostVar('username')->setAlert($this->lng->txt('login_invalid'));
$form_valid = false;
}
else if(ilObjUser::_loginExists($un, $ilUser->getId()))
{
ilUtil::sendFailure($lng->txt('form_input_not_valid'));
$this->form->getItemByPostVar('username')->setAlert($this->lng->txt('loginname_already_exists'));
$form_valid = false;
}
else
{
$ilUser->setLogin($un);
try
{
$ilUser->updateLogin($ilUser->getLogin());
$ilAuth->setAuth($ilUser->getLogin());
$ilAuth->start();
}
catch (ilUserException $e)
{
ilUtil::sendFailure($lng->txt('form_input_not_valid'));
$this->form->getItemByPostVar('username')->setAlert($e->getMessage());
$form_valid = false;
}
}
}
// everthing's ok. save form data
if ($form_valid)
{
// profile ok
$ilUser->setProfileIncomplete(false);
// save user data & object_data
$ilUser->setTitle($ilUser->getFullname());
$ilUser->setDescription($ilUser->getEmail());
$ilUser->update();
ilUtil::sendSuccess($lng->txt("msg_obj_modified"), true);
if(ilSession::get('orig_request_target'))
{
$target = ilSession::get('orig_request_target');
ilSession::set('orig_request_target', '');
ilUtil::redirect($target);
}
else if($redirect = $_SESSION['profile_complete_redirect'])
{
unset($_SESSION['profile_complete_redirect']);
}
else
{
$ilCtrl->redirect($this, "showPersonalData");
}
}
}
$this->form->setValuesByPost();
$this->showPersonalData(true);
}

+ Here is the call graph for this function:

ilPersonalProfileGUI::saveProfile ( )

save user profile data

Definition at line 209 of file class.ilPersonalProfileGUI.php.

References $_POST, $GLOBALS, $ilSetting, $ilUser, __checkUserDefinedRequiredFields(), ilUtil\is_email(), ilUtil\sendFailure(), ilUtil\sendSuccess(), showProfile(), ilUtil\stripSlashes(), ilLuceneIndexer\updateLuceneIndex(), and workWithUserSetting().

Referenced by removeUserPicture().

{
global $ilUser ,$ilSetting, $ilAuth;
//init checking var
$form_valid = true;
// testing by ratana ty:
// if people check on check box it will
// write some datata to table usr_pref
// if check on Public Profile
if (($_POST["chk_pub"])=="on")
{
$ilUser->setPref("public_profile","y");
}
else
{
$ilUser->setPref("public_profile","n");
}
// if check on Institute
$val_array = array("institution", "department", "upload", "street",
"zip", "city", "country", "phone_office", "phone_home", "phone_mobile",
"fax", "email", "hobby", "matriculation");
// set public profile preferences
foreach($val_array as $key => $value)
{
if (($_POST["chk_".$value]) == "on")
{
$ilUser->setPref("public_".$value,"y");
}
else
{
$ilUser->setPref("public_".$value,"n");
}
}
$d_set = new ilSetting("delicious");
if ($d_set->get("user_profile"))
{
if (($_POST["chk_delicious"]) == "on")
{
$ilUser->setPref("public_delicious","y");
}
else
{
$ilUser->setPref("public_delicious","n");
}
}
// check dynamically required fields
foreach($this->settings as $key => $val)
{
if (substr($key,0,8) == "require_")
{
$require_keys[] = substr($key,8);
}
}
foreach($require_keys as $key => $val)
{
// exclude required system and registration-only fields
$system_fields = array("login", "default_role", "passwd", "passwd2");
if (!in_array($val, $system_fields))
{
if ($this->workWithUserSetting($val))
{
if (isset($this->settings["require_" . $val]) && $this->settings["require_" . $val])
{
if (empty($_POST["usr_" . $val]))
{
ilUtil::sendFailure($this->lng->txt("fill_out_all_required_fields") . ": " . $this->lng->txt($val));
$form_valid = false;
}
}
}
}
}
// Check user defined required fields
if($form_valid and !$this->__checkUserDefinedRequiredFields())
{
ilUtil::sendFailure($this->lng->txt("fill_out_all_required_fields"));
$form_valid = false;
}
// check email
if ($this->workWithUserSetting("email"))
{
if (!ilUtil::is_email($_POST["usr_email"]) and !empty($_POST["usr_email"]) and $form_valid)
{
ilUtil::sendFailure($this->lng->txt("email_not_valid"));
$form_valid = false;
}
}
//update user data (not saving!)
if ($this->workWithUserSetting("firstname"))
{
$ilUser->setFirstName(ilUtil::stripSlashes($_POST["usr_firstname"]));
}
if ($this->workWithUserSetting("lastname"))
{
$ilUser->setLastName(ilUtil::stripSlashes($_POST["usr_lastname"]));
}
if ($this->workWithUserSetting("gender"))
{
$ilUser->setGender($_POST["usr_gender"]);
}
if ($this->workWithUserSetting("title"))
{
$ilUser->setUTitle(ilUtil::stripSlashes($_POST["usr_title"]));
}
$ilUser->setFullname();
if ($this->workWithUserSetting("institution"))
{
$ilUser->setInstitution(ilUtil::stripSlashes($_POST["usr_institution"]));
}
if ($this->workWithUserSetting("department"))
{
$ilUser->setDepartment(ilUtil::stripSlashes($_POST["usr_department"]));
}
if ($this->workWithUserSetting("street"))
{
$ilUser->setStreet(ilUtil::stripSlashes($_POST["usr_street"]));
}
if ($this->workWithUserSetting("zipcode"))
{
$ilUser->setZipcode(ilUtil::stripSlashes($_POST["usr_zipcode"]));
}
if ($this->workWithUserSetting("city"))
{
$ilUser->setCity(ilUtil::stripSlashes($_POST["usr_city"]));
}
if ($this->workWithUserSetting("country"))
{
$ilUser->setCountry(ilUtil::stripSlashes($_POST["usr_country"]));
}
if ($this->workWithUserSetting("phone_office"))
{
$ilUser->setPhoneOffice(ilUtil::stripSlashes($_POST["usr_phone_office"]));
}
if ($this->workWithUserSetting("phone_home"))
{
$ilUser->setPhoneHome(ilUtil::stripSlashes($_POST["usr_phone_home"]));
}
if ($this->workWithUserSetting("phone_mobile"))
{
$ilUser->setPhoneMobile(ilUtil::stripSlashes($_POST["usr_phone_mobile"]));
}
if ($this->workWithUserSetting("fax"))
{
$ilUser->setFax(ilUtil::stripSlashes($_POST["usr_fax"]));
}
if ($this->workWithUserSetting("email"))
{
$ilUser->setEmail(ilUtil::stripSlashes($_POST["usr_email"]));
}
if ($this->workWithUserSetting("hobby"))
{
$ilUser->setHobby(ilUtil::stripSlashes($_POST["usr_hobby"]));
}
if ($this->workWithUserSetting("referral_comment"))
{
$ilUser->setComment(ilUtil::stripSlashes($_POST["usr_referral_comment"]));
}
if ($this->workWithUserSetting("matriculation"))
{
$ilUser->setMatriculation(ilUtil::stripSlashes($_POST["usr_matriculation"]));
}
// delicious
$d_set = new ilSetting("delicious");
if ($d_set->get("user_profile"))
{
$ilUser->setDelicious(ilUtil::stripSlashes($_POST["usr_delicious"]));
}
// set instant messengers
if ($this->workWithUserSetting("instant_messengers"))
{
$ilUser->setInstantMessengerId('icq',ilUtil::stripSlashes($_POST["usr_im_icq"]));
$ilUser->setInstantMessengerId('yahoo',ilUtil::stripSlashes($_POST["usr_im_yahoo"]));
$ilUser->setInstantMessengerId('msn',ilUtil::stripSlashes($_POST["usr_im_msn"]));
$ilUser->setInstantMessengerId('aim',ilUtil::stripSlashes($_POST["usr_im_aim"]));
$ilUser->setInstantMessengerId('skype',ilUtil::stripSlashes($_POST["usr_im_skype"]));
$ilUser->setInstantMessengerId('jabber',ilUtil::stripSlashes($_POST["usr_im_jabber"]));
$ilUser->setInstantMessengerId('voip',ilUtil::stripSlashes($_POST["usr_im_voip"]));
}
// Set user defined data
$ilUser->setUserDefinedData($_POST['udf']);
// everthing's ok. save form data
if ($form_valid)
{
// init reload var. page should only be reloaded if skin or style were changed
$reload = false;
if ($this->workWithUserSetting("skin_style"))
{
//set user skin and style
if ($_POST["usr_skin_style"] != "")
{
$sknst = explode(":", $_POST["usr_skin_style"]);
if ($ilUser->getPref("style") != $sknst[1] ||
$ilUser->getPref("skin") != $sknst[0])
{
$ilUser->setPref("skin", $sknst[0]);
$ilUser->setPref("style", $sknst[1]);
$reload = true;
}
}
}
if ($this->workWithUserSetting("language"))
{
// reload page if language was changed
//if ($_POST["usr_language"] != "" and $_POST["usr_language"] != $_SESSION['lang'])
// (this didn't work as expected, alex)
if ($_POST["usr_language"] != $ilUser->getLanguage())
{
$reload = true;
}
// set user language
$ilUser->setLanguage($_POST["usr_language"]);
}
if ($this->workWithUserSetting("hits_per_page"))
{
// set user hits per page
if ($_POST["hits_per_page"] != "")
{
$ilUser->setPref("hits_per_page",$_POST["hits_per_page"]);
}
}
// set show users online
if ($this->workWithUserSetting("show_users_online"))
{
$ilUser->setPref("show_users_online", $_POST["show_users_online"]);
}
// set hide own online_status
if ($this->workWithUserSetting("hide_own_online_status"))
{
if ($_POST["chk_hide_own_online_status"] != "")
{
$ilUser->setPref("hide_own_online_status","y");
}
else
{
$ilUser->setPref("hide_own_online_status","n");
}
}
// personal desktop items in news block
/* Subscription Concept is abandonded for now, we show all news of pd items (Alex)
if ($_POST["pd_items_news"] != "")
{
$ilUser->setPref("pd_items_news","y");
}
else
{
$ilUser->setPref("pd_items_news","n");
}
*/
// profile ok
$ilUser->setProfileIncomplete(false);
// save user data & object_data
$ilUser->setTitle($ilUser->getFullname());
$ilUser->setDescription($ilUser->getEmail());
$ilUser->update();
// update lucene index
include_once './Services/Search/classes/Lucene/class.ilLuceneIndexer.php';
ilLuceneIndexer::updateLuceneIndex(array($GLOBALS['ilUser']->getId()));
// reload page only if skin or style were changed
// feedback
if (!empty($this->password_error))
{
ilUtil::sendFailure($this->password_error,true);
}
elseif (!empty($this->upload_error))
{
ilUtil::sendFailure($this->upload_error,true);
}
else if ($reload)
{
// feedback
ilUtil::sendSuccess($this->lng->txt("saved_successfully"),true);
$this->ctrl->redirect($this, "");
//$this->tpl->setVariable("RELOAD","<script language=\"Javascript\">\ntop.location.href = \"./start.php\";\n</script>\n");
}
else
{
ilUtil::sendSuccess($this->lng->txt("saved_successfully"),true);
}
}
$this->showProfile();
}

+ Here is the call graph for this function:

+ Here is the caller graph for this function:

ilPersonalProfileGUI::savePublicProfile ( )

Save public profile form.

Definition at line 1275 of file class.ilPersonalProfileGUI.php.

References $_POST, $GLOBALS, $ilCtrl, $ilUser, $lng, $tpl, ilUtil\sendSuccess(), and ilLuceneIndexer\updateLuceneIndex().

{
global $tpl, $lng, $ilCtrl, $ilUser;
if ($this->form->checkInput())
{
// with active portfolio no options are presented
if(isset($_POST["public_profile"]))
{
$ilUser->setPref("public_profile", $_POST["public_profile"]);
}
// if check on Institute
$val_array = array("title", "birthday", "gender", "institution", "department", "upload", "street",
"zipcode", "city", "country", "sel_country", "phone_office", "phone_home", "phone_mobile",
"fax", "email", "hobby", "matriculation", "location");
// set public profile preferences
foreach($val_array as $key => $value)
{
if (($_POST["chk_".$value]))
{
$ilUser->setPref("public_".$value,"y");
}
else
{
$ilUser->setPref("public_".$value,"n");
}
}
$im_arr = array("icq","yahoo","msn","aim","skype","jabber","voip");
if ($this->userSettingVisible("instant_messengers"))
{
foreach ($im_arr as $im)
{
if (($_POST["chk_im_".$im]))
{
$ilUser->setPref("public_im_".$im,"y");
}
else
{
$ilUser->setPref("public_im_".$im,"n");
}
}
}
// $d_set = new ilSetting("delicious");
// if ($d_set->get("user_profile"))
// {
if (($_POST["chk_delicious"]))
{
$ilUser->setPref("public_delicious","y");
}
else
{
$ilUser->setPref("public_delicious","n");
}
// }
// additional defined user data fields
foreach($this->user_defined_fields->getVisibleDefinitions() as $field_id => $definition)
{
if (($_POST["chk_udf_".$definition["field_id"]]))
{
$ilUser->setPref("public_udf_".$definition["field_id"], "y");
}
else
{
$ilUser->setPref("public_udf_".$definition["field_id"], "n");
}
}
$ilUser->update();
// update lucene index
include_once './Services/Search/classes/Lucene/class.ilLuceneIndexer.php';
ilLuceneIndexer::updateLuceneIndex(array((int) $GLOBALS['ilUser']->getId()));
ilUtil::sendSuccess($lng->txt("msg_obj_modified"), true);
$ilCtrl->redirect($this, "showPublicProfile");
}
$this->form->setValuesByPost();
$tpl->showPublicProfile(true);
}

+ Here is the call graph for this function:

ilPersonalProfileGUI::setHeader ( )

Set header.

Definition at line 709 of file class.ilPersonalProfileGUI.php.

Referenced by showPersonalData().

{
// $this->tpl->setTitleIcon(ilUtil::getImagePath("icon_pd_b.png"), "");
$this->tpl->setTitle($this->lng->txt('personal_profile'));
}

+ Here is the caller graph for this function:

ilPersonalProfileGUI::setTabs ( )

Definition at line 592 of file class.ilPersonalProfileGUI.php.

References $ilUser, and getProfilePortfolio().

Referenced by executeCommand().

{
global $ilTabs, $ilUser, $ilHelp;
$ilHelp->setScreenIdComponent("user");
// personal data
$ilTabs->addTab("personal_data",
$this->lng->txt("personal_data"),
$this->ctrl->getLinkTarget($this, "showPersonalData"));
// public profile
$ilTabs->addTab("public_profile",
$this->lng->txt("public_profile"),
$this->ctrl->getLinkTarget($this, "showPublicProfile"));
// export
$ilTabs->addTab("export",
$this->lng->txt("export")."/".$this->lng->txt("import"),
$this->ctrl->getLinkTarget($this, "showExportImport"));
if($ilUser->getPref("public_profile") != "n" || $this->getProfilePortfolio())
{
// profile preview
$ilTabs->addNonTabbedLink("profile_preview",
$this->lng->txt("user_profile_preview"),
$this->ctrl->getLinkTargetByClass("ilpublicuserprofilegui", "view"));
}
}

+ Here is the call graph for this function:

+ Here is the caller graph for this function:

ilPersonalProfileGUI::showExportImport ( )

Show export/import.

Parameters
@return

Definition at line 1367 of file class.ilPersonalProfileGUI.php.

References $ilCtrl, $ilUser, and $tpl.

{
global $ilToolbar, $ilCtrl, $tpl, $ilTabs, $ilUser;
$ilTabs->activateTab("export");
$this->setHeader();
$ilToolbar->addButton($this->lng->txt("pd_export_profile"),
$ilCtrl->getLinkTarget($this, "exportPersonalData"));
$exp_file = $ilUser->getPersonalDataExportFile();
if ($exp_file != "")
{
$ilToolbar->addSeparator();
$ilToolbar->addButton($this->lng->txt("pd_download_last_export_file"),
$ilCtrl->getLinkTarget($this, "downloadPersonalData"));
}
$ilToolbar->addSeparator();
$ilToolbar->addButton($this->lng->txt("pd_import_personal_data"),
$ilCtrl->getLinkTarget($this, "importPersonalDataSelection"));
$tpl->show();
}
ilPersonalProfileGUI::showPersonalData (   $a_no_init = false)

Personal data form.

Definition at line 724 of file class.ilPersonalProfileGUI.php.

References $ilias, $ilSetting, $ilUser, $lng, initPersonalDataForm(), ilUtil\sendInfo(), and setHeader().

Referenced by showProfile().

{
global $ilUser, $styleDefinition, $rbacreview, $ilias, $lng, $ilSetting, $ilTabs;
$ilTabs->activateTab("personal_data");
$settings = $ilias->getAllSettings();
$this->setHeader();
if (!$a_no_init)
{
// catch feedback message
if ($ilUser->getProfileIncomplete())
{
ilUtil::sendInfo($lng->txt("profile_incomplete"));
}
}
$this->tpl->setContent($this->form->getHTML());
$this->tpl->show();
}

+ Here is the call graph for this function:

+ Here is the caller graph for this function:

ilPersonalProfileGUI::showProfile ( )

show profile form

/OLD IMPLEMENTATION DEPRECATED

Definition at line 526 of file class.ilPersonalProfileGUI.php.

References showPersonalData().

Referenced by saveProfile().

{
$this->showPersonalData();
}

+ Here is the call graph for this function:

+ Here is the caller graph for this function:

ilPersonalProfileGUI::showPublicProfile (   $a_no_init = false)

Public profile form.

Definition at line 1009 of file class.ilPersonalProfileGUI.php.

References $ilSetting, $ilUser, and $lng.

{
global $ilUser, $lng, $ilSetting, $ilTabs;
$ilTabs->activateTab("public_profile");
$this->setHeader();
if (!$a_no_init)
{
}
$ptpl = new ilTemplate("tpl.edit_personal_profile.html", true, true, "Services/User");
$ptpl->setVariable("FORM", $this->form->getHTML());
include_once("./Services/User/classes/class.ilPublicUserProfileGUI.php");
$pub_profile = new ilPublicUserProfileGUI($ilUser->getId());
$ptpl->setVariable("PREVIEW", $pub_profile->getEmbeddable());
$this->tpl->setContent($ptpl->get());
$this->tpl->show();
}
ilPersonalProfileGUI::showPublicProfileFields ( ilPropertyformGUI  $form,
array  $prefs,
  $parent = null,
  $anonymized = false 
)

Add fields to form.

Parameters
ilPropertyformGUI$form
array$prefs
object$parent
bool$a_anonymized

Definition at line 1125 of file class.ilPersonalProfileGUI.php.

References $ilUser, ilObjUser\_getPersonalPicturePath(), ilDatePresentation\formatDate(), IL_CAL_DATE, ilGoogleMapUtil\isActivated(), ilCheckboxInputGUI\setChecked(), and ilCheckboxInputGUI\setOptionTitle().

{
global $ilUser;
$birthday = $ilUser->getBirthday();
if($birthday)
{
$birthday = ilDatePresentation::formatDate(new ilDate($birthday, IL_CAL_DATE));
}
$gender = $ilUser->getGender();
if($gender)
{
$gender = $this->lng->txt("gender_".$gender);
}
if ($ilUser->getSelectedCountry() != "")
{
$this->lng->loadLanguageModule("meta");
$txt_sel_country = $this->lng->txt("meta_c_".$ilUser->getSelectedCountry());
}
// profile picture
$pic = ilObjUser::_getPersonalPicturePath($ilUser->getId(), "xsmall", true, true);
if($pic)
{
$pic = "<img src=\"".$pic."\" />";
}
// personal data
$val_array = array(
"title" => $ilUser->getUTitle(),
"birthday" => $birthday,
"gender" => $gender,
"institution" => $ilUser->getInstitution(),
"department" => $ilUser->getDepartment(),
"upload" => $pic,
"street" => $ilUser->getStreet(),
"zipcode" => $ilUser->getZipcode(),
"city" => $ilUser->getCity(),
"country" => $ilUser->getCountry(),
"sel_country" => $txt_sel_country,
"phone_office" => $ilUser->getPhoneOffice(),
"phone_home" => $ilUser->getPhoneHome(),
"phone_mobile" => $ilUser->getPhoneMobile(),
"fax" => $ilUser->getFax(),
"email" => $ilUser->getEmail(),
"hobby" => $ilUser->getHobby(),
"matriculation" => $ilUser->getMatriculation(),
"delicious" => $ilUser->getDelicious()
);
// location
include_once("./Services/GoogleMaps/classes/class.ilGoogleMapUtil.php");
{
$val_array["location"] = "";
}
foreach($val_array as $key => $value)
{
if($anonymized)
{
$value = null;
}
if ($this->userSettingVisible($key))
{
// public setting
if ($key == "upload")
{
$cb = new ilCheckboxInputGUI($this->lng->txt("personal_picture"), "chk_".$key);
}
else
{
$cb = new ilCheckboxInputGUI($this->lng->txt($key), "chk_".$key);
}
if ($prefs["public_".$key] == "y")
{
$cb->setChecked(true);
}
//$cb->setInfo($value);
$cb->setOptionTitle($value);
if(!$parent)
{
$form->addItem($cb);
}
else
{
$parent->addSubItem($cb);
}
}
}
$im_arr = array("icq","yahoo","msn","aim","skype","jabber","voip");
if ($this->userSettingVisible("instant_messengers"))
{
foreach ($im_arr as $im)
{
// public setting
$cb = new ilCheckboxInputGUI($this->lng->txt("im_".$im), "chk_im_".$im);
//$cb->setInfo($ilUser->getInstantMessengerId($im));
$cb->setOptionTitle($ilUser->getInstantMessengerId($im));
if ($prefs["public_im_".$im] != "n")
{
$cb->setChecked(true);
}
if(!$parent)
{
$form->addItem($cb);
}
else
{
$parent->addSubItem($cb);
}
}
}
// additional defined user data fields
$user_defined_data = array();
if(!$anonymized)
{
$user_defined_data = $ilUser->getUserDefinedData();
}
foreach($this->user_defined_fields->getVisibleDefinitions() as $field_id => $definition)
{
// public setting
$cb = new ilCheckboxInputGUI($definition["field_name"], "chk_udf_".$definition["field_id"]);
$cb->setOptionTitle($user_defined_data["f_".$definition["field_id"]]);
if ($prefs["public_udf_".$definition["field_id"]] == "y")
{
$cb->setChecked(true);
}
if(!$parent)
{
$form->addItem($cb);
}
else
{
$parent->addSubItem($cb);
}
}
}

+ Here is the call graph for this function:

ilPersonalProfileGUI::uploadUserPicture ( )

Upload user image.

Definition at line 125 of file class.ilPersonalProfileGUI.php.

References $ilUser, ilUtil\escapeShellArg(), ilUtil\execConvert(), ilUtil\getWebspaceDir(), ilUtil\isConvertVersionAtLeast(), ilUtil\sendFailure(), and workWithUserSetting().

Referenced by savePersonalData().

{
global $ilUser;
if ($this->workWithUserSetting("upload"))
{
if (!$this->form->hasFileUpload("userfile"))
{
if ($this->form->getItemByPostVar("userfile")->getDeletionFlag())
{
$ilUser->removeUserPicture();
}
return;
}
else
{
$webspace_dir = ilUtil::getWebspaceDir();
$image_dir = $webspace_dir."/usr_images";
$store_file = "usr_".$ilUser->getID()."."."jpg";
// store filename
$ilUser->setPref("profile_image", $store_file);
$ilUser->update();
// move uploaded file
$uploaded_file = $this->form->moveFileUpload($image_dir,
"userfile", "upload_".$ilUser->getId()."pic");
if (!$uploaded_file)
{
ilUtil::sendFailure($this->lng->txt("upload_error", true));
$this->ctrl->redirect($this, "showProfile");
}
chmod($uploaded_file, 0770);
// take quality 100 to avoid jpeg artefacts when uploading jpeg files
// taking only frame [0] to avoid problems with animated gifs
$show_file = "$image_dir/usr_".$ilUser->getId().".jpg";
$thumb_file = "$image_dir/usr_".$ilUser->getId()."_small.jpg";
$xthumb_file = "$image_dir/usr_".$ilUser->getId()."_xsmall.jpg";
$xxthumb_file = "$image_dir/usr_".$ilUser->getId()."_xxsmall.jpg";
$uploaded_file = ilUtil::escapeShellArg($uploaded_file);
$show_file = ilUtil::escapeShellArg($show_file);
$thumb_file = ilUtil::escapeShellArg($thumb_file);
$xthumb_file = ilUtil::escapeShellArg($xthumb_file);
$xxthumb_file = ilUtil::escapeShellArg($xxthumb_file);
{
ilUtil::execConvert($uploaded_file . "[0] -geometry 200x200^ -gravity center -extent 200x200 -quality 100 JPEG:".$show_file);
ilUtil::execConvert($uploaded_file . "[0] -geometry 100x100^ -gravity center -extent 100x100 -quality 100 JPEG:".$thumb_file);
ilUtil::execConvert($uploaded_file . "[0] -geometry 75x75^ -gravity center -extent 75x75 -quality 100 JPEG:".$xthumb_file);
ilUtil::execConvert($uploaded_file . "[0] -geometry 30x30^ -gravity center -extent 30x30 -quality 100 JPEG:".$xxthumb_file);
}
else
{
ilUtil::execConvert($uploaded_file . "[0] -geometry 200x200 -quality 100 JPEG:".$show_file);
ilUtil::execConvert($uploaded_file . "[0] -geometry 100x100 -quality 100 JPEG:".$thumb_file);
ilUtil::execConvert($uploaded_file . "[0] -geometry 75x75 -quality 100 JPEG:".$xthumb_file);
ilUtil::execConvert($uploaded_file . "[0] -geometry 30x30 -quality 100 JPEG:".$xxthumb_file);
}
}
}
// $this->saveProfile();
}

+ Here is the call graph for this function:

+ Here is the caller graph for this function:

ilPersonalProfileGUI::userSettingEnabled (   $setting)

Returns TRUE if user setting is enabled, FALSE otherwise.

Definition at line 112 of file class.ilPersonalProfileGUI.php.

References $result.

{
$result = TRUE;
if ($this->settings["usr_settings_disable_".$setting] == 1)
{
$result = FALSE;
}
return $result;
}
ilPersonalProfileGUI::userSettingVisible (   $setting)

Returns TRUE if user setting is visible, FALSE otherwise.

Definition at line 97 of file class.ilPersonalProfileGUI.php.

References $result.

Referenced by __showOtherInformations().

{
$result = TRUE;
if (isset($this->settings["usr_settings_hide_".$setting]) &&
$this->settings["usr_settings_hide_".$setting] == 1)
{
$result = FALSE;
}
return $result;
}

+ Here is the caller graph for this function:

ilPersonalProfileGUI::workWithUserSetting (   $setting)

Returns TRUE if working with the given user setting is allowed, FALSE otherwise.

Definition at line 79 of file class.ilPersonalProfileGUI.php.

References $result.

Referenced by savePersonalData(), saveProfile(), and uploadUserPicture().

{
$result = TRUE;
if ($this->settings["usr_settings_hide_".$setting] == 1)
{
$result = FALSE;
}
if ($this->settings["usr_settings_disable_".$setting] == 1)
{
$result = FALSE;
}
return $result;
}

+ Here is the caller graph for this function:

Field Documentation

ilPersonalProfileGUI::$ctrl

Definition at line 17 of file class.ilPersonalProfileGUI.php.

ilPersonalProfileGUI::$ilias

Definition at line 16 of file class.ilPersonalProfileGUI.php.

Referenced by ilPersonalProfileGUI(), and showPersonalData().

ilPersonalProfileGUI::$lng
ilPersonalProfileGUI::$tpl
ilPersonalProfileGUI::$user_defined_fields = null

Definition at line 19 of file class.ilPersonalProfileGUI.php.


The documentation for this class was generated from the following file: