]> git.mxchange.org Git - friendica.git/blob - mod/settings.php
7cfdbb1cd5f60e580b9cf22ecaf6851321a37e1f
[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                 `net-publish` = %d,
493                 `hide-friends` = %d
494                 WHERE `is-default` = 1 AND `uid` = %d LIMIT 1",
495                 intval($publish),
496                 intval($net_publish),
497                 intval($hide_friends),
498                 intval(local_user())
499         );
500
501
502         if($name_change) {
503                 q("UPDATE `contact` SET `name` = '%s', `name-date` = '%s' WHERE `uid` = %d AND `self` = 1 LIMIT 1",
504                         dbesc($username),
505                         dbesc(datetime_convert()),
506                         intval(local_user())
507                 );
508         }               
509
510         if(($old_visibility != $net_publish) || ($page_flags != $old_page_flags)) {
511                 // Update global directory in background
512                 $url = $_SESSION['my_url'];
513                 if($url && strlen(get_config('system','directory_submit_url')))
514                         proc_run('php',"include/directory.php","$url");
515
516         }
517
518
519         require_once('include/profile_update.php');
520         profile_change();
521
522         //$_SESSION['theme'] = $theme;
523         if($email_changed && $a->config['register_policy'] == REGISTER_VERIFY) {
524
525                 // FIXME - set to un-verified, blocked and redirect to logout
526                 // Why? Are we verifying people or email addresses?
527
528         }
529
530         goaway($a->get_baseurl(true) . '/settings' );
531         return; // NOTREACHED
532 }
533                 
534
535 if(! function_exists('settings_content')) {
536 function settings_content(&$a) {
537
538         $o = '';
539         nav_set_selected('settings');
540
541         if(! local_user()) {
542                 notice( t('Permission denied.') . EOL );
543                 return;
544         }
545
546         if(x($_SESSION,'submanage') && intval($_SESSION['submanage'])) {
547                 notice( t('Permission denied.') . EOL );
548                 return;
549         }
550         
551
552                 
553         if(($a->argc > 1) && ($a->argv[1] === 'oauth')) {
554                 
555                 if(($a->argc > 2) && ($a->argv[2] === 'add')) {
556                         $tpl = get_markup_template("settings_oauth_edit.tpl");
557                         $o .= replace_macros($tpl, array(
558                                 '$form_security_token' => get_form_security_token("settings_oauth"),
559                                 '$title'        => t('Add application'),
560                                 '$submit'       => t('Submit'),
561                                 '$cancel'       => t('Cancel'),
562                                 '$name'         => array('name', t('Name'), '', ''),
563                                 '$key'          => array('key', t('Consumer Key'), '', ''),
564                                 '$secret'       => array('secret', t('Consumer Secret'), '', ''),
565                                 '$redirect'     => array('redirect', t('Redirect'), '', ''),
566                                 '$icon'         => array('icon', t('Icon url'), '', ''),
567                         ));
568                         return $o;
569                 }
570                 
571                 if(($a->argc > 3) && ($a->argv[2] === 'edit')) {
572                         $r = q("SELECT * FROM clients WHERE client_id='%s' AND uid=%d",
573                                         dbesc($a->argv[3]),
574                                         local_user());
575                         
576                         if (!count($r)){
577                                 notice(t("You can't edit this application."));
578                                 return;
579                         }
580                         $app = $r[0];
581                         
582                         $tpl = get_markup_template("settings_oauth_edit.tpl");
583                         $o .= replace_macros($tpl, array(
584                                 '$form_security_token' => get_form_security_token("settings_oauth"),
585                                 '$title'        => t('Add application'),
586                                 '$submit'       => t('Update'),
587                                 '$cancel'       => t('Cancel'),
588                                 '$name'         => array('name', t('Name'), $app['name'] , ''),
589                                 '$key'          => array('key', t('Consumer Key'), $app['client_id'], ''),
590                                 '$secret'       => array('secret', t('Consumer Secret'), $app['pw'], ''),
591                                 '$redirect'     => array('redirect', t('Redirect'), $app['redirect_uri'], ''),
592                                 '$icon'         => array('icon', t('Icon url'), $app['icon'], ''),
593                         ));
594                         return $o;
595                 }
596                 
597                 if(($a->argc > 3) && ($a->argv[2] === 'delete')) {
598                         check_form_security_token_redirectOnErr('/settings/oauth', 'settings_oauth', 't');
599                 
600                         $r = q("DELETE FROM clients WHERE client_id='%s' AND uid=%d",
601                                         dbesc($a->argv[3]),
602                                         local_user());
603                         goaway($a->get_baseurl(true)."/settings/oauth/");
604                         return;                 
605                 }
606                 
607                 
608                 $r = q("SELECT clients.*, tokens.id as oauth_token, (clients.uid=%d) AS my 
609                                 FROM clients
610                                 LEFT JOIN tokens ON clients.client_id=tokens.client_id
611                                 WHERE clients.uid IN (%d,0)",
612                                 local_user(),
613                                 local_user());
614                 
615                 
616                 $tpl = get_markup_template("settings_oauth.tpl");
617                 $o .= replace_macros($tpl, array(
618                         '$form_security_token' => get_form_security_token("settings_oauth"),
619                         '$baseurl'      => $a->get_baseurl(true),
620                         '$title'        => t('Connected Apps'),
621                         '$add'          => t('Add application'),
622                         '$edit'         => t('Edit'),
623                         '$delete'               => t('Delete'),
624                         '$consumerkey' => t('Client key starts with'),
625                         '$noname'       => t('No name'),
626                         '$remove'       => t('Remove authorization'),
627                         '$apps'         => $r,
628                 ));
629                 return $o;
630                 
631         }
632
633         if(($a->argc > 1) && ($a->argv[1] === 'addon')) {
634                 $settings_addons = "";
635                 
636                 $r = q("SELECT * FROM `hook` WHERE `hook` = 'plugin_settings' ");
637                 if(! count($r))
638                         $settings_addons = t('No Plugin settings configured');
639
640                 call_hooks('plugin_settings', $settings_addons);
641                 
642                 
643                 $tpl = get_markup_template("settings_addons.tpl");
644                 $o .= replace_macros($tpl, array(
645                         '$form_security_token' => get_form_security_token("settings_addon"),
646                         '$title'        => t('Plugin Settings'),
647                         '$settings_addons' => $settings_addons
648                 ));
649                 return $o;
650         }
651
652         if(($a->argc > 1) && ($a->argv[1] === 'features')) {
653                 
654                 $arr = array();
655                 $features = get_features();
656                 foreach($features as $fname => $fdata) {
657                         $arr[$fname] = array();
658                         $arr[$fname][0] = $fdata[0];
659                         foreach(array_slice($fdata,1) as $f) {
660                                 $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')));
661                         }
662                 }
663
664
665                 $tpl = get_markup_template("settings_features.tpl");
666                 $o .= replace_macros($tpl, array(
667                         '$form_security_token' => get_form_security_token("settings_features"),
668                         '$title'        => t('Additional Features'),
669                         '$features' => $arr,
670                         '$submit'   => t('Submit'),
671                         '$field_yesno'  => 'field_yesno.tpl',
672                 ));
673                 return $o;
674         }
675
676         if(($a->argc > 1) && ($a->argv[1] === 'connectors')) {
677
678                 $settings_connectors = "";
679                 
680                 call_hooks('connector_settings', $settings_connectors);
681
682                 $diasp_enabled = sprintf( t('Built-in support for %s connectivity is %s'), t('Diaspora'), ((get_config('system','diaspora_enabled')) ? t('enabled') : t('disabled')));
683                 $ostat_enabled = sprintf( t('Built-in support for %s connectivity is %s'), t('StatusNet'), ((get_config('system','ostatus_disabled')) ? t('disabled') : t('enabled')));
684
685                 $mail_disabled = ((function_exists('imap_open') && (! get_config('system','imap_disabled'))) ? 0 : 1);
686                 if(get_config('system','dfrn_only'))
687                         $mail_disabled = 1;
688
689                 if(! $mail_disabled) {
690                         $r = q("SELECT * FROM `mailacct` WHERE `uid` = %d LIMIT 1",
691                                 local_user()
692                         );
693                 }
694                 else {
695                         $r = null;
696                 }
697
698                 $mail_server       = ((count($r)) ? $r[0]['server'] : '');
699                 $mail_port         = ((count($r) && intval($r[0]['port'])) ? intval($r[0]['port']) : '');
700                 $mail_ssl          = ((count($r)) ? $r[0]['ssltype'] : '');
701                 $mail_user         = ((count($r)) ? $r[0]['user'] : '');
702                 $mail_replyto      = ((count($r)) ? $r[0]['reply_to'] : '');
703                 $mail_pubmail      = ((count($r)) ? $r[0]['pubmail'] : 0);
704                 $mail_action       = ((count($r)) ? $r[0]['action'] : 0);
705                 $mail_movetofolder = ((count($r)) ? $r[0]['movetofolder'] : '');
706                 $mail_chk          = ((count($r)) ? $r[0]['last_check'] : '0000-00-00 00:00:00');
707
708
709                 $tpl = get_markup_template("settings_connectors.tpl");
710
711                 if(! service_class_allows(local_user(),'email_connect')) {
712                         $mail_disabled_message = upgrade_bool_message();
713                 }
714                 else {
715                         $mail_disabled_message = (($mail_disabled) ? t('Email access is disabled on this site.') : '');
716                 }
717         
718                 $o .= replace_macros($tpl, array(
719                         '$form_security_token' => get_form_security_token("settings_connectors"),
720                         
721                         '$title'        => t('Connector Settings'),
722
723                         '$diasp_enabled' => $diasp_enabled,
724                         '$ostat_enabled' => $ostat_enabled,
725
726                         '$h_imap' => t('Email/Mailbox Setup'),
727                         '$imap_desc' => t("If you wish to communicate with email contacts using this service \x28optional\x29, please specify how to connect to your mailbox."),
728                         '$imap_lastcheck' => array('imap_lastcheck', t('Last successful email check:'), $mail_chk,''),
729                         '$mail_disabled' => $mail_disabled_message,
730                         '$mail_server'  => array('mail_server',  t('IMAP server name:'), $mail_server, ''),
731                         '$mail_port'    => array('mail_port',    t('IMAP port:'), $mail_port, ''),
732                         '$mail_ssl'             => array('mail_ssl',     t('Security:'), strtoupper($mail_ssl), '', array( 'notls'=>t('None'), 'TLS'=>'TLS', 'SSL'=>'SSL')),
733                         '$mail_user'    => array('mail_user',    t('Email login name:'), $mail_user, ''),
734                         '$mail_pass'    => array('mail_pass',    t('Email password:'), '', ''),
735                         '$mail_replyto' => array('mail_replyto', t('Reply-to address:'), $mail_replyto, 'Optional'),
736                         '$mail_pubmail' => array('mail_pubmail', t('Send public posts to all email contacts:'), $mail_pubmail, ''),
737                         '$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'))),
738                         '$mail_movetofolder'    => array('mail_movetofolder',    t('Move to folder:'), $mail_movetofolder, ''),
739                         '$submit' => t('Submit'),
740
741                         '$settings_connectors' => $settings_connectors
742                 ));
743
744                 call_hooks('display_settings', $o);
745                 return $o;
746         }
747
748         /*
749          * DISPLAY SETTINGS
750          */
751         if(($a->argc > 1) && ($a->argv[1] === 'display')) {
752                 $default_theme = get_config('system','theme');
753                 if(! $default_theme)
754                         $default_theme = 'default';
755                 $default_mobile_theme = get_config('system','mobile-theme');
756                 if(! $mobile_default_theme)
757                         $mobile_default_theme = 'none';
758
759                 $allowed_themes_str = get_config('system','allowed_themes');
760                 $allowed_themes_raw = explode(',',$allowed_themes_str);
761                 $allowed_themes = array();
762                 if(count($allowed_themes_raw))
763                         foreach($allowed_themes_raw as $x) 
764                                 if(strlen(trim($x)) && is_dir("view/theme/$x"))
765                                         $allowed_themes[] = trim($x);
766
767                 
768                 $themes = array();
769                 $mobile_themes = array("---" => t('No special theme for mobile devices'));
770                 $files = glob('view/theme/*');
771                 if($allowed_themes) {
772                         foreach($allowed_themes as $th) {
773                                 $f = $th;
774                                 $is_experimental = file_exists('view/theme/' . $th . '/experimental');
775                                 $unsupported = file_exists('view/theme/' . $th . '/unsupported');
776                                 $is_mobile = file_exists('view/theme/' . $th . '/mobile');
777                                 if (!$is_experimental or ($is_experimental && (get_config('experimentals','exp_themes')==1 or get_config('experimentals','exp_themes')===false))){ 
778                                         $theme_name = (($is_experimental) ?  sprintf("%s - \x28Experimental\x29", $f) : $f);
779                                         if($is_mobile) {
780                                                 $mobile_themes[$f]=$theme_name;
781                                         }
782                                         else {
783                                                 $themes[$f]=$theme_name;
784                                         }
785                                 }
786                         }
787                 }
788                 $theme_selected = (!x($_SESSION,'theme')? $default_theme : $_SESSION['theme']);
789                 $mobile_theme_selected = (!x($_SESSION,'mobile-theme')? $default_mobile_theme : $_SESSION['mobile-theme']);
790                 
791                 $browser_update = intval(get_pconfig(local_user(), 'system','update_interval'));
792                 $browser_update = (($browser_update == 0) ? 40 : $browser_update / 1000); // default if not set: 40 seconds
793
794                 $itemspage_network = intval(get_pconfig(local_user(), 'system','itemspage_network'));
795                 $itemspage_network = (($itemspage_network > 0 && $itemspage_network < 101) ? $itemspage_network : 40); // default if not set: 40 items
796                 
797                 $nosmile = get_pconfig(local_user(),'system','no_smilies');
798                 $nosmile = (($nosmile===false)? '0': $nosmile); // default if not set: 0
799
800
801                 $theme_config = "";
802                 if( ($themeconfigfile = get_theme_config_file($theme_selected)) != null){
803                         require_once($themeconfigfile);
804                         $theme_config = theme_content($a);
805                 }
806                 
807                 $tpl = get_markup_template("settings_display.tpl");
808                 $o = replace_macros($tpl, array(
809                         '$ptitle'       => t('Display Settings'),
810                         '$form_security_token' => get_form_security_token("settings_display"),
811                         '$submit'       => t('Submit'),
812                         '$baseurl' => $a->get_baseurl(true),
813                         '$uid' => local_user(),
814                 
815                         '$theme'        => array('theme', t('Display Theme:'), $theme_selected, '', $themes, true),
816                         '$mobile_theme' => array('mobile_theme', t('Mobile Theme:'), $mobile_theme_selected, '', $mobile_themes, false),
817                         '$ajaxint'   => array('browser_update',  t("Update browser every xx seconds"), $browser_update, t('Minimum of 10 seconds, no maximum')),
818                         '$itemspage_network'   => array('itemspage_network',  t("Number of items to display per page:"), $itemspage_network, t('Maximum of 100 items')),
819                         '$nosmile'      => array('nosmile', t("Don't show emoticons"), $nosmile, ''),
820                         
821                         '$theme_config' => $theme_config,
822                 ));
823                 
824                 $tpl = get_markup_template("settings_display_end.tpl");
825                 $a->page['end'] .= replace_macros($tpl, array(
826                         '$theme'        => array('theme', t('Display Theme:'), $theme_selected, '', $themes)
827                 ));
828
829                 return $o;
830         }
831         
832         
833         /*
834          * ACCOUNT SETTINGS
835          */
836
837         require_once('include/acl_selectors.php');
838
839         $p = q("SELECT * FROM `profile` WHERE `is-default` = 1 AND `uid` = %d LIMIT 1",
840                 intval(local_user())
841         );
842         if(count($p))
843                 $profile = $p[0];
844
845         $username   = $a->user['username'];
846         $email      = $a->user['email'];
847         $nickname   = $a->user['nickname'];
848         $timezone   = $a->user['timezone'];
849         $notify     = $a->user['notify-flags'];
850         $defloc     = $a->user['default-location'];
851         $openid     = $a->user['openid'];
852         $maxreq     = $a->user['maxreq'];
853         $expire     = ((intval($a->user['expire'])) ? $a->user['expire'] : '');
854         $blockwall  = $a->user['blockwall'];
855         $blocktags  = $a->user['blocktags'];
856         $unkmail    = $a->user['unkmail'];
857         $cntunkmail = $a->user['cntunkmail'];
858
859         $expire_items = get_pconfig(local_user(), 'expire','items');
860         $expire_items = (($expire_items===false)? '1' : $expire_items); // default if not set: 1
861         
862         $expire_notes = get_pconfig(local_user(), 'expire','notes');
863         $expire_notes = (($expire_notes===false)? '1' : $expire_notes); // default if not set: 1
864
865         $expire_starred = get_pconfig(local_user(), 'expire','starred');
866         $expire_starred = (($expire_starred===false)? '1' : $expire_starred); // default if not set: 1
867         
868         $expire_photos = get_pconfig(local_user(), 'expire','photos');
869         $expire_photos = (($expire_photos===false)? '0' : $expire_photos); // default if not set: 0
870
871         $expire_network_only = get_pconfig(local_user(), 'expire','network_only');
872         $expire_network_only = (($expire_network_only===false)? '0' : $expire_network_only); // default if not set: 0
873
874
875         $suggestme = get_pconfig(local_user(), 'system','suggestme');
876         $suggestme = (($suggestme===false)? '0': $suggestme); // default if not set: 0
877
878         $post_newfriend = get_pconfig(local_user(), 'system','post_newfriend');
879         $post_newfriend = (($post_newfriend===false)? '0': $post_newfriend); // default if not set: 0
880
881         $post_joingroup = get_pconfig(local_user(), 'system','post_joingroup');
882         $post_joingroup = (($post_joingroup===false)? '0': $post_joingroup); // default if not set: 0
883
884         $post_profilechange = get_pconfig(local_user(), 'system','post_profilechange');
885         $post_profilechange = (($post_profilechange===false)? '0': $post_profilechange); // default if not set: 0
886
887         
888         if(! strlen($a->user['timezone']))
889                 $timezone = date_default_timezone_get();
890
891
892
893         $pageset_tpl = get_markup_template('pagetypes.tpl');
894         $pagetype = replace_macros($pageset_tpl,array(
895                 '$page_normal'  => array('page-flags', t('Normal Account Page'), PAGE_NORMAL, 
896                                                                         t('This account is a normal personal profile'), 
897                                                                         ($a->user['page-flags'] == PAGE_NORMAL)),
898                                                                 
899                 '$page_soapbox'         => array('page-flags', t('Soapbox Page'), PAGE_SOAPBOX, 
900                                                                         t('Automatically approve all connection/friend requests as read-only fans'), 
901                                                                         ($a->user['page-flags'] == PAGE_SOAPBOX)),
902                                                                         
903                 '$page_community'       => array('page-flags', t('Community Forum/Celebrity Account'), PAGE_COMMUNITY, 
904                                                                         t('Automatically approve all connection/friend requests as read-write fans'), 
905                                                                         ($a->user['page-flags'] == PAGE_COMMUNITY)),
906                                                                         
907                 '$page_freelove'        => array('page-flags', t('Automatic Friend Page'), PAGE_FREELOVE, 
908                                                                         t('Automatically approve all connection/friend requests as friends'), 
909                                                                         ($a->user['page-flags'] == PAGE_FREELOVE)),
910
911                 '$page_prvgroup'        => array('page-flags', t('Private Forum [Experimental]'), PAGE_PRVGROUP, 
912                                                                         t('Private forum - approved members only'), 
913                                                                         ($a->user['page-flags'] == PAGE_PRVGROUP)),
914
915
916         ));
917
918         $noid = get_config('system','no_openid');
919
920         if($noid) {
921                 $openid_field = false;
922         }
923         else {
924                 $openid_field = array('openid_url', t('OpenID:'),$openid, t("\x28Optional\x29 Allow this OpenID to login to this account."));
925         }
926
927
928         $opt_tpl = get_markup_template("field_yesno.tpl");
929         if(get_config('system','publish_all')) {
930                 $profile_in_dir = '<input type="hidden" name="profile_in_directory" value="1" />';
931         }
932         else {
933                 $profile_in_dir = replace_macros($opt_tpl,array(
934                         '$field'        => array('profile_in_directory', t('Publish your default profile in your local site directory?'), $profile['publish'], '', array(t('No'),t('Yes'))),
935                 ));
936         }
937
938         if(strlen(get_config('system','directory_submit_url'))) {
939                 $profile_in_net_dir = replace_macros($opt_tpl,array(
940                         '$field'        => array('profile_in_netdirectory', t('Publish your default profile in the global social directory?'), $profile['net-publish'], '', array(t('No'),t('Yes'))),
941                 ));
942         }
943         else
944                 $profile_in_net_dir = '';
945
946
947         $hide_friends = replace_macros($opt_tpl,array(
948                         '$field'        => array('hide-friends', t('Hide your contact/friend list from viewers of your default profile?'), $profile['hide-friends'], '', array(t('No'),t('Yes'))),
949         ));
950
951         $hide_wall = replace_macros($opt_tpl,array(
952                         '$field'        => array('hidewall',  t('Hide your profile details from unknown viewers?'), $a->user['hidewall'], '', array(t('No'),t('Yes'))),
953
954         ));
955
956         $blockwall = replace_macros($opt_tpl,array(
957                         '$field'        => array('blockwall',  t('Allow friends to post to your profile page?'), (intval($a->user['blockwall']) ? '0' : '1'), '', array(t('No'),t('Yes'))),
958
959         ));
960  
961
962         $blocktags = replace_macros($opt_tpl,array(
963                         '$field'        => array('blocktags',  t('Allow friends to tag your posts?'), (intval($a->user['blocktags']) ? '0' : '1'), '', array(t('No'),t('Yes'))),
964
965         ));
966
967
968         $suggestme = replace_macros($opt_tpl,array(
969                         '$field'        => array('suggestme',  t('Allow us to suggest you as a potential friend to new members?'), $suggestme, '', array(t('No'),t('Yes'))),
970
971         ));
972
973
974         $unkmail = replace_macros($opt_tpl,array(
975                         '$field'        => array('unkmail',  t('Permit unknown people to send you private mail?'), $unkmail, '', array(t('No'),t('Yes'))),
976
977         ));
978
979         $invisible = (((! $profile['publish']) && (! $profile['net-publish']))
980                 ? true : false);
981
982         if($invisible)
983                 info( t('Profile is <strong>not published</strong>.') . EOL );
984
985
986         $subdir = ((strlen($a->get_path())) ? '<br />' . t('or') . ' ' . $a->get_baseurl(true) . '/profile/' . $nickname : '');
987
988         $tpl_addr = get_markup_template("settings_nick_set.tpl");
989
990         $prof_addr = replace_macros($tpl_addr,array(
991                 '$desc' => t('Your Identity Address is'),
992                 '$nickname' => $nickname,
993                 '$subdir' => $subdir,
994                 '$basepath' => $a->get_hostname()
995         ));
996
997         $stpl = get_markup_template('settings.tpl');
998
999         $celeb = ((($a->user['page-flags'] == PAGE_SOAPBOX) || ($a->user['page-flags'] == PAGE_COMMUNITY)) ? true : false);
1000
1001         $expire_arr = array(
1002                 'days' => array('expire',  t("Automatically expire posts after this many days:"), $expire, t('If empty, posts will not expire. Expired posts will be deleted')),
1003                 'advanced' => t('Advanced expiration settings'),
1004                 'label' => t('Advanced Expiration'),
1005                 'items' => array('expire_items',  t("Expire posts:"), $expire_items, '', array(t('No'),t('Yes'))),
1006                 'notes' => array('expire_notes',  t("Expire personal notes:"), $expire_notes, '', array(t('No'),t('Yes'))),
1007                 'starred' => array('expire_starred',  t("Expire starred posts:"), $expire_starred, '', array(t('No'),t('Yes'))),
1008                 'photos' => array('expire_photos',  t("Expire photos:"), $expire_photos, '', array(t('No'),t('Yes'))),          
1009                 'network_only' => array('expire_network_only',  t("Only expire posts by others:"), $expire_network_only, '', array(t('No'),t('Yes'))),          
1010         );
1011
1012         require_once('include/group.php');
1013         $group_select = mini_group_select(local_user(),$a->user['def_gid']);
1014
1015         $o .= replace_macros($stpl,array(
1016                 '$ptitle'       => t('Account Settings'),
1017
1018                 '$submit'       => t('Submit'),
1019                 '$baseurl' => $a->get_baseurl(true),
1020                 '$uid' => local_user(),
1021                 '$form_security_token' => get_form_security_token("settings"),
1022                 '$nickname_block' => $prof_addr,
1023                 
1024                 '$h_pass'       => t('Password Settings'),
1025                 '$password1'=> array('npassword', t('New Password:'), '', ''),
1026                 '$password2'=> array('confirm', t('Confirm:'), '', t('Leave password fields blank unless changing')),
1027                 '$oid_enable' => (! get_config('system','no_openid')),
1028                 '$openid'       => $openid_field,
1029                 
1030                 '$h_basic'      => t('Basic Settings'),
1031                 '$username' => array('username',  t('Full Name:'), $username,''),
1032                 '$email'        => array('email', t('Email Address:'), $email, ''),
1033                 '$timezone' => array('timezone_select' , t('Your Timezone:'), select_timezone($timezone), ''),
1034                 '$defloc'       => array('defloc', t('Default Post Location:'), $defloc, ''),
1035                 '$allowloc' => array('allow_location', t('Use Browser Location:'), ($a->user['allow_location'] == 1), ''),
1036                 
1037
1038                 '$h_prv'        => t('Security and Privacy Settings'),
1039
1040                 '$maxreq'       => array('maxreq', t('Maximum Friend Requests/Day:'), $maxreq ,t("\x28to prevent spam abuse\x29")),
1041                 '$permissions' => t('Default Post Permissions'),
1042                 '$permdesc' => t("\x28click to open/close\x29"),
1043                 '$visibility' => $profile['net-publish'],
1044                 '$aclselect' => populate_acl($a->user,$celeb),
1045                 '$suggestme' => $suggestme,
1046                 '$blockwall'=> $blockwall, // array('blockwall', t('Allow friends to post to your profile page:'), !$blockwall, ''),
1047                 '$blocktags'=> $blocktags, // array('blocktags', t('Allow friends to tag your posts:'), !$blocktags, ''),
1048
1049                 '$group_select' => $group_select,
1050
1051
1052                 '$expire'       => $expire_arr,
1053
1054                 '$profile_in_dir' => $profile_in_dir,
1055                 '$profile_in_net_dir' => $profile_in_net_dir,
1056                 '$hide_friends' => $hide_friends,
1057                 '$hide_wall' => $hide_wall,
1058                 '$unkmail' => $unkmail,         
1059                 '$cntunkmail'   => array('cntunkmail', t('Maximum private messages per day from unknown people:'), $cntunkmail ,t("\x28to prevent spam abuse\x29")),
1060                 
1061                 
1062                 '$h_not'        => t('Notification Settings'),
1063                 '$activity_options' => t('By default post a status message when:'),
1064                 '$post_newfriend' => array('post_newfriend',  t('accepting a friend request'), $post_newfriend, ''),
1065                 '$post_joingroup' => array('post_joingroup',  t('joining a forum/community'), $post_joingroup, ''),
1066                 '$post_profilechange' => array('post_profilechange',  t('making an <em>interesting</em> profile change'), $post_profilechange, ''),
1067                 '$lbl_not'      => t('Send a notification email when:'),
1068                 '$notify1'      => array('notify1', t('You receive an introduction'), ($notify & NOTIFY_INTRO), NOTIFY_INTRO, ''),
1069                 '$notify2'      => array('notify2', t('Your introductions are confirmed'), ($notify & NOTIFY_CONFIRM), NOTIFY_CONFIRM, ''),
1070                 '$notify3'      => array('notify3', t('Someone writes on your profile wall'), ($notify & NOTIFY_WALL), NOTIFY_WALL, ''),
1071                 '$notify4'      => array('notify4', t('Someone writes a followup comment'), ($notify & NOTIFY_COMMENT), NOTIFY_COMMENT, ''),
1072                 '$notify5'      => array('notify5', t('You receive a private message'), ($notify & NOTIFY_MAIL), NOTIFY_MAIL, ''),
1073                 '$notify6'  => array('notify6', t('You receive a friend suggestion'), ($notify & NOTIFY_SUGGEST), NOTIFY_SUGGEST, ''),          
1074                 '$notify7'  => array('notify7', t('You are tagged in a post'), ($notify & NOTIFY_TAGSELF), NOTIFY_TAGSELF, ''),         
1075                 '$notify8'  => array('notify8', t('You are poked/prodded/etc. in a post'), ($notify & NOTIFY_POKE), NOTIFY_POKE, ''),           
1076                 
1077                 
1078                 '$h_advn' => t('Advanced Account/Page Type Settings'),
1079                 '$h_descadvn' => t('Change the behaviour of this account for special situations'),
1080                 '$pagetype' => $pagetype,
1081                 
1082         ));
1083
1084         call_hooks('settings_form',$o);
1085
1086         $o .= '</form>' . "\r\n";
1087
1088         return $o;
1089
1090 }}
1091