]> git.mxchange.org Git - friendica.git/blob - mod/settings.php
Remove unneeded Config namespace usages
[friendica.git] / mod / settings.php
1 <?php
2 /**
3  * @file mod/settings.php
4  */
5
6 use Friendica\App;
7 use Friendica\BaseModule;
8 use Friendica\Content\Feature;
9 use Friendica\Content\Nav;
10 use Friendica\Core\ACL;
11 use Friendica\Core\Hook;
12 use Friendica\Core\Logger;
13 use Friendica\Core\Renderer;
14 use Friendica\Core\Session;
15 use Friendica\Core\Theme;
16 use Friendica\Core\Worker;
17 use Friendica\Database\DBA;
18 use Friendica\DI;
19 use Friendica\Model\Contact;
20 use Friendica\Model\GContact;
21 use Friendica\Model\Group;
22 use Friendica\Model\User;
23 use Friendica\Module\Security\Login;
24 use Friendica\Protocol\Email;
25 use Friendica\Util\Strings;
26 use Friendica\Util\Temporal;
27 use Friendica\Worker\Delivery;
28
29 function get_theme_config_file($theme)
30 {
31         $theme = Strings::sanitizeFilePathItem($theme);
32
33         $a = DI::app();
34         $base_theme = $a->theme_info['extends'] ?? '';
35
36         if (file_exists("view/theme/$theme/config.php")) {
37                 return "view/theme/$theme/config.php";
38         }
39         if ($base_theme && file_exists("view/theme/$base_theme/config.php")) {
40                 return "view/theme/$base_theme/config.php";
41         }
42         return null;
43 }
44
45 function settings_init(App $a)
46 {
47         if (!local_user()) {
48                 notice(DI::l10n()->t('Permission denied.') . EOL);
49                 return;
50         }
51
52         // These lines provide the javascript needed by the acl selector
53
54         $tpl = Renderer::getMarkupTemplate('settings/head.tpl');
55         DI::page()['htmlhead'] .= Renderer::replaceMacros($tpl, [
56                 '$ispublic' => DI::l10n()->t('everybody')
57         ]);
58
59         $tabs = [
60                 [
61                         'label' => DI::l10n()->t('Account'),
62                         'url'   => 'settings',
63                         'selected'      =>  (($a->argc == 1) && ($a->argv[0] === 'settings')?'active':''),
64                         'accesskey' => 'o',
65                 ],
66         ];
67
68         $tabs[] = [
69                 'label' => DI::l10n()->t('Two-factor authentication'),
70                 'url' => 'settings/2fa',
71                 'selected' => (($a->argc > 1) && ($a->argv[1] === '2fa') ? 'active' : ''),
72                 'accesskey' => 'o',
73         ];
74
75         $tabs[] =       [
76                 'label' => DI::l10n()->t('Profiles'),
77                 'url'   => 'profiles',
78                 'selected'      => (($a->argc == 1) && ($a->argv[0] === 'profiles')?'active':''),
79                 'accesskey' => 'p',
80         ];
81
82         if (Feature::get()) {
83                 $tabs[] =       [
84                                         'label' => DI::l10n()->t('Additional features'),
85                                         'url'   => 'settings/features',
86                                         'selected'      => (($a->argc > 1) && ($a->argv[1] === 'features') ? 'active' : ''),
87                                         'accesskey' => 't',
88                                 ];
89         }
90
91         $tabs[] =       [
92                 'label' => DI::l10n()->t('Display'),
93                 'url'   => 'settings/display',
94                 'selected'      => (($a->argc > 1) && ($a->argv[1] === 'display')?'active':''),
95                 'accesskey' => 'i',
96         ];
97
98         $tabs[] =       [
99                 'label' => DI::l10n()->t('Social Networks'),
100                 'url'   => 'settings/connectors',
101                 'selected'      => (($a->argc > 1) && ($a->argv[1] === 'connectors')?'active':''),
102                 'accesskey' => 'w',
103         ];
104
105         $tabs[] =       [
106                 'label' => DI::l10n()->t('Addons'),
107                 'url'   => 'settings/addon',
108                 'selected'      => (($a->argc > 1) && ($a->argv[1] === 'addon')?'active':''),
109                 'accesskey' => 'l',
110         ];
111
112         $tabs[] =       [
113                 'label' => DI::l10n()->t('Delegations'),
114                 'url'   => 'settings/delegation',
115                 'selected'      => (($a->argc > 1) && ($a->argv[1] === 'delegation')?'active':''),
116                 'accesskey' => 'd',
117         ];
118
119         $tabs[] =       [
120                 'label' => DI::l10n()->t('Connected apps'),
121                 'url' => 'settings/oauth',
122                 'selected' => (($a->argc > 1) && ($a->argv[1] === 'oauth')?'active':''),
123                 'accesskey' => 'b',
124         ];
125
126         $tabs[] =       [
127                 'label' => DI::l10n()->t('Export personal data'),
128                 'url' => 'settings/userexport',
129                 'selected' => (($a->argc > 1) && ($a->argv[1] === 'userexport')?'active':''),
130                 'accesskey' => 'e',
131         ];
132
133         $tabs[] =       [
134                 'label' => DI::l10n()->t('Remove account'),
135                 'url' => 'removeme',
136                 'selected' => (($a->argc == 1) && ($a->argv[0] === 'removeme')?'active':''),
137                 'accesskey' => 'r',
138         ];
139
140
141         $tabtpl = Renderer::getMarkupTemplate("generic_links_widget.tpl");
142         DI::page()['aside'] = Renderer::replaceMacros($tabtpl, [
143                 '$title' => DI::l10n()->t('Settings'),
144                 '$class' => 'settings-widget',
145                 '$items' => $tabs,
146         ]);
147
148 }
149
150 function settings_post(App $a)
151 {
152         if (!local_user()) {
153                 return;
154         }
155
156         if (!empty($_SESSION['submanage'])) {
157                 return;
158         }
159
160         if (count($a->user) && !empty($a->user['uid']) && $a->user['uid'] != local_user()) {
161                 notice(DI::l10n()->t('Permission denied.') . EOL);
162                 return;
163         }
164
165         $old_page_flags = $a->user['page-flags'];
166
167         if (($a->argc > 1) && ($a->argv[1] === 'oauth') && !empty($_POST['remove'])) {
168                 BaseModule::checkFormSecurityTokenRedirectOnError('/settings/oauth', 'settings_oauth');
169
170                 $key = $_POST['remove'];
171                 DBA::delete('tokens', ['id' => $key, 'uid' => local_user()]);
172                 DI::baseUrl()->redirect('settings/oauth/', true);
173                 return;
174         }
175
176         if (($a->argc > 2) && ($a->argv[1] === 'oauth')  && ($a->argv[2] === 'edit'||($a->argv[2] === 'add')) && !empty($_POST['submit'])) {
177                 BaseModule::checkFormSecurityTokenRedirectOnError('/settings/oauth', 'settings_oauth');
178
179                 $name     = $_POST['name']     ?? '';
180                 $key      = $_POST['key']      ?? '';
181                 $secret   = $_POST['secret']   ?? '';
182                 $redirect = $_POST['redirect'] ?? '';
183                 $icon     = $_POST['icon']     ?? '';
184
185                 if ($name == "" || $key == "" || $secret == "") {
186                         notice(DI::l10n()->t("Missing some important data!"));
187                 } else {
188                         if ($_POST['submit'] == DI::l10n()->t("Update")) {
189                                 q("UPDATE clients SET
190                                                         client_id='%s',
191                                                         pw='%s',
192                                                         name='%s',
193                                                         redirect_uri='%s',
194                                                         icon='%s',
195                                                         uid=%d
196                                                 WHERE client_id='%s'",
197                                         DBA::escape($key),
198                                         DBA::escape($secret),
199                                         DBA::escape($name),
200                                         DBA::escape($redirect),
201                                         DBA::escape($icon),
202                                         local_user(),
203                                         DBA::escape($key)
204                                 );
205                         } else {
206                                 q("INSERT INTO clients
207                                                         (client_id, pw, name, redirect_uri, icon, uid)
208                                                 VALUES ('%s', '%s', '%s', '%s', '%s',%d)",
209                                         DBA::escape($key),
210                                         DBA::escape($secret),
211                                         DBA::escape($name),
212                                         DBA::escape($redirect),
213                                         DBA::escape($icon),
214                                         local_user()
215                                 );
216                         }
217                 }
218                 DI::baseUrl()->redirect('settings/oauth/', true);
219                 return;
220         }
221
222         if (($a->argc > 1) && ($a->argv[1] == 'addon')) {
223                 BaseModule::checkFormSecurityTokenRedirectOnError('/settings/addon', 'settings_addon');
224
225                 Hook::callAll('addon_settings_post', $_POST);
226                 return;
227         }
228
229         if (($a->argc > 1) && ($a->argv[1] == 'connectors')) {
230                 BaseModule::checkFormSecurityTokenRedirectOnError('/settings/connectors', 'settings_connectors');
231
232                 if (!empty($_POST['general-submit'])) {
233                         DI::pConfig()->set(local_user(), 'system', 'accept_only_sharer', intval($_POST['accept_only_sharer']));
234                         DI::pConfig()->set(local_user(), 'system', 'disable_cw', intval($_POST['disable_cw']));
235                         DI::pConfig()->set(local_user(), 'system', 'no_intelligent_shortening', intval($_POST['no_intelligent_shortening']));
236                         DI::pConfig()->set(local_user(), 'system', 'attach_link_title', intval($_POST['attach_link_title']));
237                         DI::pConfig()->set(local_user(), 'system', 'ostatus_autofriend', intval($_POST['snautofollow']));
238                         DI::pConfig()->set(local_user(), 'ostatus', 'default_group', $_POST['group-selection']);
239                         DI::pConfig()->set(local_user(), 'ostatus', 'legacy_contact', $_POST['legacy_contact']);
240                 } elseif (!empty($_POST['imap-submit'])) {
241                         $mail_server       =                 $_POST['mail_server']       ?? '';
242                         $mail_port         =                 $_POST['mail_port']         ?? '';
243                         $mail_ssl          = strtolower(trim($_POST['mail_ssl']          ?? ''));
244                         $mail_user         =                 $_POST['mail_user']         ?? '';
245                         $mail_pass         =            trim($_POST['mail_pass']         ?? '');
246                         $mail_action       =            trim($_POST['mail_action']       ?? '');
247                         $mail_movetofolder =            trim($_POST['mail_movetofolder'] ?? '');
248                         $mail_replyto      =                 $_POST['mail_replyto']      ?? '';
249                         $mail_pubmail      =                 $_POST['mail_pubmail']      ?? '';
250
251                         if (
252                                 !DI::config()->get('system', 'dfrn_only')
253                                 && function_exists('imap_open')
254                                 && !DI::config()->get('system', 'imap_disabled')
255                         ) {
256                                 $failed = false;
257                                 $r = q("SELECT * FROM `mailacct` WHERE `uid` = %d LIMIT 1",
258                                         intval(local_user())
259                                 );
260                                 if (!DBA::isResult($r)) {
261                                         DBA::insert('mailacct', ['uid' => local_user()]);
262                                 }
263                                 if (strlen($mail_pass)) {
264                                         $pass = '';
265                                         openssl_public_encrypt($mail_pass, $pass, $a->user['pubkey']);
266                                         DBA::update('mailacct', ['pass' => bin2hex($pass)], ['uid' => local_user()]);
267                                 }
268                                 $r = q("UPDATE `mailacct` SET `server` = '%s', `port` = %d, `ssltype` = '%s', `user` = '%s',
269                                         `action` = %d, `movetofolder` = '%s',
270                                         `mailbox` = 'INBOX', `reply_to` = '%s', `pubmail` = %d WHERE `uid` = %d",
271                                         DBA::escape($mail_server),
272                                         intval($mail_port),
273                                         DBA::escape($mail_ssl),
274                                         DBA::escape($mail_user),
275                                         intval($mail_action),
276                                         DBA::escape($mail_movetofolder),
277                                         DBA::escape($mail_replyto),
278                                         intval($mail_pubmail),
279                                         intval(local_user())
280                                 );
281                                 Logger::log("mail: updating mailaccount. Response: ".print_r($r, true));
282                                 $r = q("SELECT * FROM `mailacct` WHERE `uid` = %d LIMIT 1",
283                                         intval(local_user())
284                                 );
285                                 if (DBA::isResult($r)) {
286                                         $eacct = $r[0];
287                                         $mb = Email::constructMailboxName($eacct);
288
289                                         if (strlen($eacct['server'])) {
290                                                 $dcrpass = '';
291                                                 openssl_private_decrypt(hex2bin($eacct['pass']), $dcrpass, $a->user['prvkey']);
292                                                 $mbox = Email::connect($mb, $mail_user, $dcrpass);
293                                                 unset($dcrpass);
294                                                 if (!$mbox) {
295                                                         $failed = true;
296                                                         notice(DI::l10n()->t('Failed to connect with email account using the settings provided.') . EOL);
297                                                 }
298                                         }
299                                 }
300                                 if (!$failed) {
301                                         info(DI::l10n()->t('Email settings updated.') . EOL);
302                                 }
303                         }
304                 }
305
306                 Hook::callAll('connector_settings_post', $_POST);
307                 return;
308         }
309
310         if (($a->argc > 1) && ($a->argv[1] === 'features')) {
311                 BaseModule::checkFormSecurityTokenRedirectOnError('/settings/features', 'settings_features');
312                 foreach ($_POST as $k => $v) {
313                         if (strpos($k, 'feature_') === 0) {
314                                 DI::pConfig()->set(local_user(), 'feature', substr($k, 8), ((intval($v)) ? 1 : 0));
315                         }
316                 }
317                 info(DI::l10n()->t('Features updated') . EOL);
318                 return;
319         }
320
321         if (($a->argc > 1) && ($a->argv[1] === 'display')) {
322                 BaseModule::checkFormSecurityTokenRedirectOnError('/settings/display', 'settings_display');
323
324                 $theme              = !empty($_POST['theme'])              ? Strings::escapeTags(trim($_POST['theme']))        : $a->user['theme'];
325                 $mobile_theme       = !empty($_POST['mobile_theme'])       ? Strings::escapeTags(trim($_POST['mobile_theme'])) : '';
326                 $nosmile            = !empty($_POST['nosmile'])            ? intval($_POST['nosmile'])            : 0;
327                 $first_day_of_week  = !empty($_POST['first_day_of_week'])  ? intval($_POST['first_day_of_week'])  : 0;
328                 $noinfo             = !empty($_POST['noinfo'])             ? intval($_POST['noinfo'])             : 0;
329                 $infinite_scroll    = !empty($_POST['infinite_scroll'])    ? intval($_POST['infinite_scroll'])    : 0;
330                 $no_auto_update     = !empty($_POST['no_auto_update'])     ? intval($_POST['no_auto_update'])     : 0;
331                 $bandwidth_saver    = !empty($_POST['bandwidth_saver'])    ? intval($_POST['bandwidth_saver'])    : 0;
332                 $no_smart_threading = !empty($_POST['no_smart_threading']) ? intval($_POST['no_smart_threading']) : 0;
333                 $nowarn_insecure    = !empty($_POST['nowarn_insecure'])    ? intval($_POST['nowarn_insecure'])    : 0;
334                 $browser_update     = !empty($_POST['browser_update'])     ? intval($_POST['browser_update'])     : 0;
335                 if ($browser_update != -1) {
336                         $browser_update = $browser_update * 1000;
337                         if ($browser_update < 10000) {
338                                 $browser_update = 10000;
339                         }
340                 }
341
342                 $itemspage_network = !empty($_POST['itemspage_network'])  ? intval($_POST['itemspage_network'])  : 40;
343                 if ($itemspage_network > 100) {
344                         $itemspage_network = 100;
345                 }
346                 $itemspage_mobile_network = !empty($_POST['itemspage_mobile_network']) ? intval($_POST['itemspage_mobile_network']) : 20;
347                 if ($itemspage_mobile_network > 100) {
348                         $itemspage_mobile_network = 100;
349                 }
350
351                 if ($mobile_theme !== '') {
352                         DI::pConfig()->set(local_user(), 'system', 'mobile_theme', $mobile_theme);
353                 }
354
355                 DI::pConfig()->set(local_user(), 'system', 'nowarn_insecure'         , $nowarn_insecure);
356                 DI::pConfig()->set(local_user(), 'system', 'update_interval'         , $browser_update);
357                 DI::pConfig()->set(local_user(), 'system', 'itemspage_network'       , $itemspage_network);
358                 DI::pConfig()->set(local_user(), 'system', 'itemspage_mobile_network', $itemspage_mobile_network);
359                 DI::pConfig()->set(local_user(), 'system', 'no_smilies'              , $nosmile);
360                 DI::pConfig()->set(local_user(), 'system', 'first_day_of_week'       , $first_day_of_week);
361                 DI::pConfig()->set(local_user(), 'system', 'ignore_info'             , $noinfo);
362                 DI::pConfig()->set(local_user(), 'system', 'infinite_scroll'         , $infinite_scroll);
363                 DI::pConfig()->set(local_user(), 'system', 'no_auto_update'          , $no_auto_update);
364                 DI::pConfig()->set(local_user(), 'system', 'bandwidth_saver'         , $bandwidth_saver);
365                 DI::pConfig()->set(local_user(), 'system', 'no_smart_threading'      , $no_smart_threading);
366
367                 if (in_array($theme, Theme::getAllowedList())) {
368                         if ($theme == $a->user['theme']) {
369                                 // call theme_post only if theme has not been changed
370                                 if (($themeconfigfile = get_theme_config_file($theme)) !== null) {
371                                         require_once $themeconfigfile;
372                                         theme_post($a);
373                                 }
374                         } else {
375                                 DBA::update('user', ['theme' => $theme], ['uid' => local_user()]);
376                         }
377                 } else {
378                         notice(DI::l10n()->t('The theme you chose isn\'t available.'));
379                 }
380
381                 Hook::callAll('display_settings_post', $_POST);
382                 DI::baseUrl()->redirect('settings/display');
383                 return; // NOTREACHED
384         }
385
386         BaseModule::checkFormSecurityTokenRedirectOnError('/settings', 'settings');
387
388         // Import Contacts from CSV file
389         if (!empty($_POST['importcontact-submit'])) {
390                 if (isset($_FILES['importcontact-filename'])) {
391                         // was there an error
392                         if ($_FILES['importcontact-filename']['error'] > 0) {
393                                 Logger::notice('Contact CSV file upload error');
394                                 info(DI::l10n()->t('Contact CSV file upload error'));
395                         } else {
396                                 $csvArray = array_map('str_getcsv', file($_FILES['importcontact-filename']['tmp_name']));
397                                 // import contacts
398                                 foreach ($csvArray as $csvRow) {
399                                         // The 1st row may, or may not contain the headers of the table
400                                         // We expect the 1st field of the row to contain either the URL
401                                         // or the handle of the account, therefore we check for either
402                                         // "http" or "@" to be present in the string.
403                                         // All other fields from the row will be ignored
404                                         if ((strpos($csvRow[0],'@') !== false) || (strpos($csvRow[0],'http') !== false)) {
405                                                 $arr = Contact::createFromProbe($_SESSION['uid'], $csvRow[0], '', false);
406                                         }
407                                 }
408                                 info(DI::l10n()->t('Importing Contacts done'));
409                                 // delete temp file
410                                 unlink($filename);
411                         }
412                 }
413         }
414
415         if (!empty($_POST['resend_relocate'])) {
416                 Worker::add(PRIORITY_HIGH, 'Notifier', Delivery::RELOCATION, local_user());
417                 info(DI::l10n()->t("Relocate message has been send to your contacts"));
418                 DI::baseUrl()->redirect('settings');
419         }
420
421         Hook::callAll('settings_post', $_POST);
422
423         if (!empty($_POST['password']) || !empty($_POST['confirm'])) {
424                 $newpass = $_POST['password'];
425                 $confirm = $_POST['confirm'];
426
427                 try {
428                         if ($newpass != $confirm) {
429                                 throw new Exception(DI::l10n()->t('Passwords do not match.'));
430                         }
431
432                         //  check if the old password was supplied correctly before changing it to the new value
433                         User::getIdFromPasswordAuthentication(local_user(), $_POST['opassword']);
434
435                         $result = User::updatePassword(local_user(), $newpass);
436                         if (!DBA::isResult($result)) {
437                                 throw new Exception(DI::l10n()->t('Password update failed. Please try again.'));
438                         }
439
440                         info(DI::l10n()->t('Password changed.'));
441                 } catch (Exception $e) {
442                         notice($e->getMessage());
443                         notice(DI::l10n()->t('Password unchanged.'));
444                 }
445         }
446
447         $username         = (!empty($_POST['username'])   ? Strings::escapeTags(trim($_POST['username']))     : '');
448         $email            = (!empty($_POST['email'])      ? Strings::escapeTags(trim($_POST['email']))        : '');
449         $timezone         = (!empty($_POST['timezone'])   ? Strings::escapeTags(trim($_POST['timezone']))     : '');
450         $language         = (!empty($_POST['language'])   ? Strings::escapeTags(trim($_POST['language']))     : '');
451
452         $defloc           = (!empty($_POST['defloc'])     ? Strings::escapeTags(trim($_POST['defloc']))       : '');
453         $maxreq           = (!empty($_POST['maxreq'])     ? intval($_POST['maxreq'])             : 0);
454         $expire           = (!empty($_POST['expire'])     ? intval($_POST['expire'])             : 0);
455         $def_gid          = (!empty($_POST['group-selection']) ? intval($_POST['group-selection']) : 0);
456
457
458         $expire_items     = (!empty($_POST['expire_items']) ? intval($_POST['expire_items'])     : 0);
459         $expire_notes     = (!empty($_POST['expire_notes']) ? intval($_POST['expire_notes'])     : 0);
460         $expire_starred   = (!empty($_POST['expire_starred']) ? intval($_POST['expire_starred']) : 0);
461         $expire_photos    = (!empty($_POST['expire_photos'])? intval($_POST['expire_photos'])    : 0);
462         $expire_network_only    = (!empty($_POST['expire_network_only'])? intval($_POST['expire_network_only'])  : 0);
463
464         $delete_openid    = ((!empty($_POST['delete_openid']) && (intval($_POST['delete_openid']) == 1)) ? 1: 0);
465
466         $allow_location   = ((!empty($_POST['allow_location']) && (intval($_POST['allow_location']) == 1)) ? 1: 0);
467         $publish          = ((!empty($_POST['profile_in_directory']) && (intval($_POST['profile_in_directory']) == 1)) ? 1: 0);
468         $net_publish      = ((!empty($_POST['profile_in_netdirectory']) && (intval($_POST['profile_in_netdirectory']) == 1)) ? 1: 0);
469         $old_visibility   = ((!empty($_POST['visibility']) && (intval($_POST['visibility']) == 1)) ? 1 : 0);
470         $account_type     = ((!empty($_POST['account-type']) && (intval($_POST['account-type']))) ? intval($_POST['account-type']) : 0);
471         $page_flags       = ((!empty($_POST['page-flags']) && (intval($_POST['page-flags']))) ? intval($_POST['page-flags']) : 0);
472         $blockwall        = ((!empty($_POST['blockwall']) && (intval($_POST['blockwall']) == 1)) ? 0: 1); // this setting is inverted!
473         $blocktags        = ((!empty($_POST['blocktags']) && (intval($_POST['blocktags']) == 1)) ? 0: 1); // this setting is inverted!
474         $unkmail          = ((!empty($_POST['unkmail']) && (intval($_POST['unkmail']) == 1)) ? 1: 0);
475         $cntunkmail       = (!empty($_POST['cntunkmail']) ? intval($_POST['cntunkmail']) : 0);
476         $suggestme        = (!empty($_POST['suggestme']) ? intval($_POST['suggestme'])  : 0);
477         $hide_friends     = (($_POST['hide-friends'] == 1) ? 1: 0);
478         $hidewall         = (($_POST['hidewall'] == 1) ? 1: 0);
479
480         $email_textonly   = (($_POST['email_textonly'] == 1) ? 1 : 0);
481         $detailed_notif   = (($_POST['detailed_notif'] == 1) ? 1 : 0);
482
483         $notify = 0;
484
485         if (!empty($_POST['notify1'])) {
486                 $notify += intval($_POST['notify1']);
487         }
488         if (!empty($_POST['notify2'])) {
489                 $notify += intval($_POST['notify2']);
490         }
491         if (!empty($_POST['notify3'])) {
492                 $notify += intval($_POST['notify3']);
493         }
494         if (!empty($_POST['notify4'])) {
495                 $notify += intval($_POST['notify4']);
496         }
497         if (!empty($_POST['notify5'])) {
498                 $notify += intval($_POST['notify5']);
499         }
500         if (!empty($_POST['notify6'])) {
501                 $notify += intval($_POST['notify6']);
502         }
503         if (!empty($_POST['notify7'])) {
504                 $notify += intval($_POST['notify7']);
505         }
506         if (!empty($_POST['notify8'])) {
507                 $notify += intval($_POST['notify8']);
508         }
509
510         // Adjust the page flag if the account type doesn't fit to the page flag.
511         if (($account_type == User::ACCOUNT_TYPE_PERSON) && !in_array($page_flags, [User::PAGE_FLAGS_NORMAL, User::PAGE_FLAGS_SOAPBOX, User::PAGE_FLAGS_FREELOVE])) {
512                 $page_flags = User::PAGE_FLAGS_NORMAL;
513         } elseif (($account_type == User::ACCOUNT_TYPE_ORGANISATION) && !in_array($page_flags, [User::PAGE_FLAGS_SOAPBOX])) {
514                 $page_flags = User::PAGE_FLAGS_SOAPBOX;
515         } elseif (($account_type == User::ACCOUNT_TYPE_NEWS) && !in_array($page_flags, [User::PAGE_FLAGS_SOAPBOX])) {
516                 $page_flags = User::PAGE_FLAGS_SOAPBOX;
517         } elseif (($account_type == User::ACCOUNT_TYPE_COMMUNITY) && !in_array($page_flags, [User::PAGE_FLAGS_COMMUNITY, User::PAGE_FLAGS_PRVGROUP])) {
518                 $page_flags = User::PAGE_FLAGS_COMMUNITY;
519         }
520
521         $err = '';
522
523         if ($username != $a->user['username']) {
524                 if (strlen($username) > 40) {
525                         $err .= DI::l10n()->t(' Please use a shorter name.');
526                 }
527                 if (strlen($username) < 3) {
528                         $err .= DI::l10n()->t(' Name too short.');
529                 }
530         }
531
532         if ($email != $a->user['email']) {
533                 //  check for the correct password
534                 if (!User::authenticate(intval(local_user()), $_POST['mpassword'])) {
535                         $err .= DI::l10n()->t('Wrong Password') . EOL;
536                         $email = $a->user['email'];
537                 }
538                 //  check the email is valid
539                 if (!filter_var($email, FILTER_VALIDATE_EMAIL)) {
540                         $err .= DI::l10n()->t('Invalid email.');
541                 }
542                 //  ensure new email is not the admin mail
543                 if (DI::config()->get('config', 'admin_email')) {
544                         $adminlist = explode(",", str_replace(" ", "", strtolower(DI::config()->get('config', 'admin_email'))));
545                         if (in_array(strtolower($email), $adminlist)) {
546                                 $err .= DI::l10n()->t('Cannot change to that email.');
547                                 $email = $a->user['email'];
548                         }
549                 }
550         }
551
552         if (strlen($err)) {
553                 notice($err . EOL);
554                 return;
555         }
556
557         if (($timezone != $a->user['timezone']) && strlen($timezone)) {
558                 date_default_timezone_set($timezone);
559         }
560
561         $aclFormatter = DI::aclFormatter();
562
563         $str_group_allow   = !empty($_POST['group_allow'])   ? $aclFormatter->toString($_POST['group_allow'])   : '';
564         $str_contact_allow = !empty($_POST['contact_allow']) ? $aclFormatter->toString($_POST['contact_allow']) : '';
565         $str_group_deny    = !empty($_POST['group_deny'])    ? $aclFormatter->toString($_POST['group_deny'])    : '';
566         $str_contact_deny  = !empty($_POST['contact_deny'])  ? $aclFormatter->toString($_POST['contact_deny'])  : '';
567
568         DI::pConfig()->set(local_user(), 'expire', 'items', $expire_items);
569         DI::pConfig()->set(local_user(), 'expire', 'notes', $expire_notes);
570         DI::pConfig()->set(local_user(), 'expire', 'starred', $expire_starred);
571         DI::pConfig()->set(local_user(), 'expire', 'photos', $expire_photos);
572         DI::pConfig()->set(local_user(), 'expire', 'network_only', $expire_network_only);
573
574         DI::pConfig()->set(local_user(), 'system', 'suggestme', $suggestme);
575
576         DI::pConfig()->set(local_user(), 'system', 'email_textonly', $email_textonly);
577         DI::pConfig()->set(local_user(), 'system', 'detailed_notif', $detailed_notif);
578
579         if ($page_flags == User::PAGE_FLAGS_PRVGROUP) {
580                 $hidewall = 1;
581                 if (!$str_contact_allow && !$str_group_allow && !$str_contact_deny && !$str_group_deny) {
582                         if ($def_gid) {
583                                 info(DI::l10n()->t('Private forum has no privacy permissions. Using default privacy group.'). EOL);
584                                 $str_group_allow = '<' . $def_gid . '>';
585                         } else {
586                                 notice(DI::l10n()->t('Private forum has no privacy permissions and no default privacy group.') . EOL);
587                         }
588                 }
589         }
590
591         $fields = ['username' => $username, 'email' => $email, 'timezone' => $timezone,
592                 'allow_cid' => $str_contact_allow, 'allow_gid' => $str_group_allow, 'deny_cid' => $str_contact_deny, 'deny_gid' => $str_group_deny,
593                 'notify-flags' => $notify, 'page-flags' => $page_flags, 'account-type' => $account_type, 'default-location' => $defloc,
594                 'allow_location' => $allow_location, 'maxreq' => $maxreq, 'expire' => $expire, 'def_gid' => $def_gid, 'blockwall' => $blockwall,
595                 'hidewall' => $hidewall, 'blocktags' => $blocktags, 'unkmail' => $unkmail, 'cntunkmail' => $cntunkmail, 'language' => $language];
596
597         if ($delete_openid) {
598                 $fields['openid'] = '';
599                 $fields['openidserver'] = '';
600         }
601
602         if (DBA::update('user', $fields, ['uid' => local_user()])) {
603                 info(DI::l10n()->t('Settings updated.') . EOL);
604         }
605
606         // clear session language
607         unset($_SESSION['language']);
608
609         q("UPDATE `profile`
610                 SET `publish` = %d,
611                 `name` = '%s',
612                 `net-publish` = %d,
613                 `hide-friends` = %d
614                 WHERE `is-default` = 1 AND `uid` = %d",
615                 intval($publish),
616                 DBA::escape($username),
617                 intval($net_publish),
618                 intval($hide_friends),
619                 intval(local_user())
620         );
621
622         Contact::updateSelfFromUserID(local_user());
623
624         if (($old_visibility != $net_publish) || ($page_flags != $old_page_flags)) {
625                 // Update global directory in background
626                 $url = $_SESSION['my_url'];
627                 if ($url && strlen(DI::config()->get('system', 'directory'))) {
628                         Worker::add(PRIORITY_LOW, "Directory", $url);
629                 }
630         }
631
632         Worker::add(PRIORITY_LOW, 'ProfileUpdate', local_user());
633
634         // Update the global contact for the user
635         GContact::updateForUser(local_user());
636
637         DI::baseUrl()->redirect('settings');
638         return; // NOTREACHED
639 }
640
641
642 function settings_content(App $a)
643 {
644         $o = '';
645         Nav::setSelected('settings');
646
647         if (!local_user()) {
648                 //notice(DI::l10n()->t('Permission denied.') . EOL);
649                 return Login::form();
650         }
651
652         if (!empty($_SESSION['submanage'])) {
653                 notice(DI::l10n()->t('Permission denied.') . EOL);
654                 return;
655         }
656
657         if (($a->argc > 1) && ($a->argv[1] === 'oauth')) {
658                 if (($a->argc > 2) && ($a->argv[2] === 'add')) {
659                         $tpl = Renderer::getMarkupTemplate('settings/oauth_edit.tpl');
660                         $o .= Renderer::replaceMacros($tpl, [
661                                 '$form_security_token' => BaseModule::getFormSecurityToken("settings_oauth"),
662                                 '$title'        => DI::l10n()->t('Add application'),
663                                 '$submit'       => DI::l10n()->t('Save Settings'),
664                                 '$cancel'       => DI::l10n()->t('Cancel'),
665                                 '$name'         => ['name', DI::l10n()->t('Name'), '', ''],
666                                 '$key'          => ['key', DI::l10n()->t('Consumer Key'), '', ''],
667                                 '$secret'       => ['secret', DI::l10n()->t('Consumer Secret'), '', ''],
668                                 '$redirect'     => ['redirect', DI::l10n()->t('Redirect'), '', ''],
669                                 '$icon'         => ['icon', DI::l10n()->t('Icon url'), '', ''],
670                         ]);
671                         return $o;
672                 }
673
674                 if (($a->argc > 3) && ($a->argv[2] === 'edit')) {
675                         $r = q("SELECT * FROM clients WHERE client_id='%s' AND uid=%d",
676                                         DBA::escape($a->argv[3]),
677                                         local_user());
678
679                         if (!DBA::isResult($r)) {
680                                 notice(DI::l10n()->t("You can't edit this application."));
681                                 return;
682                         }
683                         $app = $r[0];
684
685                         $tpl = Renderer::getMarkupTemplate('settings/oauth_edit.tpl');
686                         $o .= Renderer::replaceMacros($tpl, [
687                                 '$form_security_token' => BaseModule::getFormSecurityToken("settings_oauth"),
688                                 '$title'        => DI::l10n()->t('Add application'),
689                                 '$submit'       => DI::l10n()->t('Update'),
690                                 '$cancel'       => DI::l10n()->t('Cancel'),
691                                 '$name'         => ['name', DI::l10n()->t('Name'), $app['name'] , ''],
692                                 '$key'          => ['key', DI::l10n()->t('Consumer Key'), $app['client_id'], ''],
693                                 '$secret'       => ['secret', DI::l10n()->t('Consumer Secret'), $app['pw'], ''],
694                                 '$redirect'     => ['redirect', DI::l10n()->t('Redirect'), $app['redirect_uri'], ''],
695                                 '$icon'         => ['icon', DI::l10n()->t('Icon url'), $app['icon'], ''],
696                         ]);
697                         return $o;
698                 }
699
700                 if (($a->argc > 3) && ($a->argv[2] === 'delete')) {
701                         BaseModule::checkFormSecurityTokenRedirectOnError('/settings/oauth', 'settings_oauth', 't');
702
703                         DBA::delete('clients', ['client_id' => $a->argv[3], 'uid' => local_user()]);
704                         DI::baseUrl()->redirect('settings/oauth/', true);
705                         return;
706                 }
707
708                 /// @TODO validate result with DBA::isResult()
709                 $r = q("SELECT clients.*, tokens.id as oauth_token, (clients.uid=%d) AS my
710                                 FROM clients
711                                 LEFT JOIN tokens ON clients.client_id=tokens.client_id
712                                 WHERE clients.uid IN (%d, 0)",
713                                 local_user(),
714                                 local_user());
715
716
717                 $tpl = Renderer::getMarkupTemplate('settings/oauth.tpl');
718                 $o .= Renderer::replaceMacros($tpl, [
719                         '$form_security_token' => BaseModule::getFormSecurityToken("settings_oauth"),
720                         '$baseurl'      => DI::baseUrl()->get(true),
721                         '$title'        => DI::l10n()->t('Connected Apps'),
722                         '$add'          => DI::l10n()->t('Add application'),
723                         '$edit'         => DI::l10n()->t('Edit'),
724                         '$delete'               => DI::l10n()->t('Delete'),
725                         '$consumerkey' => DI::l10n()->t('Client key starts with'),
726                         '$noname'       => DI::l10n()->t('No name'),
727                         '$remove'       => DI::l10n()->t('Remove authorization'),
728                         '$apps'         => $r,
729                 ]);
730                 return $o;
731         }
732
733         if (($a->argc > 1) && ($a->argv[1] === 'addon')) {
734                 $settings_addons = "";
735
736                 $r = q("SELECT * FROM `hook` WHERE `hook` = 'addon_settings' ");
737                 if (!DBA::isResult($r)) {
738                         $settings_addons = DI::l10n()->t('No Addon settings configured');
739                 }
740
741                 Hook::callAll('addon_settings', $settings_addons);
742
743
744                 $tpl = Renderer::getMarkupTemplate('settings/addons.tpl');
745                 $o .= Renderer::replaceMacros($tpl, [
746                         '$form_security_token' => BaseModule::getFormSecurityToken("settings_addon"),
747                         '$title'        => DI::l10n()->t('Addon Settings'),
748                         '$settings_addons' => $settings_addons
749                 ]);
750                 return $o;
751         }
752
753         if (($a->argc > 1) && ($a->argv[1] === 'features')) {
754
755                 $arr = [];
756                 $features = Feature::get();
757                 foreach ($features as $fname => $fdata) {
758                         $arr[$fname] = [];
759                         $arr[$fname][0] = $fdata[0];
760                         foreach (array_slice($fdata,1) as $f) {
761                                 $arr[$fname][1][] = ['feature_' .$f[0], $f[1],((intval(Feature::isEnabled(local_user(), $f[0]))) ? "1" : ''), $f[2],[DI::l10n()->t('Off'), DI::l10n()->t('On')]];
762                         }
763                 }
764
765                 $tpl = Renderer::getMarkupTemplate('settings/features.tpl');
766                 $o .= Renderer::replaceMacros($tpl, [
767                         '$form_security_token' => BaseModule::getFormSecurityToken("settings_features"),
768                         '$title'               => DI::l10n()->t('Additional Features'),
769                         '$features'            => $arr,
770                         '$submit'              => DI::l10n()->t('Save Settings'),
771                 ]);
772                 return $o;
773         }
774
775         if (($a->argc > 1) && ($a->argv[1] === 'connectors')) {
776                 $accept_only_sharer        = intval(DI::pConfig()->get(local_user(), 'system', 'accept_only_sharer'));
777                 $disable_cw                = intval(DI::pConfig()->get(local_user(), 'system', 'disable_cw'));
778                 $no_intelligent_shortening = intval(DI::pConfig()->get(local_user(), 'system', 'no_intelligent_shortening'));
779                 $attach_link_title         = intval(DI::pConfig()->get(local_user(), 'system', 'attach_link_title'));
780                 $ostatus_autofriend        = intval(DI::pConfig()->get(local_user(), 'system', 'ostatus_autofriend'));
781                 $default_group             = DI::pConfig()->get(local_user(), 'ostatus', 'default_group');
782                 $legacy_contact            = DI::pConfig()->get(local_user(), 'ostatus', 'legacy_contact');
783
784                 if (!empty($legacy_contact)) {
785                         /// @todo Isn't it supposed to be a $a->internalRedirect() call?
786                         DI::page()['htmlhead'] = '<meta http-equiv="refresh" content="0; URL=' . DI::baseUrl().'/ostatus_subscribe?url=' . urlencode($legacy_contact) . '">';
787                 }
788
789                 $settings_connectors = '';
790                 Hook::callAll('connector_settings', $settings_connectors);
791
792                 if (is_site_admin()) {
793                         $diasp_enabled = DI::l10n()->t('Built-in support for %s connectivity is %s', DI::l10n()->t('Diaspora'), ((DI::config()->get('system', 'diaspora_enabled')) ? DI::l10n()->t('enabled') : DI::l10n()->t('disabled')));
794                         $ostat_enabled = DI::l10n()->t('Built-in support for %s connectivity is %s', DI::l10n()->t("GNU Social \x28OStatus\x29"), ((DI::config()->get('system', 'ostatus_disabled')) ? DI::l10n()->t('disabled') : DI::l10n()->t('enabled')));
795                 } else {
796                         $diasp_enabled = "";
797                         $ostat_enabled = "";
798                 }
799
800                 $mail_disabled = ((function_exists('imap_open') && (!DI::config()->get('system', 'imap_disabled'))) ? 0 : 1);
801                 if (DI::config()->get('system', 'dfrn_only')) {
802                         $mail_disabled = 1;
803                 }
804                 if (!$mail_disabled) {
805                         $r = q("SELECT * FROM `mailacct` WHERE `uid` = %d LIMIT 1",
806                                 local_user()
807                         );
808                 } else {
809                         $r = null;
810                 }
811
812                 $mail_server       = ((DBA::isResult($r)) ? $r[0]['server'] : '');
813                 $mail_port         = ((DBA::isResult($r) && intval($r[0]['port'])) ? intval($r[0]['port']) : '');
814                 $mail_ssl          = ((DBA::isResult($r)) ? $r[0]['ssltype'] : '');
815                 $mail_user         = ((DBA::isResult($r)) ? $r[0]['user'] : '');
816                 $mail_replyto      = ((DBA::isResult($r)) ? $r[0]['reply_to'] : '');
817                 $mail_pubmail      = ((DBA::isResult($r)) ? $r[0]['pubmail'] : 0);
818                 $mail_action       = ((DBA::isResult($r)) ? $r[0]['action'] : 0);
819                 $mail_movetofolder = ((DBA::isResult($r)) ? $r[0]['movetofolder'] : '');
820                 $mail_chk          = ((DBA::isResult($r)) ? $r[0]['last_check'] : DBA::NULL_DATETIME);
821
822
823                 $tpl = Renderer::getMarkupTemplate('settings/connectors.tpl');
824
825                 $mail_disabled_message = ($mail_disabled ? DI::l10n()->t('Email access is disabled on this site.') : '');
826
827                 $ssl_options = ['TLS' => 'TLS', 'SSL' => 'SSL'];
828
829                 if (DI::config()->get('system', 'insecure_imap')) {
830                         $ssl_options['notls'] = DI::l10n()->t('None');
831                 }
832
833                 $o .= Renderer::replaceMacros($tpl, [
834                         '$form_security_token' => BaseModule::getFormSecurityToken("settings_connectors"),
835
836                         '$title'        => DI::l10n()->t('Social Networks'),
837
838                         '$diasp_enabled' => $diasp_enabled,
839                         '$ostat_enabled' => $ostat_enabled,
840
841                         '$general_settings' => DI::l10n()->t('General Social Media Settings'),
842                         '$accept_only_sharer' => ['accept_only_sharer', DI::l10n()->t('Accept only top level posts by contacts you follow'), $accept_only_sharer, DI::l10n()->t('The system does an auto completion of threads when a comment arrives. This has got the side effect that you can receive posts that had been started by a non-follower but had been commented by someone you follow. This setting deactivates this behaviour. When activated, you strictly only will receive posts from people you really do follow.')],
843                         '$disable_cw' => ['disable_cw', DI::l10n()->t('Disable Content Warning'), $disable_cw, DI::l10n()->t('Users on networks like Mastodon or Pleroma are able to set a content warning field which collapse their post by default. This disables the automatic collapsing and sets the content warning as the post title. Doesn\'t affect any other content filtering you eventually set up.')],
844                         '$no_intelligent_shortening' => ['no_intelligent_shortening', DI::l10n()->t('Disable intelligent shortening'), $no_intelligent_shortening, DI::l10n()->t('Normally the system tries to find the best link to add to shortened posts. If this option is enabled then every shortened post will always point to the original friendica post.')],
845                         '$attach_link_title' => ['attach_link_title', DI::l10n()->t('Attach the link title'), $attach_link_title, DI::l10n()->t('When activated, the title of the attached link will be added as a title on posts to Diaspora. This is mostly helpful with "remote-self" contacts that share feed content.')],
846                         '$ostatus_autofriend' => ['snautofollow', DI::l10n()->t("Automatically follow any GNU Social \x28OStatus\x29 followers/mentioners"), $ostatus_autofriend, DI::l10n()->t('If you receive a message from an unknown OStatus user, this option decides what to do. If it is checked, a new contact will be created for every unknown user.')],
847                         '$default_group' => Group::displayGroupSelection(local_user(), $default_group, DI::l10n()->t("Default group for OStatus contacts")),
848                         '$legacy_contact' => ['legacy_contact', DI::l10n()->t('Your legacy GNU Social account'), $legacy_contact, DI::l10n()->t("If you enter your old GNU Social/Statusnet account name here \x28in the format user@domain.tld\x29, your contacts will be added automatically. The field will be emptied when done.")],
849
850                         '$repair_ostatus_url' => DI::baseUrl() . '/repair_ostatus',
851                         '$repair_ostatus_text' => DI::l10n()->t('Repair OStatus subscriptions'),
852
853                         '$settings_connectors' => $settings_connectors,
854
855                         '$h_imap' => DI::l10n()->t('Email/Mailbox Setup'),
856                         '$imap_desc' => DI::l10n()->t("If you wish to communicate with email contacts using this service \x28optional\x29, please specify how to connect to your mailbox."),
857                         '$imap_lastcheck' => ['imap_lastcheck', DI::l10n()->t('Last successful email check:'), $mail_chk, ''],
858                         '$mail_disabled' => $mail_disabled_message,
859                         '$mail_server'  => ['mail_server',      DI::l10n()->t('IMAP server name:'), $mail_server, ''],
860                         '$mail_port'    => ['mail_port',        DI::l10n()->t('IMAP port:'), $mail_port, ''],
861                         '$mail_ssl'     => ['mail_ssl',         DI::l10n()->t('Security:'), strtoupper($mail_ssl), '', $ssl_options],
862                         '$mail_user'    => ['mail_user',        DI::l10n()->t('Email login name:'), $mail_user, ''],
863                         '$mail_pass'    => ['mail_pass',        DI::l10n()->t('Email password:'), '', ''],
864                         '$mail_replyto' => ['mail_replyto',     DI::l10n()->t('Reply-to address:'), $mail_replyto, 'Optional'],
865                         '$mail_pubmail' => ['mail_pubmail',     DI::l10n()->t('Send public posts to all email contacts:'), $mail_pubmail, ''],
866                         '$mail_action'  => ['mail_action',      DI::l10n()->t('Action after import:'), $mail_action, '', [0 => DI::l10n()->t('None'), 1 => DI::l10n()->t('Delete'), 2 => DI::l10n()->t('Mark as seen'), 3 => DI::l10n()->t('Move to folder')]],
867                         '$mail_movetofolder' => ['mail_movetofolder', DI::l10n()->t('Move to folder:'), $mail_movetofolder, ''],
868                         '$submit' => DI::l10n()->t('Save Settings'),
869                 ]);
870
871                 Hook::callAll('display_settings', $o);
872                 return $o;
873         }
874
875         /*
876          * DISPLAY SETTINGS
877          */
878         if (($a->argc > 1) && ($a->argv[1] === 'display')) {
879                 $default_theme = DI::config()->get('system', 'theme');
880                 if (!$default_theme) {
881                         $default_theme = 'default';
882                 }
883                 $default_mobile_theme = DI::config()->get('system', 'mobile-theme');
884                 if (!$default_mobile_theme) {
885                         $default_mobile_theme = 'none';
886                 }
887
888                 $allowed_themes = Theme::getAllowedList();
889
890                 $themes = [];
891                 $mobile_themes = ["---" => DI::l10n()->t('No special theme for mobile devices')];
892                 foreach ($allowed_themes as $theme) {
893                         $is_experimental = file_exists('view/theme/' . $theme . '/experimental');
894                         $is_unsupported  = file_exists('view/theme/' . $theme . '/unsupported');
895                         $is_mobile       = file_exists('view/theme/' . $theme . '/mobile');
896                         if (!$is_experimental || ($is_experimental && (DI::config()->get('experimentals', 'exp_themes')==1 || is_null(DI::config()->get('experimentals', 'exp_themes'))))) {
897                                 $theme_name = ucfirst($theme);
898                                 if ($is_unsupported) {
899                                         $theme_name = DI::l10n()->t('%s - (Unsupported)', $theme_name);
900                                 } elseif ($is_experimental) {
901                                         $theme_name = DI::l10n()->t('%s - (Experimental)', $theme_name);
902                                 }
903
904                                 if ($is_mobile) {
905                                         $mobile_themes[$theme] = $theme_name;
906                                 } else {
907                                         $themes[$theme] = $theme_name;
908                                 }
909                         }
910                 }
911
912                 $theme_selected        = $a->user['theme'] ?: $default_theme;
913                 $mobile_theme_selected = Session::get('mobile-theme', $default_mobile_theme);
914
915                 $nowarn_insecure = intval(DI::pConfig()->get(local_user(), 'system', 'nowarn_insecure'));
916
917                 $browser_update = intval(DI::pConfig()->get(local_user(), 'system', 'update_interval'));
918                 if (intval($browser_update) != -1) {
919                         $browser_update = (($browser_update == 0) ? 40 : $browser_update / 1000); // default if not set: 40 seconds
920                 }
921
922                 $itemspage_network = intval(DI::pConfig()->get(local_user(), 'system', 'itemspage_network'));
923                 $itemspage_network = (($itemspage_network > 0 && $itemspage_network < 101) ? $itemspage_network : 40); // default if not set: 40 items
924                 $itemspage_mobile_network = intval(DI::pConfig()->get(local_user(), 'system', 'itemspage_mobile_network'));
925                 $itemspage_mobile_network = (($itemspage_mobile_network > 0 && $itemspage_mobile_network < 101) ? $itemspage_mobile_network : 20); // default if not set: 20 items
926
927                 $nosmile = DI::pConfig()->get(local_user(), 'system', 'no_smilies', 0);
928                 $first_day_of_week = DI::pConfig()->get(local_user(), 'system', 'first_day_of_week', 0);
929                 $weekdays = [0 => DI::l10n()->t("Sunday"), 1 => DI::l10n()->t("Monday")];
930
931                 $noinfo = DI::pConfig()->get(local_user(), 'system', 'ignore_info', 0);
932                 $infinite_scroll = DI::pConfig()->get(local_user(), 'system', 'infinite_scroll', 0);
933                 $no_auto_update = DI::pConfig()->get(local_user(), 'system', 'no_auto_update', 0);
934                 $bandwidth_saver = DI::pConfig()->get(local_user(), 'system', 'bandwidth_saver', 0);
935                 $no_smart_threading = DI::pConfig()->get(local_user(), 'system', 'no_smart_threading', 0);
936
937                 $theme_config = "";
938                 if (($themeconfigfile = get_theme_config_file($theme_selected)) !== null) {
939                         require_once $themeconfigfile;
940                         $theme_config = theme_content($a);
941                 }
942
943                 $tpl = Renderer::getMarkupTemplate('settings/display.tpl');
944                 $o = Renderer::replaceMacros($tpl, [
945                         '$ptitle'       => DI::l10n()->t('Display Settings'),
946                         '$form_security_token' => BaseModule::getFormSecurityToken("settings_display"),
947                         '$submit'       => DI::l10n()->t('Save Settings'),
948                         '$baseurl' => DI::baseUrl()->get(true),
949                         '$uid' => local_user(),
950
951                         '$theme'        => ['theme', DI::l10n()->t('Display Theme:'), $theme_selected, '', $themes, true],
952                         '$mobile_theme' => ['mobile_theme', DI::l10n()->t('Mobile Theme:'), $mobile_theme_selected, '', $mobile_themes, false],
953                         '$nowarn_insecure' => ['nowarn_insecure',  DI::l10n()->t('Suppress warning of insecure networks'), $nowarn_insecure, DI::l10n()->t("Should the system suppress the warning that the current group contains members of networks that can't receive non public postings.")],
954                         '$ajaxint'   => ['browser_update',  DI::l10n()->t("Update browser every xx seconds"), $browser_update, DI::l10n()->t('Minimum of 10 seconds. Enter -1 to disable it.')],
955                         '$itemspage_network'   => ['itemspage_network',  DI::l10n()->t("Number of items to display per page:"), $itemspage_network, DI::l10n()->t('Maximum of 100 items')],
956                         '$itemspage_mobile_network'   => ['itemspage_mobile_network',  DI::l10n()->t("Number of items to display per page when viewed from mobile device:"), $itemspage_mobile_network, DI::l10n()->t('Maximum of 100 items')],
957                         '$nosmile'      => ['nosmile', DI::l10n()->t("Don't show emoticons"), $nosmile, ''],
958                         '$calendar_title' => DI::l10n()->t('Calendar'),
959                         '$first_day_of_week'    => ['first_day_of_week', DI::l10n()->t('Beginning of week:'), $first_day_of_week, '', $weekdays, false],
960                         '$noinfo'       => ['noinfo', DI::l10n()->t("Don't show notices"), $noinfo, ''],
961                         '$infinite_scroll'      => ['infinite_scroll', DI::l10n()->t("Infinite scroll"), $infinite_scroll, ''],
962                         '$no_auto_update'       => ['no_auto_update', DI::l10n()->t("Automatic updates only at the top of the network page"), $no_auto_update, DI::l10n()->t('When disabled, the network page is updated all the time, which could be confusing while reading.')],
963                         '$bandwidth_saver' => ['bandwidth_saver', DI::l10n()->t('Bandwidth Saver Mode'), $bandwidth_saver, DI::l10n()->t('When enabled, embedded content is not displayed on automatic updates, they only show on page reload.')],
964                         '$no_smart_threading' => ['no_smart_threading', DI::l10n()->t('Disable Smart Threading'), $no_smart_threading, DI::l10n()->t('Disable the automatic suppression of extraneous thread indentation.')],
965
966                         '$d_tset' => DI::l10n()->t('General Theme Settings'),
967                         '$d_ctset' => DI::l10n()->t('Custom Theme Settings'),
968                         '$d_cset' => DI::l10n()->t('Content Settings'),
969                         'stitle' => DI::l10n()->t('Theme settings'),
970                         '$theme_config' => $theme_config,
971                 ]);
972
973                 return $o;
974         }
975
976
977         /*
978          * ACCOUNT SETTINGS
979          */
980
981         $profile = DBA::selectFirst('profile', [], ['is-default' => true, 'uid' => local_user()]);
982         if (!DBA::isResult($profile)) {
983                 notice(DI::l10n()->t('Unable to find your profile. Please contact your admin.') . EOL);
984                 return;
985         }
986
987         $username   = $a->user['username'];
988         $email      = $a->user['email'];
989         $nickname   = $a->user['nickname'];
990         $timezone   = $a->user['timezone'];
991         $language   = $a->user['language'];
992         $notify     = $a->user['notify-flags'];
993         $defloc     = $a->user['default-location'];
994         $openid     = $a->user['openid'];
995         $maxreq     = $a->user['maxreq'];
996         $expire     = ((intval($a->user['expire'])) ? $a->user['expire'] : '');
997         $unkmail    = $a->user['unkmail'];
998         $cntunkmail = $a->user['cntunkmail'];
999
1000         $expire_items = DI::pConfig()->get(local_user(), 'expire', 'items', true);
1001         $expire_notes = DI::pConfig()->get(local_user(), 'expire', 'notes', true);
1002         $expire_starred = DI::pConfig()->get(local_user(), 'expire', 'starred', true);
1003         $expire_photos = DI::pConfig()->get(local_user(), 'expire', 'photos', false);
1004         $expire_network_only = DI::pConfig()->get(local_user(), 'expire', 'network_only', false);
1005         $suggestme = DI::pConfig()->get(local_user(), 'system', 'suggestme', false);
1006
1007         // nowarn_insecure
1008
1009         if (!strlen($a->user['timezone'])) {
1010                 $timezone = date_default_timezone_get();
1011         }
1012
1013         // Set the account type to "Community" when the page is a community page but the account type doesn't fit
1014         // This is only happening on the first visit after the update
1015         if (in_array($a->user['page-flags'], [User::PAGE_FLAGS_COMMUNITY, User::PAGE_FLAGS_PRVGROUP]) &&
1016                 ($a->user['account-type'] != User::ACCOUNT_TYPE_COMMUNITY))
1017                 $a->user['account-type'] = User::ACCOUNT_TYPE_COMMUNITY;
1018
1019         $pageset_tpl = Renderer::getMarkupTemplate('settings/pagetypes.tpl');
1020
1021         $pagetype = Renderer::replaceMacros($pageset_tpl, [
1022                 '$account_types'        => DI::l10n()->t("Account Types"),
1023                 '$user'                 => DI::l10n()->t("Personal Page Subtypes"),
1024                 '$community'            => DI::l10n()->t("Community Forum Subtypes"),
1025                 '$account_type'         => $a->user['account-type'],
1026                 '$type_person'          => User::ACCOUNT_TYPE_PERSON,
1027                 '$type_organisation'    => User::ACCOUNT_TYPE_ORGANISATION,
1028                 '$type_news'            => User::ACCOUNT_TYPE_NEWS,
1029                 '$type_community'       => User::ACCOUNT_TYPE_COMMUNITY,
1030
1031                 '$account_person'       => ['account-type', DI::l10n()->t('Personal Page'), User::ACCOUNT_TYPE_PERSON,
1032                                                                         DI::l10n()->t('Account for a personal profile.'),
1033                                                                         ($a->user['account-type'] == User::ACCOUNT_TYPE_PERSON)],
1034
1035                 '$account_organisation' => ['account-type', DI::l10n()->t('Organisation Page'), User::ACCOUNT_TYPE_ORGANISATION,
1036                                                                         DI::l10n()->t('Account for an organisation that automatically approves contact requests as "Followers".'),
1037                                                                         ($a->user['account-type'] == User::ACCOUNT_TYPE_ORGANISATION)],
1038
1039                 '$account_news'         => ['account-type', DI::l10n()->t('News Page'), User::ACCOUNT_TYPE_NEWS,
1040                                                                         DI::l10n()->t('Account for a news reflector that automatically approves contact requests as "Followers".'),
1041                                                                         ($a->user['account-type'] == User::ACCOUNT_TYPE_NEWS)],
1042
1043                 '$account_community'    => ['account-type', DI::l10n()->t('Community Forum'), User::ACCOUNT_TYPE_COMMUNITY,
1044                                                                         DI::l10n()->t('Account for community discussions.'),
1045                                                                         ($a->user['account-type'] == User::ACCOUNT_TYPE_COMMUNITY)],
1046
1047                 '$page_normal'          => ['page-flags', DI::l10n()->t('Normal Account Page'), User::PAGE_FLAGS_NORMAL,
1048                                                                         DI::l10n()->t('Account for a regular personal profile that requires manual approval of "Friends" and "Followers".'),
1049                                                                         ($a->user['page-flags'] == User::PAGE_FLAGS_NORMAL)],
1050
1051                 '$page_soapbox'         => ['page-flags', DI::l10n()->t('Soapbox Page'), User::PAGE_FLAGS_SOAPBOX,
1052                                                                         DI::l10n()->t('Account for a public profile that automatically approves contact requests as "Followers".'),
1053                                                                         ($a->user['page-flags'] == User::PAGE_FLAGS_SOAPBOX)],
1054
1055                 '$page_community'       => ['page-flags', DI::l10n()->t('Public Forum'), User::PAGE_FLAGS_COMMUNITY,
1056                                                                         DI::l10n()->t('Automatically approves all contact requests.'),
1057                                                                         ($a->user['page-flags'] == User::PAGE_FLAGS_COMMUNITY)],
1058
1059                 '$page_freelove'        => ['page-flags', DI::l10n()->t('Automatic Friend Page'), User::PAGE_FLAGS_FREELOVE,
1060                                                                         DI::l10n()->t('Account for a popular profile that automatically approves contact requests as "Friends".'),
1061                                                                         ($a->user['page-flags'] == User::PAGE_FLAGS_FREELOVE)],
1062
1063                 '$page_prvgroup'        => ['page-flags', DI::l10n()->t('Private Forum [Experimental]'), User::PAGE_FLAGS_PRVGROUP,
1064                                                                         DI::l10n()->t('Requires manual approval of contact requests.'),
1065                                                                         ($a->user['page-flags'] == User::PAGE_FLAGS_PRVGROUP)],
1066
1067
1068         ]);
1069
1070         $noid = DI::config()->get('system', 'no_openid');
1071
1072         if ($noid) {
1073                 $openid_field = false;
1074         } else {
1075                 $openid_field = ['openid_url', DI::l10n()->t('OpenID:'), $openid, DI::l10n()->t("\x28Optional\x29 Allow this OpenID to login to this account."), "", "readonly", "url"];
1076         }
1077
1078         $opt_tpl = Renderer::getMarkupTemplate("field_yesno.tpl");
1079         if (DI::config()->get('system', 'publish_all')) {
1080                 $profile_in_dir = '<input type="hidden" name="profile_in_directory" value="1" />';
1081         } else {
1082                 $profile_in_dir = Renderer::replaceMacros($opt_tpl, [
1083                         '$field' => ['profile_in_directory', DI::l10n()->t('Publish your default profile in your local site directory?'), $profile['publish'], DI::l10n()->t('Your profile will be published in this node\'s <a href="%s">local directory</a>. Your profile details may be publicly visible depending on the system settings.', DI::baseUrl().'/directory'), [DI::l10n()->t('No'), DI::l10n()->t('Yes')]]
1084                 ]);
1085         }
1086
1087         if (strlen(DI::config()->get('system', 'directory'))) {
1088                 $profile_in_net_dir = Renderer::replaceMacros($opt_tpl, [
1089                         '$field' => ['profile_in_netdirectory', DI::l10n()->t('Publish your default profile in the global social directory?'), $profile['net-publish'], DI::l10n()->t('Your profile will be published in the global friendica directories (e.g. <a href="%s">%s</a>). Your profile will be visible in public.', DI::config()->get('system', 'directory'), DI::config()->get('system', 'directory'))     . " " . DI::l10n()->t("This setting also determines whether Friendica will inform search engines that your profile should be indexed or not. Third-party search engines may or may not respect this setting."), [DI::l10n()->t('No'), DI::l10n()->t('Yes')]]
1090                 ]);
1091         } else {
1092                 $profile_in_net_dir = '';
1093         }
1094
1095         $hide_friends = Renderer::replaceMacros($opt_tpl, [
1096                 '$field' => ['hide-friends', DI::l10n()->t('Hide your contact/friend list from viewers of your default profile?'), $profile['hide-friends'], DI::l10n()->t('Your contact list won\'t be shown in your default profile page. You can decide to show your contact list separately for each additional profile you create'), [DI::l10n()->t('No'), DI::l10n()->t('Yes')]],
1097         ]);
1098
1099         $hide_wall = Renderer::replaceMacros($opt_tpl, [
1100                 '$field' => ['hidewall', DI::l10n()->t('Hide your profile details from anonymous viewers?'), $a->user['hidewall'], DI::l10n()->t('Anonymous visitors will only see your profile picture, your display name and the nickname you are using on your profile page. Your public posts and replies will still be accessible by other means.'), [DI::l10n()->t('No'), DI::l10n()->t('Yes')]],
1101         ]);
1102
1103         $blockwall = Renderer::replaceMacros($opt_tpl, [
1104                 '$field' => ['blockwall', DI::l10n()->t('Allow friends to post to your profile page?'), (intval($a->user['blockwall']) ? '0' : '1'), DI::l10n()->t('Your contacts may write posts on your profile wall. These posts will be distributed to your contacts'), [DI::l10n()->t('No'), DI::l10n()->t('Yes')]],
1105         ]);
1106
1107         $blocktags = Renderer::replaceMacros($opt_tpl, [
1108                 '$field' => ['blocktags', DI::l10n()->t('Allow friends to tag your posts?'), (intval($a->user['blocktags']) ? '0' : '1'), DI::l10n()->t('Your contacts can add additional tags to your posts.'), [DI::l10n()->t('No'), DI::l10n()->t('Yes')]],
1109         ]);
1110
1111         $suggestme = Renderer::replaceMacros($opt_tpl, [
1112                 '$field' => ['suggestme', DI::l10n()->t('Allow us to suggest you as a potential friend to new members?'), $suggestme, DI::l10n()->t('If you like, Friendica may suggest new members to add you as a contact.'), [DI::l10n()->t('No'), DI::l10n()->t('Yes')]],
1113         ]);
1114
1115         $unkmail = Renderer::replaceMacros($opt_tpl, [
1116                 '$field' => ['unkmail', DI::l10n()->t('Permit unknown people to send you private mail?'), $unkmail, DI::l10n()->t('Friendica network users may send you private messages even if they are not in your contact list.'), [DI::l10n()->t('No'), DI::l10n()->t('Yes')]],
1117         ]);
1118
1119         if (!$profile['publish'] && !$profile['net-publish']) {
1120                 info(DI::l10n()->t('Profile is <strong>not published</strong>.') . EOL);
1121         }
1122
1123         $tpl_addr = Renderer::getMarkupTemplate('settings/nick_set.tpl');
1124
1125         $prof_addr = Renderer::replaceMacros($tpl_addr,[
1126                 '$desc' => DI::l10n()->t("Your Identity Address is <strong>'%s'</strong> or '%s'.", $nickname . '@' . DI::baseUrl()->getHostname() . DI::baseUrl()->getUrlPath(), DI::baseUrl() . '/profile/' . $nickname),
1127                 '$basepath' => DI::baseUrl()->getHostname()
1128         ]);
1129
1130         $stpl = Renderer::getMarkupTemplate('settings/settings.tpl');
1131
1132         $expire_arr = [
1133                 'days' => ['expire',  DI::l10n()->t("Automatically expire posts after this many days:"), $expire, DI::l10n()->t('If empty, posts will not expire. Expired posts will be deleted')],
1134                 'advanced' => DI::l10n()->t('Advanced expiration settings'),
1135                 'label' => DI::l10n()->t('Advanced Expiration'),
1136                 'items' => ['expire_items',  DI::l10n()->t("Expire posts:"), $expire_items, '', [DI::l10n()->t('No'), DI::l10n()->t('Yes')]],
1137                 'notes' => ['expire_notes',  DI::l10n()->t("Expire personal notes:"), $expire_notes, '', [DI::l10n()->t('No'), DI::l10n()->t('Yes')]],
1138                 'starred' => ['expire_starred',  DI::l10n()->t("Expire starred posts:"), $expire_starred, '', [DI::l10n()->t('No'), DI::l10n()->t('Yes')]],
1139                 'photos' => ['expire_photos',  DI::l10n()->t("Expire photos:"), $expire_photos, '', [DI::l10n()->t('No'), DI::l10n()->t('Yes')]],
1140                 'network_only' => ['expire_network_only',  DI::l10n()->t("Only expire posts by others:"), $expire_network_only, '', [DI::l10n()->t('No'), DI::l10n()->t('Yes')]],
1141         ];
1142
1143         $group_select = Group::displayGroupSelection(local_user(), $a->user['def_gid']);
1144
1145         // Private/public post links for the non-JS ACL form
1146         $private_post = 1;
1147         if (!empty($_REQUEST['public']) && !$_REQUEST['public']) {
1148                 $private_post = 0;
1149         }
1150
1151         $query_str = DI::args()->getQueryString();
1152         if (strpos($query_str, 'public=1') !== false) {
1153                 $query_str = str_replace(['?public=1', '&public=1'], ['', ''], $query_str);
1154         }
1155
1156         // I think $a->query_string may never have ? in it, but I could be wrong
1157         // It looks like it's from the index.php?q=[etc] rewrite that the web
1158         // server does, which converts any ? to &, e.g. suggest&ignore=61 for suggest?ignore=61
1159         if (strpos($query_str, '?') === false) {
1160                 $public_post_link = '?public=1';
1161         } else {
1162                 $public_post_link = '&public=1';
1163         }
1164
1165         /* Installed langs */
1166         $lang_choices = DI::l10n()->getAvailableLanguages();
1167
1168         /// @TODO Fix indending (or so)
1169         $o .= Renderer::replaceMacros($stpl, [
1170                 '$ptitle'       => DI::l10n()->t('Account Settings'),
1171
1172                 '$submit'       => DI::l10n()->t('Save Settings'),
1173                 '$baseurl' => DI::baseUrl()->get(true),
1174                 '$uid' => local_user(),
1175                 '$form_security_token' => BaseModule::getFormSecurityToken("settings"),
1176                 '$nickname_block' => $prof_addr,
1177
1178                 '$h_pass'       => DI::l10n()->t('Password Settings'),
1179                 '$password1'=> ['password', DI::l10n()->t('New Password:'), '', DI::l10n()->t('Allowed characters are a-z, A-Z, 0-9 and special characters except white spaces, accentuated letters and colon (:).')],
1180                 '$password2'=> ['confirm', DI::l10n()->t('Confirm:'), '', DI::l10n()->t('Leave password fields blank unless changing')],
1181                 '$password3'=> ['opassword', DI::l10n()->t('Current Password:'), '', DI::l10n()->t('Your current password to confirm the changes')],
1182                 '$password4'=> ['mpassword', DI::l10n()->t('Password:'), '', DI::l10n()->t('Your current password to confirm the changes')],
1183                 '$oid_enable' => (!DI::config()->get('system', 'no_openid')),
1184                 '$openid'       => $openid_field,
1185                 '$delete_openid' => ['delete_openid', DI::l10n()->t('Delete OpenID URL'), false, ''],
1186
1187                 '$h_basic'      => DI::l10n()->t('Basic Settings'),
1188                 '$username' => ['username',  DI::l10n()->t('Full Name:'), $username, ''],
1189                 '$email'        => ['email', DI::l10n()->t('Email Address:'), $email, '', '', '', 'email'],
1190                 '$timezone' => ['timezone_select' , DI::l10n()->t('Your Timezone:'), Temporal::getTimezoneSelect($timezone), ''],
1191                 '$language' => ['language', DI::l10n()->t('Your Language:'), $language, DI::l10n()->t('Set the language we use to show you friendica interface and to send you emails'), $lang_choices],
1192                 '$defloc'       => ['defloc', DI::l10n()->t('Default Post Location:'), $defloc, ''],
1193                 '$allowloc' => ['allow_location', DI::l10n()->t('Use Browser Location:'), ($a->user['allow_location'] == 1), ''],
1194
1195
1196                 '$h_prv'        => DI::l10n()->t('Security and Privacy Settings'),
1197
1198                 '$maxreq'       => ['maxreq', DI::l10n()->t('Maximum Friend Requests/Day:'), $maxreq , DI::l10n()->t("\x28to prevent spam abuse\x29")],
1199                 '$permissions' => DI::l10n()->t('Default Post Permissions'),
1200                 '$permdesc' => DI::l10n()->t("\x28click to open/close\x29"),
1201                 '$visibility' => $profile['net-publish'],
1202                 '$aclselect' => ACL::getFullSelectorHTML(DI::page(), $a->user),
1203                 '$suggestme' => $suggestme,
1204                 '$blockwall'=> $blockwall, // array('blockwall', DI::l10n()->t('Allow friends to post to your profile page:'), !$blockwall, ''),
1205                 '$blocktags'=> $blocktags, // array('blocktags', DI::l10n()->t('Allow friends to tag your posts:'), !$blocktags, ''),
1206
1207                 // ACL permissions box
1208                 '$group_perms' => DI::l10n()->t('Show to Groups'),
1209                 '$contact_perms' => DI::l10n()->t('Show to Contacts'),
1210                 '$private' => DI::l10n()->t('Default Private Post'),
1211                 '$public' => DI::l10n()->t('Default Public Post'),
1212                 '$is_private' => $private_post,
1213                 '$return_path' => $query_str,
1214                 '$public_link' => $public_post_link,
1215                 '$settings_perms' => DI::l10n()->t('Default Permissions for New Posts'),
1216
1217                 '$group_select' => $group_select,
1218
1219
1220                 '$expire'       => $expire_arr,
1221
1222                 '$profile_in_dir' => $profile_in_dir,
1223                 '$profile_in_net_dir' => $profile_in_net_dir,
1224                 '$hide_friends' => $hide_friends,
1225                 '$hide_wall' => $hide_wall,
1226                 '$unkmail' => $unkmail,
1227                 '$cntunkmail'   => ['cntunkmail', DI::l10n()->t('Maximum private messages per day from unknown people:'), $cntunkmail , DI::l10n()->t("\x28to prevent spam abuse\x29")],
1228
1229
1230                 '$h_not'        => DI::l10n()->t('Notification Settings'),
1231                 '$lbl_not'      => DI::l10n()->t('Send a notification email when:'),
1232                 '$notify1'      => ['notify1', DI::l10n()->t('You receive an introduction'), ($notify & NOTIFY_INTRO), NOTIFY_INTRO, ''],
1233                 '$notify2'      => ['notify2', DI::l10n()->t('Your introductions are confirmed'), ($notify & NOTIFY_CONFIRM), NOTIFY_CONFIRM, ''],
1234                 '$notify3'      => ['notify3', DI::l10n()->t('Someone writes on your profile wall'), ($notify & NOTIFY_WALL), NOTIFY_WALL, ''],
1235                 '$notify4'      => ['notify4', DI::l10n()->t('Someone writes a followup comment'), ($notify & NOTIFY_COMMENT), NOTIFY_COMMENT, ''],
1236                 '$notify5'      => ['notify5', DI::l10n()->t('You receive a private message'), ($notify & NOTIFY_MAIL), NOTIFY_MAIL, ''],
1237                 '$notify6'  => ['notify6', DI::l10n()->t('You receive a friend suggestion'), ($notify & NOTIFY_SUGGEST), NOTIFY_SUGGEST, ''],
1238                 '$notify7'  => ['notify7', DI::l10n()->t('You are tagged in a post'), ($notify & NOTIFY_TAGSELF), NOTIFY_TAGSELF, ''],
1239                 '$notify8'  => ['notify8', DI::l10n()->t('You are poked/prodded/etc. in a post'), ($notify & NOTIFY_POKE), NOTIFY_POKE, ''],
1240
1241                 '$desktop_notifications' => ['desktop_notifications', DI::l10n()->t('Activate desktop notifications') , false, DI::l10n()->t('Show desktop popup on new notifications')],
1242
1243                 '$email_textonly' => ['email_textonly', DI::l10n()->t('Text-only notification emails'),
1244                                                                         DI::pConfig()->get(local_user(), 'system', 'email_textonly'),
1245                                                                         DI::l10n()->t('Send text only notification emails, without the html part')],
1246
1247                 '$detailed_notif' => ['detailed_notif', DI::l10n()->t('Show detailled notifications'),
1248                                                                         DI::pConfig()->get(local_user(), 'system', 'detailed_notif'),
1249                                                                         DI::l10n()->t('Per default, notifications are condensed to a single notification per item. When enabled every notification is displayed.')],
1250
1251                 '$h_advn' => DI::l10n()->t('Advanced Account/Page Type Settings'),
1252                 '$h_descadvn' => DI::l10n()->t('Change the behaviour of this account for special situations'),
1253                 '$pagetype' => $pagetype,
1254
1255                 '$importcontact' => DI::l10n()->t('Import Contacts'),
1256                 '$importcontact_text' => DI::l10n()->t('Upload a CSV file that contains the handle of your followed accounts in the first column you exported from the old account.'),
1257                 '$importcontact_button' => DI::l10n()->t('Upload File'),
1258                 '$importcontact_maxsize' => DI::config()->get('system', 'max_csv_file_size', 30720), 
1259                 '$relocate' => DI::l10n()->t('Relocate'),
1260                 '$relocate_text' => DI::l10n()->t("If you have moved this profile from another server, and some of your contacts don't receive your updates, try pushing this button."),
1261                 '$relocate_button' => DI::l10n()->t("Resend relocate message to contacts"),
1262
1263         ]);
1264
1265         Hook::callAll('settings_form', $o);
1266
1267         $o .= '</form>' . "\r\n";
1268
1269         return $o;
1270
1271 }