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