70 $this->main_tpl = $DIC->ui()->mainTemplate();
71 $this->lng = $DIC->language();
72 $this->ctrl = $DIC->ctrl();
73 $this->lng->loadLanguageModule(
"user");
74 $this->
ui = $DIC->ui();
75 $this->
user = $DIC->user();
77 $this->request = $DIC->http()->request();
90 $next_class = $this->ctrl->getNextClass();
92 switch ($next_class) {
94 $cmd = $this->ctrl->getCmd(
"showPrivacySettings");
98 $this->main_tpl->printToStdout();
114 return $this->user_settings_config->isVisibleAndChangeable($setting);
123 return $this->user_settings_config->isVisible($setting);
137 if ($this->checklist_status->anyVisibilitySettings()) {
138 if (is_null($form)) {
141 $html =
$ui->renderer()->render([$form]);
145 if ($this->profile_mode->isEnabled()) {
148 if (!$this->checklist_status->anyVisibilitySettings()) {
149 $html .=
$ui->renderer()->render([
$ui->factory()->messageBox()->info(
$lng->txt(
"usr_public_profile_disabled"))]);
164 if ($awrn_set->get(
"awrn_enabled",
false) && $this->
userSettingVisible(
"hide_own_online_status")) {
201 $lng->loadLanguageModule(
"awrn");
203 $default = ($this->
settings->get(
'hide_own_online_status') ==
"n")
204 ? $this->lng->txt(
"user_awrn_show")
205 : $this->lng->txt(
"user_awrn_hide");
208 "x" => $this->lng->txt(
"user_awrn_default").
" (".$default.
")",
209 "n" => $this->lng->txt(
"user_awrn_show"),
210 "y" => $this->lng->txt(
"user_awrn_hide"));
211 $val =
$user->prefs[
"hide_own_online_status"];
215 $fields[
"hide_own_online_status"] =
$f->input()->field()->select(
216 $lng->txt(
"awrn_user_show"),
218 $lng->txt(
"awrn_hide_from_awareness_info"))
221 ->withDisabled(
$settings->get(
"usr_settings_disable_hide_own_online_status")
227 $lng->loadLanguageModule(
'buddysystem');
228 $fields[
"bs_allow_to_contact_me"] =
$f->input()->field()->checkbox(
229 $lng->txt(
"buddy_allow_to_contact_me"),
230 $lng->txt(
"buddy_allow_to_contact_me_info")
232 ->withValue(
$user->prefs[
'bs_allow_to_contact_me'] ==
'y')
233 ->withDisabled(
$settings->get(
'usr_settings_disable_bs_allow_to_contact_me'));
237 $section1 =
$f->input()->field()->section($fields,
$lng->txt(
"user_visibility_settings"));
239 $form_action =
$ctrl->getLinkTarget($this,
"savePrivacySettings");
240 return $f->input()->container()->form()->standard($form_action, [
"sec" => $section1]);
254 if (
$request->getMethod() ==
"POST") {
255 $form = $form->withRequest(
$request);
256 $data = $form->getData();
257 if (is_array(
$data[
"sec"])) {
259 $val =
$data[
"sec"][
"hide_own_online_status"];
263 $user->setPref(
"hide_own_online_status",
267 if (
$data[
"sec"][
"bs_allow_to_contact_me"]) {
268 $user->setPref(
"bs_allow_to_contact_me",
"y");
270 $user->setPref(
"bs_allow_to_contact_me",
"n");
275 ilUtil::sendSuccess(
$lng->txt(
"msg_obj_modified"),
true);
276 $ctrl->redirect($this,
"");
initPrivacySettingsForm()
Init form.
Personal profile publishing mode of a iser.
workWithUserSetting(string $setting)
isAwarnessSettingVisible()
Is awareness tool setting visible.
executeCommand()
execute command
GUI class for public user profile presentation.
userSettingVisible(string $setting)
const STEP_VISIBILITY_OPTIONS
savePrivacySettings()
Save privacy settings.
getEmbeddable($a_add_goto=false)
get public profile html code
showPrivacySettings($form=null)
General settings form.
User settings configuration (what preferences can be visible/changed/...)
User privacy settings (currently located under "Profile and Privacy")
isContactSettingVisible()
Is contact setting visible.