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