]> git.mxchange.org Git - friendica.git/blob - mod/settings.php
38bfedbb1ce1916d45f9d3f5c07f54961a7ef07d
[friendica.git] / mod / settings.php
1 <?php
2
3
4 function get_theme_config_file($theme){
5         $a = get_app();
6         $base_theme = $a->theme_info['extends'];
7         
8         if (file_exists("view/theme/$theme/config.php")){
9                 return "view/theme/$theme/config.php";
10         } 
11         if (file_exists("view/theme/$base_theme/config.php")){
12                 return "view/theme/$base_theme/config.php";
13         }
14         return null;
15 }
16
17 function settings_init(&$a) {
18
19         // These lines provide the javascript needed by the acl selector
20
21         $tpl = get_markup_template("settings-head.tpl");
22         $a->page['htmlhead'] .= replace_macros($tpl,array(
23                 '$ispublic' => t('everybody')
24         ));
25
26
27
28         $tabs = array(
29                 array(
30                         'label' => t('Account settings'),
31                         'url'   => $a->get_baseurl(true).'/settings',
32                         'selected'      => (($a->argc == 1)?'active':''),
33                 ),
34                 array(
35                         'label' => t('Additional features'),
36                         'url'   => $a->get_baseurl(true).'/settings/features',
37                         'selected'      => (($a->argc > 1) && ($a->argv[1] === 'features') ? 'active' : ''),
38                 ),
39                 array(
40                         'label' => t('Display settings'),
41                         'url'   => $a->get_baseurl(true).'/settings/display',
42                         'selected'      => (($a->argc > 1) && ($a->argv[1] === 'display')?'active':''),
43                 ),
44
45                 array(
46                         'label' => t('Connector settings'),
47                         'url'   => $a->get_baseurl(true).'/settings/connectors',
48                         'selected'      => (($a->argc > 1) && ($a->argv[1] === 'connectors')?'active':''),
49                 ),
50                 array(
51                         'label' => t('Plugin settings'),
52                         'url'   => $a->get_baseurl(true).'/settings/addon',
53                         'selected'      => (($a->argc > 1) && ($a->argv[1] === 'addon')?'active':''),
54                 ),
55                 array(
56                         'label' => t('Connected apps'),
57                         'url' => $a->get_baseurl(true) . '/settings/oauth',
58                         'selected' => (($a->argc > 1) && ($a->argv[1] === 'oauth')?'active':''),
59                 ),
60                 array(
61                         'label' => t('Export personal data'),
62                         'url' => $a->get_baseurl(true) . '/uexport',
63                         'selected' => ''
64                 ),
65                 array(
66                         'label' => t('Remove account'),
67                         'url' => $a->get_baseurl(true) . '/removeme',
68                         'selected' => ''
69                 )
70         );
71
72         $tabtpl = get_markup_template("generic_links_widget.tpl");
73         $a->page['aside'] = replace_macros($tabtpl, array(
74                 '$title' => t('Settings'),
75                 '$class' => 'settings-widget',
76                 '$items' => $tabs,
77         ));
78
79 }
80
81
82 function settings_post(&$a) {
83
84         if(! local_user())
85                 return;
86
87         if(x($_SESSION,'submanage') && intval($_SESSION['submanage']))
88                 return;
89
90         if(count($a->user) && x($a->user,'uid') && $a->user['uid'] != local_user()) {
91                 notice( t('Permission denied.') . EOL);
92                 return;
93         }
94
95         $old_page_flags = $a->user['page-flags'];
96
97         if(($a->argc > 1) && ($a->argv[1] === 'oauth') && x($_POST,'remove')){
98                 check_form_security_token_redirectOnErr('/settings/oauth', 'settings_oauth');
99
100                 $key = $_POST['remove'];
101                 q("DELETE FROM tokens WHERE id='%s' AND uid=%d",
102                         dbesc($key),
103                         local_user());
104                 goaway($a->get_baseurl(true)."/settings/oauth/");
105                 return;
106         }
107
108         if(($a->argc > 2) && ($a->argv[1] === 'oauth')  && ($a->argv[2] === 'edit'||($a->argv[2] === 'add')) && x($_POST,'submit')) {
109
110                 check_form_security_token_redirectOnErr('/settings/oauth', 'settings_oauth');
111
112                 $name           = ((x($_POST,'name')) ? $_POST['name'] : '');
113                 $key            = ((x($_POST,'key')) ? $_POST['key'] : '');
114                 $secret         = ((x($_POST,'secret')) ? $_POST['secret'] : '');
115                 $redirect       = ((x($_POST,'redirect')) ? $_POST['redirect'] : '');
116                 $icon           = ((x($_POST,'icon')) ? $_POST['icon'] : '');
117                 if ($name=="" || $key=="" || $secret==""){
118                         notice(t("Missing some important data!"));
119
120                 } else {
121                         if ($_POST['submit']==t("Update")){
122                                 $r = q("UPDATE clients SET
123                                                         client_id='%s',
124                                                         pw='%s',
125                                                         name='%s',
126                                                         redirect_uri='%s',
127                                                         icon='%s',
128                                                         uid=%d
129                                                 WHERE client_id='%s'",
130                                                 dbesc($key),
131                                                 dbesc($secret),
132                                                 dbesc($name),
133                                                 dbesc($redirect),
134                                                 dbesc($icon),
135                                                 local_user(),
136                                                 dbesc($key));
137                         } else {
138                                 $r = q("INSERT INTO clients
139                                                         (client_id, pw, name, redirect_uri, icon, uid)
140                                                 VALUES ('%s','%s','%s','%s','%s',%d)",
141                                                 dbesc($key),
142                                                 dbesc($secret),
143                                                 dbesc($name),
144                                                 dbesc($redirect),
145                                                 dbesc($icon),
146                                                 local_user());
147                         }
148                 }
149                 goaway($a->get_baseurl(true)."/settings/oauth/");
150                 return;
151         }
152
153         if(($a->argc > 1) && ($a->argv[1] == 'addon')) {
154                 check_form_security_token_redirectOnErr('/settings/addon', 'settings_addon');
155                 
156                 call_hooks('plugin_settings_post', $_POST);
157                 return;
158         }
159
160         if(($a->argc > 1) && ($a->argv[1] == 'connectors')) {
161                 
162                 check_form_security_token_redirectOnErr('/settings/connectors', 'settings_connectors');
163                 
164                 if(x($_POST, 'imap-submit')) {
165                         
166                         $mail_server       = ((x($_POST,'mail_server')) ? $_POST['mail_server'] : '');
167                         $mail_port         = ((x($_POST,'mail_port')) ? $_POST['mail_port'] : '');
168                         $mail_ssl          = ((x($_POST,'mail_ssl')) ? strtolower(trim($_POST['mail_ssl'])) : '');
169                         $mail_user         = ((x($_POST,'mail_user')) ? $_POST['mail_user'] : '');
170                         $mail_pass         = ((x($_POST,'mail_pass')) ? trim($_POST['mail_pass']) : '');
171                         $mail_action       = ((x($_POST,'mail_action')) ? trim($_POST['mail_action']) : '');
172                         $mail_movetofolder = ((x($_POST,'mail_movetofolder')) ? trim($_POST['mail_movetofolder']) : '');
173                         $mail_replyto      = ((x($_POST,'mail_replyto')) ? $_POST['mail_replyto'] : '');
174                         $mail_pubmail      = ((x($_POST,'mail_pubmail')) ? $_POST['mail_pubmail'] : '');
175
176
177                         $mail_disabled = ((function_exists('imap_open') && (! get_config('system','imap_disabled'))) ? 0 : 1);
178                         if(get_config('system','dfrn_only'))
179                                 $mail_disabled = 1;
180
181                         if(! $mail_disabled) {
182                                 $failed = false;
183                                 $r = q("SELECT * FROM `mailacct` WHERE `uid` = %d LIMIT 1",
184                                         intval(local_user())
185                                 );
186                                 if(! count($r)) {
187                                         q("INSERT INTO `mailacct` (`uid`) VALUES (%d)",
188                                                 intval(local_user())
189                                         );
190                                 }
191                                 if(strlen($mail_pass)) {
192                                         $pass = '';
193                                         openssl_public_encrypt($mail_pass,$pass,$a->user['pubkey']);
194                                         q("UPDATE `mailacct` SET `pass` = '%s' WHERE `uid` = %d LIMIT 1",
195                                                 dbesc(bin2hex($pass)),
196                                                 intval(local_user())
197                                         );
198                                 }
199                                 $r = q("UPDATE `mailacct` SET `server` = '%s', `port` = %d, `ssltype` = '%s', `user` = '%s',
200                                         `action` = %d, `movetofolder` = '%s',
201                                         `mailbox` = 'INBOX', `reply_to` = '%s', `pubmail` = %d WHERE `uid` = %d LIMIT 1",
202                                         dbesc($mail_server),
203                                         intval($mail_port),
204                                         dbesc($mail_ssl),
205                                         dbesc($mail_user),
206                                         intval($mail_action),
207                                         dbesc($mail_movetofolder),
208                                         dbesc($mail_replyto),
209                                         intval($mail_pubmail),
210                                         intval(local_user())
211                                 );
212                                 logger("mail: updating mailaccount. Response: ".print_r($r, true));
213                                 $r = q("SELECT * FROM `mailacct` WHERE `uid` = %d LIMIT 1",
214                                         intval(local_user())
215                                 );
216                                 if(count($r)) {
217                                         $eacct = $r[0];
218                                         require_once('include/email.php');
219                                         $mb = construct_mailbox_name($eacct);
220                                         if(strlen($eacct['server'])) {
221                                                 $dcrpass = '';
222                                                 openssl_private_decrypt(hex2bin($eacct['pass']),$dcrpass,$a->user['prvkey']);
223                                                 $mbox = email_connect($mb,$mail_user,$dcrpass);
224                                                 unset($dcrpass);
225                                                 if(! $mbox) {
226                                                         $failed = true;
227                                                         notice( t('Failed to connect with email account using the settings provided.') . EOL);
228                                                 }
229                                         }
230                                 }
231                                 if(! $failed)
232                                         info( t('Email settings updated.') . EOL);
233                         }
234                 }
235
236                 call_hooks('connector_settings_post', $_POST);
237                 return;
238         }
239
240         if(($a->argc > 1) && ($a->argv[1] === 'features')) {
241                 check_form_security_token_redirectOnErr('/settings/features', 'settings_features');
242                 foreach($_POST as $k => $v) {
243                         if(strpos($k,'feature_') === 0) {
244                                 set_pconfig(local_user(),'feature',substr($k,8),((intval($v)) ? 1 : 0));
245                         }
246                 }
247                 info( t('Features updated') . EOL);
248                 return;
249         }
250
251         if(($a->argc > 1) && ($a->argv[1] === 'display')) {
252
253                 check_form_security_token_redirectOnErr('/settings/display', 'settings_display');
254
255                 $theme = ((x($_POST,'theme')) ? notags(trim($_POST['theme']))  : $a->user['theme']);
256                 $mobile_theme = ((x($_POST,'mobile_theme')) ? notags(trim($_POST['mobile_theme']))  : '');
257                 $nosmile = ((x($_POST,'nosmile')) ? intval($_POST['nosmile'])  : 0);  
258                 $browser_update   = ((x($_POST,'browser_update')) ? intval($_POST['browser_update']) : 0);
259                 $browser_update   = $browser_update * 1000;
260                 if($browser_update < 10000)
261                         $browser_update = 10000;
262
263                 $itemspage_network   = ((x($_POST,'itemspage_network')) ? intval($_POST['itemspage_network']) : 40);
264                 if($itemspage_network > 100)
265                         $itemspage_network = 100;
266
267
268                 if($mobile_theme !== '') {
269                         set_pconfig(local_user(),'system','mobile_theme',$mobile_theme);
270                 }
271
272                 set_pconfig(local_user(),'system','update_interval', $browser_update);
273                 set_pconfig(local_user(),'system','itemspage_network', $itemspage_network);
274                 set_pconfig(local_user(),'system','no_smilies',$nosmile);
275
276
277                 if ($theme == $a->user['theme']){
278                         // call theme_post only if theme has not been changed
279                         if( ($themeconfigfile = get_theme_config_file($theme)) != null){
280                                 require_once($themeconfigfile);
281                                 theme_post($a);
282                         }
283                 }
284
285
286                 $r = q("UPDATE `user` SET `theme` = '%s' WHERE `uid` = %d LIMIT 1",
287                                 dbesc($theme),
288                                 intval(local_user())
289                 );
290         
291                 call_hooks('display_settings_post', $_POST);
292                 goaway($a->get_baseurl(true) . '/settings/display' );
293                 return; // NOTREACHED
294         }
295
296         check_form_security_token_redirectOnErr('/settings', 'settings');
297         
298         call_hooks('settings_post', $_POST);
299
300         if((x($_POST,'npassword')) || (x($_POST,'confirm'))) {
301
302                 $newpass = $_POST['npassword'];
303                 $confirm = $_POST['confirm'];
304
305                 $err = false;
306                 if($newpass != $confirm ) {
307                         notice( t('Passwords do not match. Password unchanged.') . EOL);
308                         $err = true;
309                 }
310
311                 if((! x($newpass)) || (! x($confirm))) {
312                         notice( t('Empty passwords are not allowed. Password unchanged.') . EOL);
313                         $err = true;
314                 }
315
316                 if(! $err) {
317                         $password = hash('whirlpool',$newpass);
318                         $r = q("UPDATE `user` SET `password` = '%s' WHERE `uid` = %d LIMIT 1",
319                                 dbesc($password),
320                                 intval(local_user())
321                         );
322                         if($r)
323                                 info( t('Password changed.') . EOL);
324                         else
325                                 notice( t('Password update failed. Please try again.') . EOL);
326                 }
327         }
328
329         
330         $username         = ((x($_POST,'username'))   ? notags(trim($_POST['username']))     : '');
331         $email            = ((x($_POST,'email'))      ? notags(trim($_POST['email']))        : '');
332         $timezone         = ((x($_POST,'timezone'))   ? notags(trim($_POST['timezone']))     : '');
333         $defloc           = ((x($_POST,'defloc'))     ? notags(trim($_POST['defloc']))       : '');
334         $openid           = ((x($_POST,'openid_url')) ? notags(trim($_POST['openid_url']))   : '');
335         $maxreq           = ((x($_POST,'maxreq'))     ? intval($_POST['maxreq'])             : 0);
336         $expire           = ((x($_POST,'expire'))     ? intval($_POST['expire'])             : 0);
337         $def_gid          = ((x($_POST,'group-selection')) ? intval($_POST['group-selection']) : 0);
338
339
340         $expire_items     = ((x($_POST,'expire_items')) ? intval($_POST['expire_items'])         : 0);
341         $expire_notes     = ((x($_POST,'expire_notes')) ? intval($_POST['expire_notes'])         : 0);
342         $expire_starred   = ((x($_POST,'expire_starred')) ? intval($_POST['expire_starred']) : 0);
343         $expire_photos    = ((x($_POST,'expire_photos'))? intval($_POST['expire_photos'])        : 0);
344         $expire_network_only    = ((x($_POST,'expire_network_only'))? intval($_POST['expire_network_only'])      : 0);
345
346         $allow_location   = (((x($_POST,'allow_location')) && (intval($_POST['allow_location']) == 1)) ? 1: 0);
347         $publish          = (((x($_POST,'profile_in_directory')) && (intval($_POST['profile_in_directory']) == 1)) ? 1: 0);
348         $net_publish      = (((x($_POST,'profile_in_netdirectory')) && (intval($_POST['profile_in_netdirectory']) == 1)) ? 1: 0);
349         $old_visibility   = (((x($_POST,'visibility')) && (intval($_POST['visibility']) == 1)) ? 1 : 0);
350         $page_flags       = (((x($_POST,'page-flags')) && (intval($_POST['page-flags']))) ? intval($_POST['page-flags']) : 0);
351         $blockwall        = (((x($_POST,'blockwall')) && (intval($_POST['blockwall']) == 1)) ? 0: 1); // this setting is inverted!
352         $blocktags        = (((x($_POST,'blocktags')) && (intval($_POST['blocktags']) == 1)) ? 0: 1); // this setting is inverted!
353         $unkmail          = (((x($_POST,'unkmail')) && (intval($_POST['unkmail']) == 1)) ? 1: 0);
354         $cntunkmail       = ((x($_POST,'cntunkmail')) ? intval($_POST['cntunkmail']) : 0);
355         $suggestme        = ((x($_POST,'suggestme')) ? intval($_POST['suggestme'])  : 0);  
356         $hide_friends     = (($_POST['hide-friends'] == 1) ? 1: 0);
357         $hidewall         = (($_POST['hidewall'] == 1) ? 1: 0);
358         $post_newfriend   = (($_POST['post_newfriend'] == 1) ? 1: 0);
359         $post_joingroup   = (($_POST['post_joingroup'] == 1) ? 1: 0);
360         $post_profilechange   = (($_POST['post_profilechange'] == 1) ? 1: 0);
361
362         $notify = 0;
363
364         if(x($_POST,'notify1'))
365                 $notify += intval($_POST['notify1']);
366         if(x($_POST,'notify2'))
367                 $notify += intval($_POST['notify2']);
368         if(x($_POST,'notify3'))
369                 $notify += intval($_POST['notify3']);
370         if(x($_POST,'notify4'))
371                 $notify += intval($_POST['notify4']);
372         if(x($_POST,'notify5'))
373                 $notify += intval($_POST['notify5']);
374         if(x($_POST,'notify6'))
375                 $notify += intval($_POST['notify6']);
376         if(x($_POST,'notify7'))
377                 $notify += intval($_POST['notify7']);
378         if(x($_POST,'notify8'))
379                 $notify += intval($_POST['notify8']);
380
381         $email_changed = false;
382
383         $err = '';
384
385         $name_change = false;
386
387         if($username != $a->user['username']) {
388                 $name_change = true;
389                 if(strlen($username) > 40)
390                         $err .= t(' Please use a shorter name.');
391                 if(strlen($username) < 3)
392                         $err .= t(' Name too short.');
393         }
394
395         if($email != $a->user['email']) {
396                 $email_changed = true;
397         if(! valid_email($email))
398                         $err .= t(' Not valid email.');
399                 if((x($a->config,'admin_email')) && (strcasecmp($email,$a->config['admin_email']) == 0)) {
400                         $err .= t(' Cannot change to that email.');
401                         $email = $a->user['email'];
402                 }
403         }
404
405         if(strlen($err)) {
406                 notice($err . EOL);
407                 return;
408         }
409
410         if($timezone != $a->user['timezone']) {
411                 if(strlen($timezone))
412                         date_default_timezone_set($timezone);
413         }
414
415         $str_group_allow   = perms2str($_POST['group_allow']);
416         $str_contact_allow = perms2str($_POST['contact_allow']);
417         $str_group_deny    = perms2str($_POST['group_deny']);
418         $str_contact_deny  = perms2str($_POST['contact_deny']);
419
420         $openidserver = $a->user['openidserver'];
421         $openid = normalise_openid($openid);
422
423         // If openid has changed or if there's an openid but no openidserver, try and discover it.
424
425         if($openid != $a->user['openid'] || (strlen($openid) && (! strlen($openidserver)))) {
426                 $tmp_str = $openid;
427                 if(strlen($tmp_str) && validate_url($tmp_str)) {
428                         logger('updating openidserver');
429                         require_once('library/openid.php');
430                         $open_id_obj = new LightOpenID;
431                         $open_id_obj->identity = $openid;
432                         $openidserver = $open_id_obj->discover($open_id_obj->identity);
433                 }
434                 else
435                         $openidserver = '';
436         }
437
438         set_pconfig(local_user(),'expire','items', $expire_items);
439         set_pconfig(local_user(),'expire','notes', $expire_notes);
440         set_pconfig(local_user(),'expire','starred', $expire_starred);
441         set_pconfig(local_user(),'expire','photos', $expire_photos);
442         set_pconfig(local_user(),'expire','network_only', $expire_network_only);
443
444         set_pconfig(local_user(),'system','suggestme', $suggestme);
445         set_pconfig(local_user(),'system','post_newfriend', $post_newfriend);
446         set_pconfig(local_user(),'system','post_joingroup', $post_joingroup);
447         set_pconfig(local_user(),'system','post_profilechange', $post_profilechange);
448
449
450         if($page_flags == PAGE_PRVGROUP) {
451                 $hidewall = 1;
452                 if((! $str_contact_allow) && (! $str_group_allow) && (! $str_contact_deny) && (! $str_group_deny)) {
453                         if($def_gid) {
454                                 info( t('Private forum has no privacy permissions. Using default privacy group.'). EOL);
455                                 $str_group_allow = '<' . $def_gid . '>';
456                         }
457                         else {
458                                 notice( t('Private forum has no privacy permissions and no default privacy group.') . EOL);
459                         } 
460                 }
461         }
462
463         $r = q("UPDATE `user` SET `username` = '%s', `email` = '%s', `openid` = '%s', `timezone` = '%s',  `allow_cid` = '%s', `allow_gid` = '%s', `deny_cid` = '%s', `deny_gid` = '%s', `notify-flags` = %d, `page-flags` = %d, `default-location` = '%s', `allow_location` = %d, `maxreq` = %d, `expire` = %d, `openidserver` = '%s', `def_gid` = %d, `blockwall` = %d, `hidewall` = %d, `blocktags` = %d, `unkmail` = %d, `cntunkmail` = %d  WHERE `uid` = %d LIMIT 1",
464                         dbesc($username),
465                         dbesc($email),
466                         dbesc($openid),
467                         dbesc($timezone),
468                         dbesc($str_contact_allow),
469                         dbesc($str_group_allow),
470                         dbesc($str_contact_deny),
471                         dbesc($str_group_deny),
472                         intval($notify),
473                         intval($page_flags),
474                         dbesc($defloc),
475                         intval($allow_location),
476                         intval($maxreq),
477                         intval($expire),
478                         dbesc($openidserver),
479                         intval($def_gid),
480                         intval($blockwall),
481                         intval($hidewall),
482                         intval($blocktags),
483                         intval($unkmail),
484                         intval($cntunkmail),
485                         intval(local_user())
486         );
487         if($r)
488                 info( t('Settings updated.') . EOL);
489
490         $r = q("UPDATE `profile` 
491                 SET `publish` = %d, 
492                 `name` = '%s',
493                 `net-publish` = %d,
494                 `hide-friends` = %d
495                 WHERE `is-default` = 1 AND `uid` = %d LIMIT 1",
496                 intval($publish),
497                 dbesc($username),
498                 intval($net_publish),
499                 intval($hide_friends),
500                 intval(local_user())
501         );
502
503
504         if($name_change) {
505                 q("UPDATE `contact` SET `name` = '%s', `name-date` = '%s' WHERE `uid` = %d AND `self` = 1 LIMIT 1",
506                         dbesc($username),
507                         dbesc(datetime_convert()),
508                         intval(local_user())
509                 );
510         }               
511
512         if(($old_visibility != $net_publish) || ($page_flags != $old_page_flags)) {
513                 // Update global directory in background
514                 $url = $_SESSION['my_url'];
515                 if($url && strlen(get_config('system','directory_submit_url')))
516                         proc_run('php',"include/directory.php","$url");
517
518         }
519
520
521         require_once('include/profile_update.php');
522         profile_change();
523
524         //$_SESSION['theme'] = $theme;
525         if($email_changed && $a->config['register_policy'] == REGISTER_VERIFY) {
526
527                 // FIXME - set to un-verified, blocked and redirect to logout
528                 // Why? Are we verifying people or email addresses?
529
530         }
531
532         goaway($a->get_baseurl(true) . '/settings' );
533         return; // NOTREACHED
534 }
535                 
536
537 if(! function_exists('settings_content')) {
538 function settings_content(&$a) {
539
540         $o = '';
541         nav_set_selected('settings');
542
543         if(! local_user()) {
544                 notice( t('Permission denied.') . EOL );
545                 return;
546         }
547
548         if(x($_SESSION,'submanage') && intval($_SESSION['submanage'])) {
549                 notice( t('Permission denied.') . EOL );
550                 return;
551         }
552         
553
554                 
555         if(($a->argc > 1) && ($a->argv[1] === 'oauth')) {
556                 
557                 if(($a->argc > 2) && ($a->argv[2] === 'add')) {
558                         $tpl = get_markup_template("settings_oauth_edit.tpl");
559                         $o .= replace_macros($tpl, array(
560                                 '$form_security_token' => get_form_security_token("settings_oauth"),
561                                 '$title'        => t('Add application'),
562                                 '$submit'       => t('Submit'),
563                                 '$cancel'       => t('Cancel'),
564                                 '$name'         => array('name', t('Name'), '', ''),
565                                 '$key'          => array('key', t('Consumer Key'), '', ''),
566                                 '$secret'       => array('secret', t('Consumer Secret'), '', ''),
567                                 '$redirect'     => array('redirect', t('Redirect'), '', ''),
568                                 '$icon'         => array('icon', t('Icon url'), '', ''),
569                         ));
570                         return $o;
571                 }
572                 
573                 if(($a->argc > 3) && ($a->argv[2] === 'edit')) {
574                         $r = q("SELECT * FROM clients WHERE client_id='%s' AND uid=%d",
575                                         dbesc($a->argv[3]),
576                                         local_user());
577                         
578                         if (!count($r)){
579                                 notice(t("You can't edit this application."));
580                                 return;
581                         }
582                         $app = $r[0];
583                         
584                         $tpl = get_markup_template("settings_oauth_edit.tpl");
585                         $o .= replace_macros($tpl, array(
586                                 '$form_security_token' => get_form_security_token("settings_oauth"),
587                                 '$title'        => t('Add application'),
588                                 '$submit'       => t('Update'),
589                                 '$cancel'       => t('Cancel'),
590                                 '$name'         => array('name', t('Name'), $app['name'] , ''),
591                                 '$key'          => array('key', t('Consumer Key'), $app['client_id'], ''),
592                                 '$secret'       => array('secret', t('Consumer Secret'), $app['pw'], ''),
593                                 '$redirect'     => array('redirect', t('Redirect'), $app['redirect_uri'], ''),
594                                 '$icon'         => array('icon', t('Icon url'), $app['icon'], ''),
595                         ));
596                         return $o;
597                 }
598                 
599                 if(($a->argc > 3) && ($a->argv[2] === 'delete')) {
600                         check_form_security_token_redirectOnErr('/settings/oauth', 'settings_oauth', 't');
601                 
602                         $r = q("DELETE FROM clients WHERE client_id='%s' AND uid=%d",
603                                         dbesc($a->argv[3]),
604                                         local_user());
605                         goaway($a->get_baseurl(true)."/settings/oauth/");
606                         return;                 
607                 }
608                 
609                 
610                 $r = q("SELECT clients.*, tokens.id as oauth_token, (clients.uid=%d) AS my 
611                                 FROM clients
612                                 LEFT JOIN tokens ON clients.client_id=tokens.client_id
613                                 WHERE clients.uid IN (%d,0)",
614                                 local_user(),
615                                 local_user());
616
617
618                 $tpl = get_markup_template("settings_oauth.tpl");
619                 $o .= replace_macros($tpl, array(
620                         '$form_security_token' => get_form_security_token("settings_oauth"),
621                         '$baseurl'      => $a->get_baseurl(true),
622                         '$title'        => t('Connected Apps'),
623                         '$add'          => t('Add application'),
624                         '$edit'         => t('Edit'),
625                         '$delete'               => t('Delete'),
626                         '$consumerkey' => t('Client key starts with'),
627                         '$noname'       => t('No name'),
628                         '$remove'       => t('Remove authorization'),
629                         '$apps'         => $r,
630                 ));
631                 return $o;
632
633         }
634
635         if(($a->argc > 1) && ($a->argv[1] === 'addon')) {
636                 $settings_addons = "";
637
638                 $r = q("SELECT * FROM `hook` WHERE `hook` = 'plugin_settings' ");
639                 if(! count($r))
640                         $settings_addons = t('No Plugin settings configured');
641
642                 call_hooks('plugin_settings', $settings_addons);
643
644
645                 $tpl = get_markup_template("settings_addons.tpl");
646                 $o .= replace_macros($tpl, array(
647                         '$form_security_token' => get_form_security_token("settings_addon"),
648                         '$title'        => t('Plugin Settings'),
649                         '$settings_addons' => $settings_addons
650                 ));
651                 return $o;
652         }
653
654         if(($a->argc > 1) && ($a->argv[1] === 'features')) {
655
656                 $arr = array();
657                 $features = get_features();
658                 foreach($features as $fname => $fdata) {
659                         $arr[$fname] = array();
660                         $arr[$fname][0] = $fdata[0];
661                         foreach(array_slice($fdata,1) as $f) {
662                                 $arr[$fname][1][] = array('feature_' .$f[0],$f[1],((intval(get_pconfig(local_user(),'feature',$f[0]))) ? "1" : ''),$f[2],array(t('Off'),t('On')));
663                         }
664                 }
665
666
667                 $tpl = get_markup_template("settings_features.tpl");
668                 $o .= replace_macros($tpl, array(
669                         '$form_security_token' => get_form_security_token("settings_features"),
670                         '$title'        => t('Additional Features'),
671                         '$features' => $arr,
672                         '$submit'   => t('Submit'),
673                 ));
674                 return $o;
675         }
676
677         if(($a->argc > 1) && ($a->argv[1] === 'connectors')) {
678
679                 $settings_connectors = "";
680
681                 call_hooks('connector_settings', $settings_connectors);
682
683                 $diasp_enabled = sprintf( t('Built-in support for %s connectivity is %s'), t('Diaspora'), ((get_config('system','diaspora_enabled')) ? t('enabled') : t('disabled')));
684                 $ostat_enabled = sprintf( t('Built-in support for %s connectivity is %s'), t('StatusNet'), ((get_config('system','ostatus_disabled')) ? t('disabled') : t('enabled')));
685
686                 $mail_disabled = ((function_exists('imap_open') && (! get_config('system','imap_disabled'))) ? 0 : 1);
687                 if(get_config('system','dfrn_only'))
688                         $mail_disabled = 1;
689
690                 if(! $mail_disabled) {
691                         $r = q("SELECT * FROM `mailacct` WHERE `uid` = %d LIMIT 1",
692                                 local_user()
693                         );
694                 }
695                 else {
696                         $r = null;
697                 }
698
699                 $mail_server       = ((count($r)) ? $r[0]['server'] : '');
700                 $mail_port         = ((count($r) && intval($r[0]['port'])) ? intval($r[0]['port']) : '');
701                 $mail_ssl          = ((count($r)) ? $r[0]['ssltype'] : '');
702                 $mail_user         = ((count($r)) ? $r[0]['user'] : '');
703                 $mail_replyto      = ((count($r)) ? $r[0]['reply_to'] : '');
704                 $mail_pubmail      = ((count($r)) ? $r[0]['pubmail'] : 0);
705                 $mail_action       = ((count($r)) ? $r[0]['action'] : 0);
706                 $mail_movetofolder = ((count($r)) ? $r[0]['movetofolder'] : '');
707                 $mail_chk          = ((count($r)) ? $r[0]['last_check'] : '0000-00-00 00:00:00');
708
709
710                 $tpl = get_markup_template("settings_connectors.tpl");
711
712                 if(! service_class_allows(local_user(),'email_connect')) {
713                         $mail_disabled_message = upgrade_bool_message();
714                 }
715                 else {
716                         $mail_disabled_message = (($mail_disabled) ? t('Email access is disabled on this site.') : '');
717                 }
718         
719
720                 $o .= replace_macros($tpl, array(
721                         '$form_security_token' => get_form_security_token("settings_connectors"),
722                         
723                         '$title'        => t('Connector Settings'),
724
725                         '$diasp_enabled' => $diasp_enabled,
726                         '$ostat_enabled' => $ostat_enabled,
727
728                         '$h_imap' => t('Email/Mailbox Setup'),
729                         '$imap_desc' => t("If you wish to communicate with email contacts using this service \x28optional\x29, please specify how to connect to your mailbox."),
730                         '$imap_lastcheck' => array('imap_lastcheck', t('Last successful email check:'), $mail_chk,''),
731                         '$mail_disabled' => $mail_disabled_message,
732                         '$mail_server'  => array('mail_server',  t('IMAP server name:'), $mail_server, ''),
733                         '$mail_port'    => array('mail_port',    t('IMAP port:'), $mail_port, ''),
734                         '$mail_ssl'             => array('mail_ssl',     t('Security:'), strtoupper($mail_ssl), '', array( 'notls'=>t('None'), 'TLS'=>'TLS', 'SSL'=>'SSL')),
735                         '$mail_user'    => array('mail_user',    t('Email login name:'), $mail_user, ''),
736                         '$mail_pass'    => array('mail_pass',    t('Email password:'), '', ''),
737                         '$mail_replyto' => array('mail_replyto', t('Reply-to address:'), $mail_replyto, 'Optional'),
738                         '$mail_pubmail' => array('mail_pubmail', t('Send public posts to all email contacts:'), $mail_pubmail, ''),
739                         '$mail_action'  => array('mail_action',  t('Action after import:'), $mail_action, '', array(0=>t('None'), /*1=>t('Delete'),*/ 2=>t('Mark as seen'), 3=>t('Move to folder'))),
740                         '$mail_movetofolder'    => array('mail_movetofolder',    t('Move to folder:'), $mail_movetofolder, ''),
741                         '$submit' => t('Submit'),
742
743                         '$settings_connectors' => $settings_connectors
744                 ));
745
746                 call_hooks('display_settings', $o);
747                 return $o;
748         }
749
750         /*
751          * DISPLAY SETTINGS
752          */
753         if(($a->argc > 1) && ($a->argv[1] === 'display')) {
754                 $default_theme = get_config('system','theme');
755                 if(! $default_theme)
756                         $default_theme = 'default';
757                 $default_mobile_theme = get_config('system','mobile-theme');
758                 if(! $mobile_default_theme)
759                         $mobile_default_theme = 'none';
760
761                 $allowed_themes_str = get_config('system','allowed_themes');
762                 $allowed_themes_raw = explode(',',$allowed_themes_str);
763                 $allowed_themes = array();
764                 if(count($allowed_themes_raw))
765                         foreach($allowed_themes_raw as $x) 
766                                 if(strlen(trim($x)) && is_dir("view/theme/$x"))
767                                         $allowed_themes[] = trim($x);
768
769                 
770                 $themes = array();
771                 $mobile_themes = array("---" => t('No special theme for mobile devices'));
772                 $files = glob('view/theme/*');
773                 if($allowed_themes) {
774                         foreach($allowed_themes as $th) {
775                                 $f = $th;
776                                 $is_experimental = file_exists('view/theme/' . $th . '/experimental');
777                                 $unsupported = file_exists('view/theme/' . $th . '/unsupported');
778                                 $is_mobile = file_exists('view/theme/' . $th . '/mobile');
779                                 if (!$is_experimental or ($is_experimental && (get_config('experimentals','exp_themes')==1 or get_config('experimentals','exp_themes')===false))){ 
780                                         $theme_name = (($is_experimental) ?  sprintf("%s - \x28Experimental\x29", $f) : $f);
781                                         if($is_mobile) {
782                                                 $mobile_themes[$f]=$theme_name;
783                                         }
784                                         else {
785                                                 $themes[$f]=$theme_name;
786                                         }
787                                 }
788                         }
789                 }
790                 $theme_selected = (!x($_SESSION,'theme')? $default_theme : $_SESSION['theme']);
791                 $mobile_theme_selected = (!x($_SESSION,'mobile-theme')? $default_mobile_theme : $_SESSION['mobile-theme']);
792                 
793                 $browser_update = intval(get_pconfig(local_user(), 'system','update_interval'));
794                 $browser_update = (($browser_update == 0) ? 40 : $browser_update / 1000); // default if not set: 40 seconds
795
796                 $itemspage_network = intval(get_pconfig(local_user(), 'system','itemspage_network'));
797                 $itemspage_network = (($itemspage_network > 0 && $itemspage_network < 101) ? $itemspage_network : 40); // default if not set: 40 items
798                 
799                 $nosmile = get_pconfig(local_user(),'system','no_smilies');
800                 $nosmile = (($nosmile===false)? '0': $nosmile); // default if not set: 0
801
802
803                 $theme_config = "";
804                 if( ($themeconfigfile = get_theme_config_file($theme_selected)) != null){
805                         require_once($themeconfigfile);
806                         $theme_config = theme_content($a);
807                 }
808                 
809                 $tpl = get_markup_template("settings_display.tpl");
810                 $o = replace_macros($tpl, array(
811                         '$ptitle'       => t('Display Settings'),
812                         '$form_security_token' => get_form_security_token("settings_display"),
813                         '$submit'       => t('Submit'),
814                         '$baseurl' => $a->get_baseurl(true),
815                         '$uid' => local_user(),
816                 
817                         '$theme'        => array('theme', t('Display Theme:'), $theme_selected, '', $themes, true),
818                         '$mobile_theme' => array('mobile_theme', t('Mobile Theme:'), $mobile_theme_selected, '', $mobile_themes, false),
819                         '$ajaxint'   => array('browser_update',  t("Update browser every xx seconds"), $browser_update, t('Minimum of 10 seconds, no maximum')),
820                         '$itemspage_network'   => array('itemspage_network',  t("Number of items to display per page:"), $itemspage_network, t('Maximum of 100 items')),
821                         '$nosmile'      => array('nosmile', t("Don't show emoticons"), $nosmile, ''),
822                         
823                         '$theme_config' => $theme_config,
824                 ));
825                 
826                 $tpl = get_markup_template("settings_display_end.tpl");
827                 $a->page['end'] .= replace_macros($tpl, array(
828                         '$theme'        => array('theme', t('Display Theme:'), $theme_selected, '', $themes)
829                 ));
830
831                 return $o;
832         }
833         
834         
835         /*
836          * ACCOUNT SETTINGS
837          */
838
839         require_once('include/acl_selectors.php');
840
841         $p = q("SELECT * FROM `profile` WHERE `is-default` = 1 AND `uid` = %d LIMIT 1",
842                 intval(local_user())
843         );
844         if(count($p))
845                 $profile = $p[0];
846
847         $username   = $a->user['username'];
848         $email      = $a->user['email'];
849         $nickname   = $a->user['nickname'];
850         $timezone   = $a->user['timezone'];
851         $notify     = $a->user['notify-flags'];
852         $defloc     = $a->user['default-location'];
853         $openid     = $a->user['openid'];
854         $maxreq     = $a->user['maxreq'];
855         $expire     = ((intval($a->user['expire'])) ? $a->user['expire'] : '');
856         $blockwall  = $a->user['blockwall'];
857         $blocktags  = $a->user['blocktags'];
858         $unkmail    = $a->user['unkmail'];
859         $cntunkmail = $a->user['cntunkmail'];
860
861         $expire_items = get_pconfig(local_user(), 'expire','items');
862         $expire_items = (($expire_items===false)? '1' : $expire_items); // default if not set: 1
863         
864         $expire_notes = get_pconfig(local_user(), 'expire','notes');
865         $expire_notes = (($expire_notes===false)? '1' : $expire_notes); // default if not set: 1
866
867         $expire_starred = get_pconfig(local_user(), 'expire','starred');
868         $expire_starred = (($expire_starred===false)? '1' : $expire_starred); // default if not set: 1
869         
870         $expire_photos = get_pconfig(local_user(), 'expire','photos');
871         $expire_photos = (($expire_photos===false)? '0' : $expire_photos); // default if not set: 0
872
873         $expire_network_only = get_pconfig(local_user(), 'expire','network_only');
874         $expire_network_only = (($expire_network_only===false)? '0' : $expire_network_only); // default if not set: 0
875
876
877         $suggestme = get_pconfig(local_user(), 'system','suggestme');
878         $suggestme = (($suggestme===false)? '0': $suggestme); // default if not set: 0
879
880         $post_newfriend = get_pconfig(local_user(), 'system','post_newfriend');
881         $post_newfriend = (($post_newfriend===false)? '0': $post_newfriend); // default if not set: 0
882
883         $post_joingroup = get_pconfig(local_user(), 'system','post_joingroup');
884         $post_joingroup = (($post_joingroup===false)? '0': $post_joingroup); // default if not set: 0
885
886         $post_profilechange = get_pconfig(local_user(), 'system','post_profilechange');
887         $post_profilechange = (($post_profilechange===false)? '0': $post_profilechange); // default if not set: 0
888
889         
890         if(! strlen($a->user['timezone']))
891                 $timezone = date_default_timezone_get();
892
893
894
895         $pageset_tpl = get_markup_template('pagetypes.tpl');
896         $pagetype = replace_macros($pageset_tpl, array(
897                 '$page_normal'  => array('page-flags', t('Normal Account Page'), PAGE_NORMAL, 
898                                                                         t('This account is a normal personal profile'), 
899                                                                         ($a->user['page-flags'] == PAGE_NORMAL)),
900                                                                 
901                 '$page_soapbox'         => array('page-flags', t('Soapbox Page'), PAGE_SOAPBOX, 
902                                                                         t('Automatically approve all connection/friend requests as read-only fans'), 
903                                                                         ($a->user['page-flags'] == PAGE_SOAPBOX)),
904                                                                         
905                 '$page_community'       => array('page-flags', t('Community Forum/Celebrity Account'), PAGE_COMMUNITY, 
906                                                                         t('Automatically approve all connection/friend requests as read-write fans'), 
907                                                                         ($a->user['page-flags'] == PAGE_COMMUNITY)),
908                                                                         
909                 '$page_freelove'        => array('page-flags', t('Automatic Friend Page'), PAGE_FREELOVE, 
910                                                                         t('Automatically approve all connection/friend requests as friends'), 
911                                                                         ($a->user['page-flags'] == PAGE_FREELOVE)),
912
913                 '$page_prvgroup'        => array('page-flags', t('Private Forum [Experimental]'), PAGE_PRVGROUP, 
914                                                                         t('Private forum - approved members only'), 
915                                                                         ($a->user['page-flags'] == PAGE_PRVGROUP)),
916
917
918         ));
919
920         $noid = get_config('system','no_openid');
921
922         if($noid) {
923                 $openid_field = false;
924         }
925         else {
926                 $openid_field = array('openid_url', t('OpenID:'),$openid, t("\x28Optional\x29 Allow this OpenID to login to this account."));
927         }
928
929
930         $opt_tpl = get_markup_template("field_yesno.tpl");
931         if(get_config('system','publish_all')) {
932                 $profile_in_dir = '<input type="hidden" name="profile_in_directory" value="1" />';
933         }
934         else {
935                 $profile_in_dir = replace_macros($opt_tpl,array(
936                         '$field'        => array('profile_in_directory', t('Publish your default profile in your local site directory?'), $profile['publish'], '', array(t('No'),t('Yes'))),
937                 ));
938         }
939
940         if(strlen(get_config('system','directory_submit_url'))) {
941                 $profile_in_net_dir = replace_macros($opt_tpl,array(
942                         '$field'        => array('profile_in_netdirectory', t('Publish your default profile in the global social directory?'), $profile['net-publish'], '', array(t('No'),t('Yes'))),
943                 ));
944         }
945         else
946                 $profile_in_net_dir = '';
947
948
949         $hide_friends = replace_macros($opt_tpl,array(
950                         '$field'        => array('hide-friends', t('Hide your contact/friend list from viewers of your default profile?'), $profile['hide-friends'], '', array(t('No'),t('Yes'))),
951         ));
952
953         $hide_wall = replace_macros($opt_tpl,array(
954                         '$field'        => array('hidewall',  t('Hide your profile details from unknown viewers?'), $a->user['hidewall'], '', array(t('No'),t('Yes'))),
955
956         ));
957
958         $blockwall = replace_macros($opt_tpl,array(
959                         '$field'        => array('blockwall',  t('Allow friends to post to your profile page?'), (intval($a->user['blockwall']) ? '0' : '1'), '', array(t('No'),t('Yes'))),
960
961         ));
962  
963
964         $blocktags = replace_macros($opt_tpl,array(
965                         '$field'        => array('blocktags',  t('Allow friends to tag your posts?'), (intval($a->user['blocktags']) ? '0' : '1'), '', array(t('No'),t('Yes'))),
966
967         ));
968
969
970         $suggestme = replace_macros($opt_tpl,array(
971                         '$field'        => array('suggestme',  t('Allow us to suggest you as a potential friend to new members?'), $suggestme, '', array(t('No'),t('Yes'))),
972
973         ));
974
975
976         $unkmail = replace_macros($opt_tpl,array(
977                         '$field'        => array('unkmail',  t('Permit unknown people to send you private mail?'), $unkmail, '', array(t('No'),t('Yes'))),
978
979         ));
980
981         $invisible = (((! $profile['publish']) && (! $profile['net-publish']))
982                 ? true : false);
983
984         if($invisible)
985                 info( t('Profile is <strong>not published</strong>.') . EOL );
986
987
988         $subdir = ((strlen($a->get_path())) ? '<br />' . t('or') . ' ' . $a->get_baseurl(true) . '/profile/' . $nickname : '');
989
990         $tpl_addr = get_markup_template("settings_nick_set.tpl");
991
992         $prof_addr = replace_macros($tpl_addr,array(
993                 '$desc' => t('Your Identity Address is'),
994                 '$nickname' => $nickname,
995                 '$subdir' => $subdir,
996                 '$basepath' => $a->get_hostname()
997         ));
998
999         $stpl = get_markup_template('settings.tpl');
1000
1001         $celeb = ((($a->user['page-flags'] == PAGE_SOAPBOX) || ($a->user['page-flags'] == PAGE_COMMUNITY)) ? true : false);
1002
1003         $expire_arr = array(
1004                 'days' => array('expire',  t("Automatically expire posts after this many days:"), $expire, t('If empty, posts will not expire. Expired posts will be deleted')),
1005                 'advanced' => t('Advanced expiration settings'),
1006                 'label' => t('Advanced Expiration'),
1007                 'items' => array('expire_items',  t("Expire posts:"), $expire_items, '', array(t('No'),t('Yes'))),
1008                 'notes' => array('expire_notes',  t("Expire personal notes:"), $expire_notes, '', array(t('No'),t('Yes'))),
1009                 'starred' => array('expire_starred',  t("Expire starred posts:"), $expire_starred, '', array(t('No'),t('Yes'))),
1010                 'photos' => array('expire_photos',  t("Expire photos:"), $expire_photos, '', array(t('No'),t('Yes'))),          
1011                 'network_only' => array('expire_network_only',  t("Only expire posts by others:"), $expire_network_only, '', array(t('No'),t('Yes'))),          
1012         );
1013
1014         require_once('include/group.php');
1015         $group_select = mini_group_select(local_user(),$a->user['def_gid']);
1016
1017
1018         // Private/public post links for the non-JS ACL form
1019         $private_post = 1;
1020         if($_REQUEST['public'])
1021                 $private_post = 0;
1022
1023         $query_str = $a->query_string;
1024         if(strpos($query_str, 'public=1') !== false)
1025                 $query_str = str_replace(array('?public=1', '&public=1'), array('', ''), $query_str);
1026
1027         // I think $a->query_string may never have ? in it, but I could be wrong
1028         // It looks like it's from the index.php?q=[etc] rewrite that the web
1029         // server does, which converts any ? to &, e.g. suggest&ignore=61 for suggest?ignore=61
1030         if(strpos($query_str, '?') === false)
1031                 $public_post_link = '?public=1';
1032         else
1033                 $public_post_link = '&public=1';
1034
1035
1036         $o .= replace_macros($stpl, array(
1037                 '$ptitle'       => t('Account Settings'),
1038
1039                 '$submit'       => t('Submit'),
1040                 '$baseurl' => $a->get_baseurl(true),
1041                 '$uid' => local_user(),
1042                 '$form_security_token' => get_form_security_token("settings"),
1043                 '$nickname_block' => $prof_addr,
1044                 
1045                 '$h_pass'       => t('Password Settings'),
1046                 '$password1'=> array('npassword', t('New Password:'), '', ''),
1047                 '$password2'=> array('confirm', t('Confirm:'), '', t('Leave password fields blank unless changing')),
1048                 '$oid_enable' => (! get_config('system','no_openid')),
1049                 '$openid'       => $openid_field,
1050                 
1051                 '$h_basic'      => t('Basic Settings'),
1052                 '$username' => array('username',  t('Full Name:'), $username,''),
1053                 '$email'        => array('email', t('Email Address:'), $email, ''),
1054                 '$timezone' => array('timezone_select' , t('Your Timezone:'), select_timezone($timezone), ''),
1055                 '$defloc'       => array('defloc', t('Default Post Location:'), $defloc, ''),
1056                 '$allowloc' => array('allow_location', t('Use Browser Location:'), ($a->user['allow_location'] == 1), ''),
1057                 
1058
1059                 '$h_prv'        => t('Security and Privacy Settings'),
1060
1061                 '$maxreq'       => array('maxreq', t('Maximum Friend Requests/Day:'), $maxreq ,t("\x28to prevent spam abuse\x29")),
1062                 '$permissions' => t('Default Post Permissions'),
1063                 '$permdesc' => t("\x28click to open/close\x29"),
1064                 '$visibility' => $profile['net-publish'],
1065                 '$aclselect' => populate_acl($a->user,$celeb),
1066                 '$suggestme' => $suggestme,
1067                 '$blockwall'=> $blockwall, // array('blockwall', t('Allow friends to post to your profile page:'), !$blockwall, ''),
1068                 '$blocktags'=> $blocktags, // array('blocktags', t('Allow friends to tag your posts:'), !$blocktags, ''),
1069
1070                 // ACL permissions box
1071                 '$acl_data' => construct_acl_data($a, $a->user), // For non-Javascript ACL selector
1072                 '$group_perms' => t('Show to Groups'),
1073                 '$contact_perms' => t('Show to Contacts'),
1074                 '$private' => t('Default Private Post'),
1075                 '$public' => t('Default Public Post'),
1076                 '$is_private' => $private_post,
1077                 '$return_path' => $query_str,
1078                 '$public_link' => $public_post_link,
1079                 '$settings_perms' => t('Default Permissions for New Posts'),
1080
1081                 '$group_select' => $group_select,
1082
1083
1084                 '$expire'       => $expire_arr,
1085
1086                 '$profile_in_dir' => $profile_in_dir,
1087                 '$profile_in_net_dir' => $profile_in_net_dir,
1088                 '$hide_friends' => $hide_friends,
1089                 '$hide_wall' => $hide_wall,
1090                 '$unkmail' => $unkmail,         
1091                 '$cntunkmail'   => array('cntunkmail', t('Maximum private messages per day from unknown people:'), $cntunkmail ,t("\x28to prevent spam abuse\x29")),
1092                 
1093                 
1094                 '$h_not'        => t('Notification Settings'),
1095                 '$activity_options' => t('By default post a status message when:'),
1096                 '$post_newfriend' => array('post_newfriend',  t('accepting a friend request'), $post_newfriend, ''),
1097                 '$post_joingroup' => array('post_joingroup',  t('joining a forum/community'), $post_joingroup, ''),
1098                 '$post_profilechange' => array('post_profilechange',  t('making an <em>interesting</em> profile change'), $post_profilechange, ''),
1099                 '$lbl_not'      => t('Send a notification email when:'),
1100                 '$notify1'      => array('notify1', t('You receive an introduction'), ($notify & NOTIFY_INTRO), NOTIFY_INTRO, ''),
1101                 '$notify2'      => array('notify2', t('Your introductions are confirmed'), ($notify & NOTIFY_CONFIRM), NOTIFY_CONFIRM, ''),
1102                 '$notify3'      => array('notify3', t('Someone writes on your profile wall'), ($notify & NOTIFY_WALL), NOTIFY_WALL, ''),
1103                 '$notify4'      => array('notify4', t('Someone writes a followup comment'), ($notify & NOTIFY_COMMENT), NOTIFY_COMMENT, ''),
1104                 '$notify5'      => array('notify5', t('You receive a private message'), ($notify & NOTIFY_MAIL), NOTIFY_MAIL, ''),
1105                 '$notify6'  => array('notify6', t('You receive a friend suggestion'), ($notify & NOTIFY_SUGGEST), NOTIFY_SUGGEST, ''),          
1106                 '$notify7'  => array('notify7', t('You are tagged in a post'), ($notify & NOTIFY_TAGSELF), NOTIFY_TAGSELF, ''),         
1107                 '$notify8'  => array('notify8', t('You are poked/prodded/etc. in a post'), ($notify & NOTIFY_POKE), NOTIFY_POKE, ''),           
1108                 
1109                 
1110                 '$h_advn' => t('Advanced Account/Page Type Settings'),
1111                 '$h_descadvn' => t('Change the behaviour of this account for special situations'),
1112                 '$pagetype' => $pagetype,
1113                 
1114         ));
1115
1116         call_hooks('settings_form',$o);
1117
1118         $o .= '</form>' . "\r\n";
1119
1120         return $o;
1121
1122 }}
1123