]> git.mxchange.org Git - friendica.git/blob - mod/settings.php
c18a36704cd32c25f922a146d66284402eabba20
[friendica.git] / mod / settings.php
1 <?php
2 /**
3  * @copyright Copyright (C) 2010-2022, the Friendica project
4  *
5  * @license GNU AGPL version 3 or any later version
6  *
7  * This program is free software: you can redistribute it and/or modify
8  * it under the terms of the GNU Affero General Public License as
9  * published by the Free Software Foundation, either version 3 of the
10  * License, or (at your option) any later version.
11  *
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  * GNU Affero General Public License for more details.
16  *
17  * You should have received a copy of the GNU Affero General Public License
18  * along with this program.  If not, see <https://www.gnu.org/licenses/>.
19  *
20  */
21
22 use Friendica\App;
23 use Friendica\BaseModule;
24 use Friendica\Content\Feature;
25 use Friendica\Content\Nav;
26 use Friendica\Core\ACL;
27 use Friendica\Core\Hook;
28 use Friendica\Core\Logger;
29 use Friendica\Core\Renderer;
30 use Friendica\Core\Worker;
31 use Friendica\Database\DBA;
32 use Friendica\DI;
33 use Friendica\Model\Group;
34 use Friendica\Model\Notification;
35 use Friendica\Model\Profile;
36 use Friendica\Model\User;
37 use Friendica\Module\BaseSettings;
38 use Friendica\Module\Security\Login;
39 use Friendica\Protocol\Email;
40 use Friendica\Util\Temporal;
41 use Friendica\Worker\Delivery;
42
43 function settings_init(App $a)
44 {
45         if (!local_user()) {
46                 notice(DI::l10n()->t('Permission denied.'));
47                 return;
48         }
49
50         BaseSettings::createAside();
51 }
52
53 function settings_post(App $a)
54 {
55         if (!$a->isLoggedIn()) {
56                 notice(DI::l10n()->t('Permission denied.'));
57                 return;
58         }
59
60         if (!empty($_SESSION['submanage'])) {
61                 return;
62         }
63
64         if ((DI::args()->getArgc() > 1) && (DI::args()->getArgv()[1] == 'addon')) {
65                 BaseModule::checkFormSecurityTokenRedirectOnError(DI::args()->getQueryString(), 'settings_addon');
66
67                 Hook::callAll('addon_settings_post', $_POST);
68                 DI::baseUrl()->redirect(DI::args()->getQueryString());
69                 return;
70         }
71
72         $user = User::getById($a->getLoggedInUserId());
73
74         if ((DI::args()->getArgc() > 1) && (DI::args()->getArgv()[1] == 'connectors')) {
75                 BaseModule::checkFormSecurityTokenRedirectOnError(DI::args()->getQueryString(), 'settings_connectors');
76
77                 if (!empty($_POST['general-submit'])) {
78                         DI::pConfig()->set(local_user(), 'system', 'accept_only_sharer', intval($_POST['accept_only_sharer']));
79                         DI::pConfig()->set(local_user(), 'system', 'disable_cw', !intval($_POST['enable_cw']));
80                         DI::pConfig()->set(local_user(), 'system', 'no_intelligent_shortening', !intval($_POST['enable_smart_shortening']));
81                         DI::pConfig()->set(local_user(), 'system', 'simple_shortening', intval($_POST['simple_shortening']));
82                         DI::pConfig()->set(local_user(), 'system', 'attach_link_title', intval($_POST['attach_link_title']));
83                         DI::pConfig()->set(local_user(), 'ostatus', 'legacy_contact', $_POST['legacy_contact']);
84                 } elseif (!empty($_POST['mail-submit'])) {
85                         $mail_server       =                 $_POST['mail_server']       ?? '';
86                         $mail_port         =                 $_POST['mail_port']         ?? '';
87                         $mail_ssl          = strtolower(trim($_POST['mail_ssl']          ?? ''));
88                         $mail_user         =                 $_POST['mail_user']         ?? '';
89                         $mail_pass         =            trim($_POST['mail_pass']         ?? '');
90                         $mail_action       =            trim($_POST['mail_action']       ?? '');
91                         $mail_movetofolder =            trim($_POST['mail_movetofolder'] ?? '');
92                         $mail_replyto      =                 $_POST['mail_replyto']      ?? '';
93                         $mail_pubmail      =                 $_POST['mail_pubmail']      ?? '';
94
95                         if (function_exists('imap_open') && !DI::config()->get('system', 'imap_disabled')) {
96                                 if (!DBA::exists('mailacct', ['uid' => local_user()])) {
97                                         DBA::insert('mailacct', ['uid' => local_user()]);
98                                 }
99                                 if (strlen($mail_pass)) {
100                                         $pass = '';
101                                         openssl_public_encrypt($mail_pass, $pass, $user['pubkey']);
102                                         DBA::update('mailacct', ['pass' => bin2hex($pass)], ['uid' => local_user()]);
103                                 }
104
105                                 $r = DBA::update('mailacct', [
106                                         'server'       => $mail_server,
107                                         'port'         => $mail_port,
108                                         'ssltype'      => $mail_ssl,
109                                         'user'         => $mail_user,
110                                         `action`       => $mail_action,
111                                         'movetofolder' => $mail_movetofolder,
112                                         'mailbox'      => 'INBOX',
113                                         'reply_to'     => $mail_replyto,
114                                         'pubmail'      => $mail_pubmail
115                                 ], ['uid' => local_user()]);
116
117                                 Logger::notice('updating mailaccount', ['response' => $r]);
118                                 $mailacct = DBA::selectFirst('mailacct', [], ['uid' => local_user()]);
119                                 if (DBA::isResult($mailacct)) {
120                                         $mb = Email::constructMailboxName($mailacct);
121
122                                         if (strlen($mailacct['server'])) {
123                                                 $dcrpass = '';
124                                                 openssl_private_decrypt(hex2bin($mailacct['pass']), $dcrpass, $user['prvkey']);
125                                                 $mbox = Email::connect($mb, $mail_user, $dcrpass);
126                                                 unset($dcrpass);
127                                                 if (!$mbox) {
128                                                         notice(DI::l10n()->t('Failed to connect with email account using the settings provided.'));
129                                                 }
130                                         }
131                                 }
132                         }
133                 }
134
135                 Hook::callAll('connector_settings_post', $_POST);
136                 DI::baseUrl()->redirect(DI::args()->getQueryString());
137                 return;
138         }
139
140         if ((DI::args()->getArgc() > 1) && (DI::args()->getArgv()[1] === 'features')) {
141                 BaseModule::checkFormSecurityTokenRedirectOnError('/settings/features', 'settings_features');
142                 foreach ($_POST as $k => $v) {
143                         if (strpos($k, 'feature_') === 0) {
144                                 DI::pConfig()->set(local_user(), 'feature', substr($k, 8), ((intval($v)) ? 1 : 0));
145                         }
146                 }
147                 return;
148         }
149
150         BaseModule::checkFormSecurityTokenRedirectOnError('/settings', 'settings');
151
152         // Import Contacts from CSV file
153         if (!empty($_POST['importcontact-submit'])) {
154                 if (isset($_FILES['importcontact-filename'])) {
155                         // was there an error
156                         if ($_FILES['importcontact-filename']['error'] > 0) {
157                                 Logger::notice('Contact CSV file upload error', ['error' => $_FILES['importcontact-filename']['error']]);
158                                 notice(DI::l10n()->t('Contact CSV file upload error'));
159                         } else {
160                                 $csvArray = array_map('str_getcsv', file($_FILES['importcontact-filename']['tmp_name']));
161                                 Logger::notice('Import started', ['lines' => count($csvArray)]);
162                                 // import contacts
163                                 foreach ($csvArray as $csvRow) {
164                                         // The 1st row may, or may not contain the headers of the table
165                                         // We expect the 1st field of the row to contain either the URL
166                                         // or the handle of the account, therefore we check for either
167                                         // "http" or "@" to be present in the string.
168                                         // All other fields from the row will be ignored
169                                         if ((strpos($csvRow[0],'@') !== false) || in_array(parse_url($csvRow[0], PHP_URL_SCHEME), ['http', 'https'])) {
170                                                 Worker::add(PRIORITY_LOW, 'AddContact', $_SESSION['uid'], $csvRow[0]);
171                                         } else {
172                                                 Logger::notice('Invalid account', ['url' => $csvRow[0]]);
173                                         }
174                                 }
175                                 Logger::notice('Import done');
176
177                                 info(DI::l10n()->t('Importing Contacts done'));
178                                 // delete temp file
179                                 unlink($_FILES['importcontact-filename']['tmp_name']);
180                         }
181                 } else {
182                         Logger::notice('Import triggered, but no import file was found.');
183                 }
184
185                 return;
186         }
187
188         if (!empty($_POST['resend_relocate'])) {
189                 Worker::add(PRIORITY_HIGH, 'Notifier', Delivery::RELOCATION, local_user());
190                 info(DI::l10n()->t("Relocate message has been send to your contacts"));
191                 DI::baseUrl()->redirect('settings');
192         }
193
194         Hook::callAll('settings_post', $_POST);
195
196         if (!empty($_POST['password']) || !empty($_POST['confirm'])) {
197                 $newpass = $_POST['password'];
198                 $confirm = $_POST['confirm'];
199
200                 try {
201                         if ($newpass != $confirm) {
202                                 throw new Exception(DI::l10n()->t('Passwords do not match.'));
203                         }
204
205                         //  check if the old password was supplied correctly before changing it to the new value
206                         User::getIdFromPasswordAuthentication(local_user(), $_POST['opassword']);
207
208                         $result = User::updatePassword(local_user(), $newpass);
209                         if (!DBA::isResult($result)) {
210                                 throw new Exception(DI::l10n()->t('Password update failed. Please try again.'));
211                         }
212
213                         info(DI::l10n()->t('Password changed.'));
214                 } catch (Exception $e) {
215                         notice($e->getMessage());
216                         notice(DI::l10n()->t('Password unchanged.'));
217                 }
218         }
219
220         $username         = (!empty($_POST['username'])        ? trim($_POST['username'])          : '');
221         $email            = (!empty($_POST['email'])           ? trim($_POST['email'])             : '');
222         $timezone         = (!empty($_POST['timezone'])        ? trim($_POST['timezone'])          : '');
223         $language         = (!empty($_POST['language'])        ? trim($_POST['language'])          : '');
224
225         $defloc           = (!empty($_POST['defloc'])          ? trim($_POST['defloc'])            : '');
226         $maxreq           = (!empty($_POST['maxreq'])          ? intval($_POST['maxreq'])          : 0);
227         $expire           = (!empty($_POST['expire'])          ? intval($_POST['expire'])          : 0);
228         $def_gid          = (!empty($_POST['group-selection']) ? intval($_POST['group-selection']) : 0);
229
230
231         $expire_items     = (!empty($_POST['expire_items']) ? intval($_POST['expire_items'])     : 0);
232         $expire_notes     = (!empty($_POST['expire_notes']) ? intval($_POST['expire_notes'])     : 0);
233         $expire_starred   = (!empty($_POST['expire_starred']) ? intval($_POST['expire_starred']) : 0);
234         $expire_photos    = (!empty($_POST['expire_photos'])? intval($_POST['expire_photos'])    : 0);
235         $expire_network_only    = (!empty($_POST['expire_network_only'])? intval($_POST['expire_network_only'])  : 0);
236
237         $delete_openid    = ((!empty($_POST['delete_openid']) && (intval($_POST['delete_openid']) == 1)) ? 1: 0);
238
239         $allow_location   = ((!empty($_POST['allow_location']) && (intval($_POST['allow_location']) == 1)) ? 1: 0);
240         $publish          = ((!empty($_POST['profile_in_directory']) && (intval($_POST['profile_in_directory']) == 1)) ? 1: 0);
241         $net_publish      = ((!empty($_POST['profile_in_netdirectory']) && (intval($_POST['profile_in_netdirectory']) == 1)) ? 1: 0);
242         $account_type     = ((!empty($_POST['account-type']) && (intval($_POST['account-type']))) ? intval($_POST['account-type']) : 0);
243         $page_flags       = ((!empty($_POST['page-flags']) && (intval($_POST['page-flags']))) ? intval($_POST['page-flags']) : 0);
244         $blockwall        = ((!empty($_POST['blockwall']) && (intval($_POST['blockwall']) == 1)) ? 0: 1); // this setting is inverted!
245         $blocktags        = ((!empty($_POST['blocktags']) && (intval($_POST['blocktags']) == 1)) ? 0: 1); // this setting is inverted!
246         $unkmail          = ((!empty($_POST['unkmail']) && (intval($_POST['unkmail']) == 1)) ? 1: 0);
247         $cntunkmail       = (!empty($_POST['cntunkmail']) ? intval($_POST['cntunkmail']) : 0);
248         $hide_friends     = (($_POST['hide-friends'] == 1) ? 1: 0);
249         $hidewall         = (($_POST['hidewall'] == 1) ? 1: 0);
250         $unlisted         = (($_POST['unlisted'] == 1) ? 1: 0);
251         $accessiblephotos = (($_POST['accessible-photos'] == 1) ? 1: 0);
252
253         $notify_like      = (($_POST['notify_like'] == 1) ? 1 : 0);
254         $notify_announce  = (($_POST['notify_announce'] == 1) ? 1 : 0);
255
256         $email_textonly   = (($_POST['email_textonly'] == 1) ? 1 : 0);
257         $detailed_notif   = (($_POST['detailed_notif'] == 1) ? 1 : 0);
258
259         $notify_ignored   = (($_POST['notify_ignored'] == 1) ? 1 : 0);
260
261         $notify = 0;
262
263         if (!empty($_POST['notify1'])) {
264                 $notify += intval($_POST['notify1']);
265         }
266         if (!empty($_POST['notify2'])) {
267                 $notify += intval($_POST['notify2']);
268         }
269         if (!empty($_POST['notify3'])) {
270                 $notify += intval($_POST['notify3']);
271         }
272         if (!empty($_POST['notify4'])) {
273                 $notify += intval($_POST['notify4']);
274         }
275         if (!empty($_POST['notify5'])) {
276                 $notify += intval($_POST['notify5']);
277         }
278         if (!empty($_POST['notify6'])) {
279                 $notify += intval($_POST['notify6']);
280         }
281         if (!empty($_POST['notify7'])) {
282                 $notify += intval($_POST['notify7']);
283         }
284         if (!empty($_POST['notify8'])) {
285                 $notify += intval($_POST['notify8']);
286         }
287
288         // Adjust the page flag if the account type doesn't fit to the page flag.
289         if (($account_type == User::ACCOUNT_TYPE_PERSON) && !in_array($page_flags, [User::PAGE_FLAGS_NORMAL, User::PAGE_FLAGS_SOAPBOX, User::PAGE_FLAGS_FREELOVE])) {
290                 $page_flags = User::PAGE_FLAGS_NORMAL;
291         } elseif (($account_type == User::ACCOUNT_TYPE_ORGANISATION) && !in_array($page_flags, [User::PAGE_FLAGS_SOAPBOX])) {
292                 $page_flags = User::PAGE_FLAGS_SOAPBOX;
293         } elseif (($account_type == User::ACCOUNT_TYPE_NEWS) && !in_array($page_flags, [User::PAGE_FLAGS_SOAPBOX])) {
294                 $page_flags = User::PAGE_FLAGS_SOAPBOX;
295         } elseif (($account_type == User::ACCOUNT_TYPE_COMMUNITY) && !in_array($page_flags, [User::PAGE_FLAGS_COMMUNITY, User::PAGE_FLAGS_PRVGROUP])) {
296                 $page_flags = User::PAGE_FLAGS_COMMUNITY;
297         }
298
299         $err = '';
300
301         if ($username != $user['username']) {
302                 if (strlen($username) > 40) {
303                         $err .= DI::l10n()->t('Please use a shorter name.');
304                 }
305                 if (strlen($username) < 3) {
306                         $err .= DI::l10n()->t('Name too short.');
307                 }
308         }
309
310         if ($email != $user['email']) {
311                 //  check for the correct password
312                 try {
313                         User::getIdFromPasswordAuthentication(local_user(), $_POST['mpassword']);
314                 } catch (Exception $ex) {
315                         $err .= DI::l10n()->t('Wrong Password.');
316                         $email = $user['email'];
317                 }
318                 //  check the email is valid
319                 if (!filter_var($email, FILTER_VALIDATE_EMAIL)) {
320                         $err .= DI::l10n()->t('Invalid email.');
321                 }
322                 //  ensure new email is not the admin mail
323                 if (DI::config()->get('config', 'admin_email')) {
324                         $adminlist = explode(",", str_replace(" ", "", strtolower(DI::config()->get('config', 'admin_email'))));
325                         if (in_array(strtolower($email), $adminlist)) {
326                                 $err .= DI::l10n()->t('Cannot change to that email.');
327                                 $email = $user['email'];
328                         }
329                 }
330         }
331
332         if (strlen($err)) {
333                 notice($err);
334                 return;
335         }
336
337         if (($timezone != $user['timezone']) && strlen($timezone)) {
338                 $a->setTimeZone($timezone);
339         }
340
341         $aclFormatter = DI::aclFormatter();
342
343         $str_group_allow   = !empty($_POST['group_allow'])   ? $aclFormatter->toString($_POST['group_allow'])   : '';
344         $str_contact_allow = !empty($_POST['contact_allow']) ? $aclFormatter->toString($_POST['contact_allow']) : '';
345         $str_group_deny    = !empty($_POST['group_deny'])    ? $aclFormatter->toString($_POST['group_deny'])    : '';
346         $str_contact_deny  = !empty($_POST['contact_deny'])  ? $aclFormatter->toString($_POST['contact_deny'])  : '';
347
348         DI::pConfig()->set(local_user(), 'expire', 'items', $expire_items);
349         DI::pConfig()->set(local_user(), 'expire', 'notes', $expire_notes);
350         DI::pConfig()->set(local_user(), 'expire', 'starred', $expire_starred);
351         DI::pConfig()->set(local_user(), 'expire', 'photos', $expire_photos);
352         DI::pConfig()->set(local_user(), 'expire', 'network_only', $expire_network_only);
353
354         DI::pConfig()->set(local_user(), 'system', 'notify_like', $notify_like);
355         DI::pConfig()->set(local_user(), 'system', 'notify_announce', $notify_announce);
356
357         DI::pConfig()->set(local_user(), 'system', 'email_textonly', $email_textonly);
358         DI::pConfig()->set(local_user(), 'system', 'detailed_notif', $detailed_notif);
359         DI::pConfig()->set(local_user(), 'system', 'notify_ignored', $notify_ignored);
360         DI::pConfig()->set(local_user(), 'system', 'unlisted', $unlisted);
361         DI::pConfig()->set(local_user(), 'system', 'accessible-photos', $accessiblephotos);
362
363         if ($account_type == User::ACCOUNT_TYPE_COMMUNITY) {
364                 $str_group_allow   = '';
365                 $str_contact_allow = '';
366                 $str_group_deny    = '';
367                 $str_contact_deny  = '';
368
369                 DI::pConfig()->set(local_user(), 'system', 'unlisted', true);
370
371                 $blockwall    = true;
372                 $blocktags    = true;
373                 $hide_friends = true;
374         }
375
376         if ($page_flags == User::PAGE_FLAGS_PRVGROUP) {
377                 $str_group_allow = '<' . Group::FOLLOWERS . '>';
378         }
379
380         $fields = ['username' => $username, 'email' => $email, 'timezone' => $timezone,
381                 'allow_cid' => $str_contact_allow, 'allow_gid' => $str_group_allow, 'deny_cid' => $str_contact_deny, 'deny_gid' => $str_group_deny,
382                 'notify-flags' => $notify, 'page-flags' => $page_flags, 'account-type' => $account_type, 'default-location' => $defloc,
383                 'allow_location' => $allow_location, 'maxreq' => $maxreq, 'expire' => $expire, 'def_gid' => $def_gid, 'blockwall' => $blockwall,
384                 'hidewall' => $hidewall, 'blocktags' => $blocktags, 'unkmail' => $unkmail, 'cntunkmail' => $cntunkmail, 'language' => $language];
385
386         if ($delete_openid) {
387                 $fields['openid'] = '';
388                 $fields['openidserver'] = '';
389         }
390
391         $profile_fields = ['publish' => $publish, 'net-publish' => $net_publish, 'hide-friends' => $hide_friends];
392
393         if (!User::update($fields, local_user()) || !Profile::update($profile_fields, local_user())) {
394                 notice(DI::l10n()->t('Settings were not updated.'));
395         }
396
397         // clear session language
398         unset($_SESSION['language']);
399
400         DI::baseUrl()->redirect('settings');
401         return; // NOTREACHED
402 }
403
404
405 function settings_content(App $a)
406 {
407         $o = '';
408         Nav::setSelected('settings');
409
410         if (!local_user()) {
411                 //notice(DI::l10n()->t('Permission denied.'));
412                 return Login::form();
413         }
414
415         if (!empty($_SESSION['submanage'])) {
416                 notice(DI::l10n()->t('Permission denied.'));
417                 return '';
418         }
419
420         if ((DI::args()->getArgc() > 1) && (DI::args()->getArgv()[1] === 'oauth')) {
421                 if ((DI::args()->getArgc() > 3) && (DI::args()->getArgv()[2] === 'delete')) {
422                         BaseModule::checkFormSecurityTokenRedirectOnError('/settings/oauth', 'settings_oauth', 't');
423
424                         DBA::delete('application-token', ['application-id' => DI::args()->getArgv()[3], 'uid' => local_user()]);
425                         DI::baseUrl()->redirect('settings/oauth/', true);
426                         return '';
427                 }
428
429                 $applications = DBA::selectToArray('application-view', ['id', 'uid', 'name', 'website', 'scopes', 'created_at'], ['uid' => local_user()]);
430
431                 $tpl = Renderer::getMarkupTemplate('settings/oauth.tpl');
432                 $o .= Renderer::replaceMacros($tpl, [
433                         '$form_security_token' => BaseModule::getFormSecurityToken("settings_oauth"),
434                         '$baseurl'             => DI::baseUrl()->get(true),
435                         '$title'               => DI::l10n()->t('Connected Apps'),
436                         '$name'                => DI::l10n()->t('Name'),
437                         '$website'             => DI::l10n()->t('Home Page'),
438                         '$created_at'          => DI::l10n()->t('Created'),
439                         '$delete'              => DI::l10n()->t('Remove authorization'),
440                         '$apps'                => $applications,
441                 ]);
442                 return $o;
443         }
444
445         if ((DI::args()->getArgc() > 1) && (DI::args()->getArgv()[1] === 'addon')) {
446                 $addon_settings_forms = [];
447                 foreach (DI::dba()->selectToArray('hook', ['file', 'function'], ['hook' => 'addon_settings']) as $hook) {
448                         $data = [];
449                         Hook::callSingle(DI::app(), 'addon_settings', [$hook['file'], $hook['function']], $data);
450
451                         if (!empty($data['href'])) {
452                                 $tpl = Renderer::getMarkupTemplate('settings/addon/link.tpl');
453                                 $addon_settings_forms[] = Renderer::replaceMacros($tpl, [
454                                         '$addon' => $data['addon'],
455                                         '$title' => $data['title'],
456                                         '$href'  => $data['href'],
457                                 ]);
458                         } elseif(!empty($data['addon'])) {
459                                 $tpl = Renderer::getMarkupTemplate('settings/addon/panel.tpl');
460                                 $addon_settings_forms[$data['addon']] = Renderer::replaceMacros($tpl, [
461                                         '$addon'  => $data['addon'],
462                                         '$title'  => $data['title'],
463                                         '$open'   => (DI::args()->getArgv()[2] ?? '') === $data['addon'],
464                                         '$html'   => $data['html'] ?? '',
465                                         '$submit' => $data['submit'] ?? DI::l10n()->t('Save Settings'),
466                                 ]);
467                         }
468                 }
469
470                 $tpl = Renderer::getMarkupTemplate('settings/addons.tpl');
471                 $o .= Renderer::replaceMacros($tpl, [
472                         '$form_security_token' => BaseModule::getFormSecurityToken("settings_addon"),
473                         '$title'        => DI::l10n()->t('Addon Settings'),
474                         '$no_addons_settings_configured' => DI::l10n()->t('No Addon settings configured'),
475                         '$addon_settings_forms' => $addon_settings_forms,
476                 ]);
477                 return $o;
478         }
479
480         if ((DI::args()->getArgc() > 1) && (DI::args()->getArgv()[1] === 'features')) {
481
482                 $arr = [];
483                 $features = Feature::get();
484                 foreach ($features as $fname => $fdata) {
485                         $arr[$fname] = [];
486                         $arr[$fname][0] = $fdata[0];
487                         foreach (array_slice($fdata,1) as $f) {
488                                 $arr[$fname][1][] = ['feature_' . $f[0], $f[1], Feature::isEnabled(local_user(), $f[0]), $f[2]];
489                         }
490                 }
491
492                 $tpl = Renderer::getMarkupTemplate('settings/features.tpl');
493                 $o .= Renderer::replaceMacros($tpl, [
494                         '$form_security_token' => BaseModule::getFormSecurityToken("settings_features"),
495                         '$title'               => DI::l10n()->t('Additional Features'),
496                         '$features'            => $arr,
497                         '$submit'              => DI::l10n()->t('Save Settings'),
498                 ]);
499                 return $o;
500         }
501
502         if ((DI::args()->getArgc() > 1) && (DI::args()->getArgv()[1] === 'connectors')) {
503                 $accept_only_sharer        = intval(DI::pConfig()->get(local_user(), 'system', 'accept_only_sharer'));
504                 $enable_cw                 = !intval(DI::pConfig()->get(local_user(), 'system', 'disable_cw'));
505                 $enable_smart_shortening   = !intval(DI::pConfig()->get(local_user(), 'system', 'no_intelligent_shortening'));
506                 $simple_shortening         = intval(DI::pConfig()->get(local_user(), 'system', 'simple_shortening'));
507                 $attach_link_title         = intval(DI::pConfig()->get(local_user(), 'system', 'attach_link_title'));
508                 $legacy_contact            = DI::pConfig()->get(local_user(), 'ostatus', 'legacy_contact');
509
510                 if (!empty($legacy_contact)) {
511                         /// @todo Isn't it supposed to be a $a->internalRedirect() call?
512                         DI::page()['htmlhead'] = '<meta http-equiv="refresh" content="0; URL=' . DI::baseUrl().'/ostatus_subscribe?url=' . urlencode($legacy_contact) . '">';
513                 }
514
515                 $connector_settings_forms = [];
516                 foreach (DI::dba()->selectToArray('hook', ['file', 'function'], ['hook' => 'connector_settings']) as $hook) {
517                         $data = [];
518                         Hook::callSingle(DI::app(), 'connector_settings', [$hook['file'], $hook['function']], $data);
519
520                         $tpl = Renderer::getMarkupTemplate('settings/addon/connector.tpl');
521                         $connector_settings_forms[$data['connector']] = Renderer::replaceMacros($tpl, [
522                                 '$connector' => $data['connector'],
523                                 '$title'     => $data['title'],
524                                 '$image'     => $data['image'] ?? '',
525                                 '$enabled'   => $data['enabled'] ?? true,
526                                 '$open'      => (DI::args()->getArgv()[2] ?? '') === $data['connector'],
527                                 '$html'      => $data['html'] ?? '',
528                                 '$submit'    => $data['submit'] ?? DI::l10n()->t('Save Settings'),
529                         ]);
530                 }
531
532                 if ($a->isSiteAdmin()) {
533                         $diasp_enabled = DI::l10n()->t('Built-in support for %s connectivity is %s', DI::l10n()->t('Diaspora (Socialhome, Hubzilla)'), ((DI::config()->get('system', 'diaspora_enabled')) ? DI::l10n()->t('enabled') : DI::l10n()->t('disabled')));
534                         $ostat_enabled = DI::l10n()->t('Built-in support for %s connectivity is %s', DI::l10n()->t('OStatus (GNU Social)'), ((DI::config()->get('system', 'ostatus_disabled')) ? DI::l10n()->t('disabled') : DI::l10n()->t('enabled')));
535                 } else {
536                         $diasp_enabled = "";
537                         $ostat_enabled = "";
538                 }
539
540                 $mail_disabled = ((function_exists('imap_open') && (!DI::config()->get('system', 'imap_disabled'))) ? 0 : 1);
541                 if (!$mail_disabled) {
542                         $mailacct = DBA::selectFirst('mailacct', [], ['uid' => local_user()]);
543                 } else {
544                         $mailacct = null;
545                 }
546
547                 $mail_server       = $mailacct['server'] ?? '';
548                 $mail_port         = (!empty($mailacct['port']) && is_numeric($mailacct['port'])) ? (int)$mailacct['port'] : '';
549                 $mail_ssl          = $mailacct['ssltype'] ?? '';
550                 $mail_user         = $mailacct['user'] ?? '';
551                 $mail_replyto      = $mailacct['reply_to'] ?? '';
552                 $mail_pubmail      = $mailacct['pubmail'] ?? 0;
553                 $mail_action       = $mailacct['action'] ?? 0;
554                 $mail_movetofolder = $mailacct['movetofolder'] ?? '';
555                 $mail_chk          = $mailacct['last_check'] ?? DBA::NULL_DATETIME;
556
557
558                 $tpl = Renderer::getMarkupTemplate('settings/connectors.tpl');
559
560                 $mail_disabled_message = ($mail_disabled ? DI::l10n()->t('Email access is disabled on this site.') : '');
561
562                 $ssl_options = ['TLS' => 'TLS', 'SSL' => 'SSL'];
563
564                 if (DI::config()->get('system', 'insecure_imap')) {
565                         $ssl_options['notls'] = DI::l10n()->t('None');
566                 }
567
568                 $o .= Renderer::replaceMacros($tpl, [
569                         '$form_security_token' => BaseModule::getFormSecurityToken("settings_connectors"),
570
571                         '$title'        => DI::l10n()->t('Social Networks'),
572
573                         '$diasp_enabled' => $diasp_enabled,
574                         '$ostat_enabled' => $ostat_enabled,
575
576                         '$general_settings' => DI::l10n()->t('General Social Media Settings'),
577                         '$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.')],
578                         '$enable_cw' => ['enable_cw', DI::l10n()->t('Enable Content Warning'), $enable_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 enables the automatic collapsing instead of setting the content warning as the post title. Doesn\'t affect any other content filtering you eventually set up.')],
579                         '$enable_smart_shortening' => ['enable_smart_shortening', DI::l10n()->t('Enable intelligent shortening'), $enable_smart_shortening, DI::l10n()->t('Normally the system tries to find the best link to add to shortened posts. If disabled, every shortened post will always point to the original friendica post.')],
580                         '$simple_shortening' => ['simple_shortening', DI::l10n()->t('Enable simple text shortening'), $simple_shortening, DI::l10n()->t('Normally the system shortens posts at the next line feed. If this option is enabled then the system will shorten the text at the maximum character limit.')],
581                         '$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.')],
582                         '$legacy_contact' => ['legacy_contact', DI::l10n()->t('Your legacy ActivityPub/GNU Social account'), $legacy_contact, DI::l10n()->t("If you enter your old account name from an ActivityPub based system or your GNU Social/Statusnet account name here (in the format user@domain.tld), your contacts will be added automatically. The field will be emptied when done.")],
583
584                         '$repair_ostatus_url' => DI::baseUrl() . '/repair_ostatus',
585                         '$repair_ostatus_text' => DI::l10n()->t('Repair OStatus subscriptions'),
586
587                         '$connector_settings_forms' => $connector_settings_forms,
588
589                         '$h_mail' => DI::l10n()->t('Email/Mailbox Setup'),
590                         '$mail_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."),
591                         '$mail_lastcheck' => ['mail_lastcheck', DI::l10n()->t('Last successful email check:'), $mail_chk, ''],
592                         '$mail_disabled' => $mail_disabled_message,
593                         '$mail_server'  => ['mail_server',      DI::l10n()->t('IMAP server name:'), $mail_server, ''],
594                         '$mail_port'    => ['mail_port',        DI::l10n()->t('IMAP port:'), $mail_port, ''],
595                         '$mail_ssl'     => ['mail_ssl',         DI::l10n()->t('Security:'), strtoupper($mail_ssl), '', $ssl_options],
596                         '$mail_user'    => ['mail_user',        DI::l10n()->t('Email login name:'), $mail_user, ''],
597                         '$mail_pass'    => ['mail_pass',        DI::l10n()->t('Email password:'), '', ''],
598                         '$mail_replyto' => ['mail_replyto',     DI::l10n()->t('Reply-to address:'), $mail_replyto, 'Optional'],
599                         '$mail_pubmail' => ['mail_pubmail',     DI::l10n()->t('Send public posts to all email contacts:'), $mail_pubmail, ''],
600                         '$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')]],
601                         '$mail_movetofolder' => ['mail_movetofolder', DI::l10n()->t('Move to folder:'), $mail_movetofolder, ''],
602                         '$submit' => DI::l10n()->t('Save Settings'),
603                 ]);
604
605                 Hook::callAll('display_settings', $o);
606                 return $o;
607         }
608
609         /*
610          * ACCOUNT SETTINGS
611          */
612
613         $profile = DBA::selectFirst('profile', [], ['uid' => local_user()]);
614         if (!DBA::isResult($profile)) {
615                 notice(DI::l10n()->t('Unable to find your profile. Please contact your admin.'));
616                 return '';
617         }
618
619         $user = User::getById($a->getLoggedInUserId());
620
621         $username   = $user['username'];
622         $email      = $user['email'];
623         $nickname   = $a->getLoggedInUserNickname();
624         $timezone   = $user['timezone'];
625         $language   = $user['language'];
626         $notify     = $user['notify-flags'];
627         $defloc     = $user['default-location'];
628         $openid     = $user['openid'];
629         $maxreq     = $user['maxreq'];
630         $expire     =  ((intval($user['expire'])) ? $user['expire'] : '');
631         $unkmail    = $user['unkmail'];
632         $cntunkmail = $user['cntunkmail'];
633
634         $expire_items = DI::pConfig()->get(local_user(), 'expire', 'items', true);
635         $expire_notes = DI::pConfig()->get(local_user(), 'expire', 'notes', true);
636         $expire_starred = DI::pConfig()->get(local_user(), 'expire', 'starred', true);
637         $expire_photos = DI::pConfig()->get(local_user(), 'expire', 'photos', false);
638         $expire_network_only = DI::pConfig()->get(local_user(), 'expire', 'network_only', false);
639
640         if (!strlen($user['timezone'])) {
641                 $timezone = $a->getTimeZone();
642         }
643
644         // Set the account type to "Community" when the page is a community page but the account type doesn't fit
645         // This is only happening on the first visit after the update
646         if (in_array($user['page-flags'], [User::PAGE_FLAGS_COMMUNITY, User::PAGE_FLAGS_PRVGROUP]) &&
647                 ($user['account-type'] != User::ACCOUNT_TYPE_COMMUNITY))
648                 $user['account-type'] = User::ACCOUNT_TYPE_COMMUNITY;
649
650         $pageset_tpl = Renderer::getMarkupTemplate('settings/pagetypes.tpl');
651
652         $pagetype = Renderer::replaceMacros($pageset_tpl, [
653                 '$account_types'        => DI::l10n()->t("Account Types"),
654                 '$user'                 => DI::l10n()->t("Personal Page Subtypes"),
655                 '$community'            => DI::l10n()->t("Community Forum Subtypes"),
656                 '$account_type'         => $user['account-type'],
657                 '$type_person'          => User::ACCOUNT_TYPE_PERSON,
658                 '$type_organisation'    => User::ACCOUNT_TYPE_ORGANISATION,
659                 '$type_news'            => User::ACCOUNT_TYPE_NEWS,
660                 '$type_community'       => User::ACCOUNT_TYPE_COMMUNITY,
661
662                 '$account_person'       => ['account-type', DI::l10n()->t('Personal Page'), User::ACCOUNT_TYPE_PERSON,
663                                                                         DI::l10n()->t('Account for a personal profile.'),
664                                                                         ($user['account-type'] == User::ACCOUNT_TYPE_PERSON)],
665
666                 '$account_organisation' => ['account-type', DI::l10n()->t('Organisation Page'), User::ACCOUNT_TYPE_ORGANISATION,
667                                                                         DI::l10n()->t('Account for an organisation that automatically approves contact requests as "Followers".'),
668                                                                         ($user['account-type'] == User::ACCOUNT_TYPE_ORGANISATION)],
669
670                 '$account_news'         => ['account-type', DI::l10n()->t('News Page'), User::ACCOUNT_TYPE_NEWS,
671                                                                         DI::l10n()->t('Account for a news reflector that automatically approves contact requests as "Followers".'),
672                                                                         ($user['account-type'] == User::ACCOUNT_TYPE_NEWS)],
673
674                 '$account_community'    => ['account-type', DI::l10n()->t('Community Forum'), User::ACCOUNT_TYPE_COMMUNITY,
675                                                                         DI::l10n()->t('Account for community discussions.'),
676                                                                         ($user['account-type'] == User::ACCOUNT_TYPE_COMMUNITY)],
677
678                 '$page_normal'          => ['page-flags', DI::l10n()->t('Normal Account Page'), User::PAGE_FLAGS_NORMAL,
679                                                                         DI::l10n()->t('Account for a regular personal profile that requires manual approval of "Friends" and "Followers".'),
680                                                                         ($user['page-flags'] == User::PAGE_FLAGS_NORMAL)],
681
682                 '$page_soapbox'         => ['page-flags', DI::l10n()->t('Soapbox Page'), User::PAGE_FLAGS_SOAPBOX,
683                                                                         DI::l10n()->t('Account for a public profile that automatically approves contact requests as "Followers".'),
684                                                                         ($user['page-flags'] == User::PAGE_FLAGS_SOAPBOX)],
685
686                 '$page_community'       => ['page-flags', DI::l10n()->t('Public Forum'), User::PAGE_FLAGS_COMMUNITY,
687                                                                         DI::l10n()->t('Automatically approves all contact requests.'),
688                                                                         ($user['page-flags'] == User::PAGE_FLAGS_COMMUNITY)],
689
690                 '$page_freelove'        => ['page-flags', DI::l10n()->t('Automatic Friend Page'), User::PAGE_FLAGS_FREELOVE,
691                                                                         DI::l10n()->t('Account for a popular profile that automatically approves contact requests as "Friends".'),
692                                                                         ($user['page-flags'] == User::PAGE_FLAGS_FREELOVE)],
693
694                 '$page_prvgroup'        => ['page-flags', DI::l10n()->t('Private Forum [Experimental]'), User::PAGE_FLAGS_PRVGROUP,
695                                                                         DI::l10n()->t('Requires manual approval of contact requests.'),
696                                                                         ($user['page-flags'] == User::PAGE_FLAGS_PRVGROUP)],
697
698
699         ]);
700
701         $noid = DI::config()->get('system', 'no_openid');
702
703         if ($noid) {
704                 $openid_field = false;
705         } else {
706                 $openid_field = ['openid_url', DI::l10n()->t('OpenID:'), $openid, DI::l10n()->t("\x28Optional\x29 Allow this OpenID to login to this account."), "", "readonly", "url"];
707         }
708
709         $opt_tpl = Renderer::getMarkupTemplate("field_checkbox.tpl");
710         if (DI::config()->get('system', 'publish_all')) {
711                 $profile_in_dir = '<input type="hidden" name="profile_in_directory" value="1" />';
712         } else {
713                 $profile_in_dir = Renderer::replaceMacros($opt_tpl, [
714                         '$field' => ['profile_in_directory', DI::l10n()->t('Publish your 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')]
715                 ]);
716         }
717
718         $net_pub_desc = '';
719         if (strlen(DI::config()->get('system', 'directory'))) {
720                 $net_pub_desc = ' ' . DI::l10n()->t('Your profile will also be published in the global friendica directories (e.g. <a href="%s">%s</a>).', DI::config()->get('system', 'directory'), DI::config()->get('system', 'directory'));
721         }
722
723         $tpl_addr = Renderer::getMarkupTemplate('settings/nick_set.tpl');
724
725         $prof_addr = Renderer::replaceMacros($tpl_addr,[
726                 '$desc' => DI::l10n()->t("Your Identity Address is <strong>'%s'</strong> or '%s'.", $nickname . '@' . DI::baseUrl()->getHostname() . DI::baseUrl()->getUrlPath(), DI::baseUrl() . '/profile/' . $nickname),
727                 '$basepath' => DI::baseUrl()->getHostname()
728         ]);
729
730         $stpl = Renderer::getMarkupTemplate('settings/settings.tpl');
731
732         /* Installed langs */
733         $lang_choices = DI::l10n()->getAvailableLanguages();
734
735         /// @TODO Fix indending (or so)
736         $o .= Renderer::replaceMacros($stpl, [
737                 '$ptitle'       => DI::l10n()->t('Account Settings'),
738
739                 '$submit'       => DI::l10n()->t('Save Settings'),
740                 '$baseurl' => DI::baseUrl()->get(true),
741                 '$uid' => local_user(),
742                 '$form_security_token' => BaseModule::getFormSecurityToken("settings"),
743                 '$nickname_block' => $prof_addr,
744
745                 '$h_pass'       => DI::l10n()->t('Password Settings'),
746                 '$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 (:).')],
747                 '$password2'=> ['confirm', DI::l10n()->t('Confirm:'), '', DI::l10n()->t('Leave password fields blank unless changing')],
748                 '$password3'=> ['opassword', DI::l10n()->t('Current Password:'), '', DI::l10n()->t('Your current password to confirm the changes')],
749                 '$password4'=> ['mpassword', DI::l10n()->t('Password:'), '', DI::l10n()->t('Your current password to confirm the changes of the email address')],
750                 '$oid_enable' => (!DI::config()->get('system', 'no_openid')),
751                 '$openid'       => $openid_field,
752                 '$delete_openid' => ['delete_openid', DI::l10n()->t('Delete OpenID URL'), false, ''],
753
754                 '$h_basic'      => DI::l10n()->t('Basic Settings'),
755                 '$username' => ['username',  DI::l10n()->t('Full Name:'), $username, ''],
756                 '$email'        => ['email', DI::l10n()->t('Email Address:'), $email, '', '', '', 'email'],
757                 '$timezone' => ['timezone_select' , DI::l10n()->t('Your Timezone:'), Temporal::getTimezoneSelect($timezone), ''],
758                 '$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],
759                 '$defloc'       => ['defloc', DI::l10n()->t('Default Post Location:'), $defloc, ''],
760                 '$allowloc' => ['allow_location', DI::l10n()->t('Use Browser Location:'), ($user['allow_location'] == 1), ''],
761
762                 '$h_prv'                  => DI::l10n()->t('Security and Privacy Settings'),
763                 '$is_community'       => ($user['account-type'] == User::ACCOUNT_TYPE_COMMUNITY),
764                 '$maxreq'                 => ['maxreq', DI::l10n()->t('Maximum Friend Requests/Day:'), $maxreq , DI::l10n()->t("\x28to prevent spam abuse\x29")],
765                 '$profile_in_dir'     => $profile_in_dir,
766                 '$profile_in_net_dir' => ['profile_in_netdirectory', DI::l10n()->t('Allow your profile to be searchable globally?'), $profile['net-publish'], DI::l10n()->t("Activate this setting if you want others to easily find and follow you. Your profile will be searchable on remote systems. This setting also determines whether Friendica will inform search engines that your profile should be indexed or not.") . $net_pub_desc],
767                 '$hide_friends'       => ['hide-friends', DI::l10n()->t('Hide your contact/friend list from viewers of your profile?'), $profile['hide-friends'], DI::l10n()->t('A list of your contacts is displayed on your profile page. Activate this option to disable the display of your contact list.')],
768                 '$hide_wall'          => ['hidewall', DI::l10n()->t('Hide your profile details from anonymous viewers?'), $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.')],
769                 '$unlisted'           => ['unlisted', DI::l10n()->t('Make public posts unlisted'), DI::pConfig()->get(local_user(), 'system', 'unlisted'), DI::l10n()->t('Your public posts will not appear on the community pages or in search results, nor be sent to relay servers. However they can still appear on public feeds on remote servers.')],
770                 '$accessiblephotos'   => ['accessible-photos', DI::l10n()->t('Make all posted pictures accessible'), DI::pConfig()->get(local_user(), 'system', 'accessible-photos'), DI::l10n()->t("This option makes every posted picture accessible via the direct link. This is a workaround for the problem that most other networks can't handle permissions on pictures. Non public pictures still won't be visible for the public on your photo albums though.")],
771                 '$blockwall'          => ['blockwall', DI::l10n()->t('Allow friends to post to your profile page?'), (intval($user['blockwall']) ? '0' : '1'), DI::l10n()->t('Your contacts may write posts on your profile wall. These posts will be distributed to your contacts')], // array('blockwall', DI::l10n()->t('Allow friends to post to your profile page:'), !$blockwall, ''),
772                 '$blocktags'          => ['blocktags', DI::l10n()->t('Allow friends to tag your posts?'), (intval($user['blocktags']) ? '0' : '1'), DI::l10n()->t('Your contacts can add additional tags to your posts.')], // array('blocktags', DI::l10n()->t('Allow friends to tag your posts:'), !$blocktags, ''),
773                 '$unkmail'            => ['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.')],
774                 '$cntunkmail'         => ['cntunkmail', DI::l10n()->t('Maximum private messages per day from unknown people:'), $cntunkmail , DI::l10n()->t("\x28to prevent spam abuse\x29")],
775                 '$group_select'       => Group::displayGroupSelection(local_user(), $user['def_gid']),
776                 '$permissions'        => DI::l10n()->t('Default Post Permissions'),
777                 '$aclselect'          => ACL::getFullSelectorHTML(DI::page(), $a->getLoggedInUserId()),
778
779                 '$expire' => [
780                         'label'        => DI::l10n()->t('Expiration settings'),
781                         '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')],
782                         'items'        => ['expire_items', DI::l10n()->t('Expire posts'), $expire_items, DI::l10n()->t('When activated, posts and comments will be expired.')],
783                         'notes'        => ['expire_notes', DI::l10n()->t('Expire personal notes'), $expire_notes, DI::l10n()->t('When activated, the personal notes on your profile page will be expired.')],
784                         'starred'      => ['expire_starred', DI::l10n()->t('Expire starred posts'), $expire_starred, DI::l10n()->t('Starring posts keeps them from being expired. That behaviour is overwritten by this setting.')],
785                         'photos'       => ['expire_photos', DI::l10n()->t('Expire photos'), $expire_photos, DI::l10n()->t('When activated, photos will be expired.')],
786                         'network_only' => ['expire_network_only', DI::l10n()->t('Only expire posts by others'), $expire_network_only, DI::l10n()->t('When activated, your own posts never expire. Then the settings above are only valid for posts you received.')],
787                 ],
788
789                 '$h_not'        => DI::l10n()->t('Notification Settings'),
790                 '$lbl_not'      => DI::l10n()->t('Send a notification email when:'),
791                 '$notify1'      => ['notify1', DI::l10n()->t('You receive an introduction'), ($notify & Notification\Type::INTRO), Notification\Type::INTRO, ''],
792                 '$notify2'      => ['notify2', DI::l10n()->t('Your introductions are confirmed'), ($notify & Notification\Type::CONFIRM), Notification\Type::CONFIRM, ''],
793                 '$notify3'      => ['notify3', DI::l10n()->t('Someone writes on your profile wall'), ($notify & Notification\Type::WALL), Notification\Type::WALL, ''],
794                 '$notify4'      => ['notify4', DI::l10n()->t('Someone writes a followup comment'), ($notify & Notification\Type::COMMENT), Notification\Type::COMMENT, ''],
795                 '$notify5'      => ['notify5', DI::l10n()->t('You receive a private message'), ($notify & Notification\Type::MAIL), Notification\Type::MAIL, ''],
796                 '$notify6'  => ['notify6', DI::l10n()->t('You receive a friend suggestion'), ($notify & Notification\Type::SUGGEST), Notification\Type::SUGGEST, ''],
797                 '$notify7'  => ['notify7', DI::l10n()->t('You are tagged in a post'), ($notify & Notification\Type::TAG_SELF), Notification\Type::TAG_SELF, ''],
798                 '$notify8'  => ['notify8', DI::l10n()->t('You are poked/prodded/etc. in a post'), ($notify & Notification\Type::POKE), Notification\Type::POKE, ''],
799
800                 '$lbl_notify'      => DI::l10n()->t('Create a desktop notification when:'),
801                 '$notify_like'     => ['notify_like', DI::l10n()->t('Someone liked your content'), DI::pConfig()->get(local_user(), 'system', 'notify_like'), ''],
802                 '$notify_announce' => ['notify_announce', DI::l10n()->t('Someone shared your content'), DI::pConfig()->get(local_user(), 'system', 'notify_announce'), ''],
803
804                 '$desktop_notifications' => ['desktop_notifications', DI::l10n()->t('Activate desktop notifications') , false, DI::l10n()->t('Show desktop popup on new notifications')],
805
806                 '$email_textonly' => ['email_textonly', DI::l10n()->t('Text-only notification emails'),
807                                                                         DI::pConfig()->get(local_user(), 'system', 'email_textonly'),
808                                                                         DI::l10n()->t('Send text only notification emails, without the html part')],
809
810                 '$detailed_notif' => ['detailed_notif', DI::l10n()->t('Show detailled notifications'),
811                                                                         DI::pConfig()->get(local_user(), 'system', 'detailed_notif'),
812                                                                         DI::l10n()->t('Per default, notifications are condensed to a single notification per item. When enabled every notification is displayed.')],
813
814                 '$notify_ignored' => ['notify_ignored', DI::l10n()->t('Show notifications of ignored contacts') ,
815                                                                         DI::pConfig()->get(local_user(), 'system', 'notify_ignored', true),
816                                                                         DI::l10n()->t("You don't see posts from ignored contacts. But you still see their comments. This setting controls if you want to still receive regular notifications that are caused by ignored contacts or not.")],
817
818                                                                         '$h_advn' => DI::l10n()->t('Advanced Account/Page Type Settings'),
819                 '$h_descadvn' => DI::l10n()->t('Change the behaviour of this account for special situations'),
820                 '$pagetype' => $pagetype,
821
822                 '$importcontact' => DI::l10n()->t('Import Contacts'),
823                 '$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.'),
824                 '$importcontact_button' => DI::l10n()->t('Upload File'),
825                 '$importcontact_maxsize' => DI::config()->get('system', 'max_csv_file_size', 30720),
826                 '$relocate' => DI::l10n()->t('Relocate'),
827                 '$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."),
828                 '$relocate_button' => DI::l10n()->t("Resend relocate message to contacts"),
829
830         ]);
831
832         Hook::callAll('settings_form', $o);
833
834         $o .= '</form>' . "\r\n";
835
836         return $o;
837
838 }