4 function settings_init(&$a) {
6 profile_load($a,$a->user['nickname']);
9 $a->page['htmlhead'] .= "<script> var ispublic = '" . t('everybody') . "';" ;
11 $a->page['htmlhead'] .= <<< EOT
13 $(document).ready(function() {
15 $('#contact_allow, #contact_deny, #group_allow, #group_deny').change(function() {
17 $('#contact_allow option:selected, #contact_deny option:selected, #group_allow option:selected, #group_deny option:selected').each( function() {
18 selstr = $(this).text();
19 $('#jot-perms-icon').removeClass('unlock').addClass('lock');
20 $('#jot-public').hide();
23 $('#jot-perms-icon').removeClass('lock').addClass('unlock');
24 $('#jot-public').show();
38 function settings_post(&$a) {
41 notice( t('Permission denied.') . EOL);
45 if(count($a->user) && x($a->user,'uid') && $a->user['uid'] != local_user()) {
46 notice( t('Permission denied.') . EOL);
50 if(($a->argc > 1) && ($a->argv[1] === 'oauth') && x($_POST,'remove')){
51 $key = $_POST['remove'];
52 q("DELETE FROM tokens WHERE id='%s' AND uid=%d",
55 goaway($a->get_baseurl()."/settings/oauth/");
59 if(($a->argc > 2) && ($a->argv[1] === 'oauth') && ($a->argv[2] === 'edit') && x($_POST,'submit')) {
61 $name = ((x($_POST,'name')) ? $_POST['name'] : '');
62 $key = ((x($_POST,'key')) ? $_POST['key'] : '');
63 $secret = ((x($_POST,'secret')) ? $_POST['secret'] : '');
64 $redirect = ((x($_POST,'redirect')) ? $_POST['redirect'] : '');
65 $icon = ((x($_POST,'icon')) ? $_POST['icon'] : '');
66 if ($name=="" || $key=="" || $secret==""){
67 notice(t("Missing some important data!"));
70 if ($_POST['submit']==t("Update")){
71 $r = q("UPDATE clients SET
78 WHERE client_id='%s'",
87 $r = q("INSERT INTO clients
88 (client_id, pw, name, redirect_uri, icon, uid)
89 VALUES ('%s','%s','%s','%s','%s',%d)",
98 goaway($a->get_baseurl()."/settings/oauth/");
102 if(($a->argc > 1) && ($a->argv[1] == 'addon')) {
103 call_hooks('plugin_settings_post', $_POST);
107 if(($a->argc > 1) && ($a->argv[1] == 'connectors')) {
109 if(x($_POST['imap-submit'])) {
110 $mail_server = ((x($_POST,'mail_server')) ? $_POST['mail_server'] : '');
111 $mail_port = ((x($_POST,'mail_port')) ? $_POST['mail_port'] : '');
112 $mail_ssl = ((x($_POST,'mail_ssl')) ? strtolower(trim($_POST['mail_ssl'])) : '');
113 $mail_user = ((x($_POST,'mail_user')) ? $_POST['mail_user'] : '');
114 $mail_pass = ((x($_POST,'mail_pass')) ? trim($_POST['mail_pass']) : '');
115 $mail_replyto = ((x($_POST,'mail_replyto')) ? $_POST['mail_replyto'] : '');
116 $mail_pubmail = ((x($_POST,'mail_pubmail')) ? $_POST['mail_pubmail'] : '');
119 $mail_disabled = ((function_exists('imap_open') && (! get_config('system','imap_disabled'))) ? 0 : 1);
120 if(get_config('system','dfrn_only'))
123 if(! $mail_disabled) {
125 $r = q("SELECT * FROM `mailacct` WHERE `uid` = %d LIMIT 1",
129 q("INSERT INTO `mailacct` (`uid`) VALUES (%d)",
133 if(strlen($mail_pass)) {
135 openssl_public_encrypt($mail_pass,$pass,$a->user['pubkey']);
136 q("UPDATE `mailacct` SET `pass` = '%s' WHERE `uid` = %d LIMIT 1",
137 dbesc(bin2hex($pass)),
141 $r = q("UPDATE `mailacct` SET `server` = '%s', `port` = %d, `ssltype` = '%s', `user` = '%s',
142 `mailbox` = 'INBOX', `reply_to` = '%s', `pubmail` = %d WHERE `uid` = %d LIMIT 1",
147 dbesc($mail_replyto),
148 intval($mail_pubmail),
151 $r = q("SELECT * FROM `mailacct` WHERE `uid` = %d LIMIT 1",
156 require_once('include/email.php');
157 $mb = construct_mailbox_name($eacct);
158 if(strlen($eacct['server'])) {
160 openssl_private_decrypt(hex2bin($eacct['pass']),$dcrpass,$a->user['prvkey']);
161 $mbox = email_connect($mb,$mail_user,$dcrpass);
165 notice( t('Failed to connect with email account using the settings provided.') . EOL);
170 info( t('Email settings updated.') . EOL);
174 call_hooks('connector_settings_post', $_POST);
179 call_hooks('settings_post', $_POST);
181 if((x($_POST,'npassword')) || (x($_POST,'confirm'))) {
183 $newpass = $_POST['npassword'];
184 $confirm = $_POST['confirm'];
187 if($newpass != $confirm ) {
188 notice( t('Passwords do not match. Password unchanged.') . EOL);
192 if((! x($newpass)) || (! x($confirm))) {
193 notice( t('Empty passwords are not allowed. Password unchanged.') . EOL);
198 $password = hash('whirlpool',$newpass);
199 $r = q("UPDATE `user` SET `password` = '%s' WHERE `uid` = %d LIMIT 1",
204 info( t('Password changed.') . EOL);
206 notice( t('Password update failed. Please try again.') . EOL);
210 $theme = ((x($_POST,'theme')) ? notags(trim($_POST['theme'])) : '');
211 $username = ((x($_POST,'username')) ? notags(trim($_POST['username'])) : '');
212 $email = ((x($_POST,'email')) ? notags(trim($_POST['email'])) : '');
213 $timezone = ((x($_POST,'timezone')) ? notags(trim($_POST['timezone'])) : '');
214 $defloc = ((x($_POST,'defloc')) ? notags(trim($_POST['defloc'])) : '');
215 $openid = ((x($_POST,'openid_url')) ? notags(trim($_POST['openid_url'])) : '');
216 $maxreq = ((x($_POST,'maxreq')) ? intval($_POST['maxreq']) : 0);
217 $expire = ((x($_POST,'expire')) ? intval($_POST['expire']) : 0);
219 $allow_location = (((x($_POST,'allow_location')) && (intval($_POST['allow_location']) == 1)) ? 1: 0);
220 $publish = (((x($_POST,'profile_in_directory')) && (intval($_POST['profile_in_directory']) == 1)) ? 1: 0);
221 $net_publish = (((x($_POST,'profile_in_netdirectory')) && (intval($_POST['profile_in_netdirectory']) == 1)) ? 1: 0);
222 $old_visibility = (((x($_POST,'visibility')) && (intval($_POST['visibility']) == 1)) ? 1 : 0);
223 $page_flags = (((x($_POST,'page-flags')) && (intval($_POST['page-flags']))) ? intval($_POST['page-flags']) : 0);
224 $blockwall = (((x($_POST,'blockwall')) && (intval($_POST['blockwall']) == 1)) ? 0: 1); // this setting is inverted!
225 $blocktags = (((x($_POST,'blocktags')) && (intval($_POST['blocktags']) == 1)) ? 0: 1); // this setting is inverted!
227 $hide_friends = (($_POST['hide-friends'] == 1) ? 1: 0);
228 $hidewall = (($_POST['hidewall'] == 1) ? 1: 0);
233 if(x($_POST,'notify1'))
234 $notify += intval($_POST['notify1']);
235 if(x($_POST,'notify2'))
236 $notify += intval($_POST['notify2']);
237 if(x($_POST,'notify3'))
238 $notify += intval($_POST['notify3']);
239 if(x($_POST,'notify4'))
240 $notify += intval($_POST['notify4']);
241 if(x($_POST,'notify5'))
242 $notify += intval($_POST['notify5']);
244 $email_changed = false;
248 $name_change = false;
250 if($username != $a->user['username']) {
252 if(strlen($username) > 40)
253 $err .= t(' Please use a shorter name.');
254 if(strlen($username) < 3)
255 $err .= t(' Name too short.');
258 if($email != $a->user['email']) {
259 $email_changed = true;
260 if(! valid_email($email))
261 $err .= t(' Not valid email.');
262 if((x($a->config,'admin_email')) && (strcasecmp($email,$a->config['admin_email']) == 0)) {
263 $err .= t(' Cannot change to that email.');
264 $email = $a->user['email'];
273 if($timezone != $a->user['timezone']) {
274 if(strlen($timezone))
275 date_default_timezone_set($timezone);
278 $str_group_allow = perms2str($_POST['group_allow']);
279 $str_contact_allow = perms2str($_POST['contact_allow']);
280 $str_group_deny = perms2str($_POST['group_deny']);
281 $str_contact_deny = perms2str($_POST['contact_deny']);
283 $openidserver = $a->user['openidserver'];
285 // If openid has changed or if there's an openid but no openidserver, try and discover it.
287 if($openid != $a->user['openid'] || (strlen($openid) && (! strlen($openidserver)))) {
289 if(strlen($tmp_str) && validate_url($tmp_str)) {
290 logger('updating openidserver');
291 require_once('library/openid.php');
292 $open_id_obj = new LightOpenID;
293 $open_id_obj->identity = $openid;
294 $openidserver = $open_id_obj->discover($open_id_obj->identity);
300 $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, `theme` = '%s', `maxreq` = %d, `expire` = %d, `openidserver` = '%s', `blockwall` = %d, `hidewall` = %d, `blocktags` = %d WHERE `uid` = %d LIMIT 1",
305 dbesc($str_contact_allow),
306 dbesc($str_group_allow),
307 dbesc($str_contact_deny),
308 dbesc($str_group_deny),
312 intval($allow_location),
316 dbesc($openidserver),
323 info( t('Settings updated.') . EOL);
325 $r = q("UPDATE `profile`
329 WHERE `is-default` = 1 AND `uid` = %d LIMIT 1",
331 intval($net_publish),
332 intval($hide_friends),
338 q("UPDATE `contact` SET `name` = '%s', `name-date` = '%s' WHERE `uid` = %d AND `self` = 1 LIMIT 1",
340 dbesc(datetime_convert()),
345 if($old_visibility != $net_publish) {
346 // Update global directory in background
347 $url = $_SESSION['my_url'];
348 if($url && strlen(get_config('system','directory_submit_url')))
349 proc_run('php',"include/directory.php","$url");
354 require_once('include/profile_update.php');
357 $_SESSION['theme'] = $theme;
358 if($email_changed && $a->config['register_policy'] == REGISTER_VERIFY) {
360 // FIXME - set to un-verified, blocked and redirect to logout
364 goaway($a->get_baseurl() . '/settings' );
365 return; // NOTREACHED
369 if(! function_exists('settings_content')) {
370 function settings_content(&$a) {
373 nav_set_selected('settings');
376 notice( t('Permission denied.') . EOL );
382 'label' => t('Account settings'),
383 'url' => $a->get_baseurl().'/settings',
384 'sel' => (($a->argc == 1)?'active':''),
387 'label' => t('Connector settings'),
388 'url' => $a->get_baseurl().'/settings/connectors',
389 'sel' => (($a->argc > 1) && ($a->argv[1] === 'connectors')?'active':''),
392 'label' => t('Plugin settings'),
393 'url' => $a->get_baseurl().'/settings/addon',
394 'sel' => (($a->argc > 1) && ($a->argv[1] === 'addon')?'active':''),
397 'label' => t('Connections'),
398 'url' => $a->get_baseurl() . '/settings/oauth',
399 'sel' => (($a->argc > 1) && ($a->argv[1] === 'oauth')?'active':''),
402 'label' => t('Export personal data'),
403 'url' => $a->get_baseurl() . '/uexport',
408 $tabtpl = get_markup_template("common_tabs.tpl");
409 $tabs = replace_macros($tabtpl, array(
413 if(($a->argc > 1) && ($a->argv[1] === 'oauth')) {
415 if(($a->argc > 2) && ($a->argv[2] === 'add')) {
416 $tpl = get_markup_template("settings_oauth_edit.tpl");
417 $o .= replace_macros($tpl, array(
419 '$title' => t('Add application'),
420 '$submit' => t('Submit'),
421 '$cancel' => t('Cancel'),
422 '$name' => array('name', t('Name'), '', ''),
423 '$key' => array('key', t('Consumer Key'), '', ''),
424 '$secret' => array('secret', t('Consumer Secret'), '', ''),
425 '$redirect' => array('redirect', t('Redirect'), '', ''),
426 '$icon' => array('icon', t('Icon url'), '', ''),
431 if(($a->argc > 3) && ($a->argv[2] === 'edit')) {
432 $r = q("SELECT * FROM clients WHERE client_id='%s' AND uid=%d",
437 notice(t("You can't edit this application."));
442 $tpl = get_markup_template("settings_oauth_edit.tpl");
443 $o .= replace_macros($tpl, array(
445 '$title' => t('Add application'),
446 '$submit' => t('Update'),
447 '$cancel' => t('Cancel'),
448 '$name' => array('name', t('Name'), $app['name'] , ''),
449 '$key' => array('key', t('Consumer Key'), $app['client_id'], ''),
450 '$secret' => array('secret', t('Consumer Secret'), $app['pw'], ''),
451 '$redirect' => array('redirect', t('Redirect'), $app['redirect_uri'], ''),
452 '$icon' => array('icon', t('Icon url'), $app['icon'], ''),
457 if(($a->argc > 3) && ($a->argv[2] === 'delete')) {
458 $r = q("DELETE FROM clients WHERE client_id='%s' AND uid=%d",
461 goaway($a->get_baseurl()."/settings/oauth/");
466 $r = q("SELECT clients.*, tokens.id as oauth_token, (clients.uid=%d) AS my
468 LEFT JOIN tokens ON clients.client_id=tokens.client_id
469 WHERE clients.uid IN (%d,0)",
474 $tpl = get_markup_template("settings_oauth.tpl");
475 $o .= replace_macros($tpl, array(
476 '$baseurl' => $a->get_baseurl(),
477 '$title' => t('Connected Apps'),
478 '$add' => t('Add application'),
479 '$edit' => t('Edit'),
480 '$delete' => t('Delete'),
481 '$consumerkey' => t('Client key starts with'),
482 '$noname' => t('No name'),
483 '$remove' => t('Remove authorization'),
490 if(($a->argc > 1) && ($a->argv[1] === 'addon')) {
491 $settings_addons = "";
493 $r = q("SELECT * FROM `hook` WHERE `hook` = 'plugin_settings' ");
495 $settings_addons = t('No Plugin settings configured');
497 call_hooks('plugin_settings', $settings_addons);
500 $tpl = get_markup_template("settings_addons.tpl");
501 $o .= replace_macros($tpl, array(
502 '$title' => t('Plugin Settings'),
504 '$settings_addons' => $settings_addons
509 if(($a->argc > 1) && ($a->argv[1] === 'connectors')) {
511 $settings_connectors = "";
513 call_hooks('connector_settings', $settings_connectors);
515 $diasp_enabled = sprintf( t('Built-in support for %s connectivity is %s'), t('Diaspora'), ((get_config('system','diaspora_enabled')) ? t('enabled') : t('disabled')));
516 $ostat_enabled = sprintf( t('Built-in support for %s connectivity is %s'), t('StatusNet'), ((get_config('system','ostatus_disabled')) ? t('disabled') : t('enabled')));
518 $mail_disabled = ((function_exists('imap_open') && (! get_config('system','imap_disabled'))) ? 0 : 1);
519 if(get_config('system','dfrn_only'))
522 if(! $mail_disabled) {
523 $r = q("SELECT * FROM `mailacct` WHERE `uid` = %d LIMIT 1",
531 $mail_server = ((count($r)) ? $r[0]['server'] : '');
532 $mail_port = ((count($r) && intval($r[0]['port'])) ? intval($r[0]['port']) : '');
533 $mail_ssl = ((count($r)) ? $r[0]['ssltype'] : '');
534 $mail_user = ((count($r)) ? $r[0]['user'] : '');
535 $mail_replyto = ((count($r)) ? $r[0]['reply_to'] : '');
536 $mail_pubmail = ((count($r)) ? $r[0]['pubmail'] : 0);
537 $mail_chk = ((count($r)) ? $r[0]['last_check'] : '0000-00-00 00:00:00');
540 $tpl = get_markup_template("settings_connectors.tpl");
541 $o .= replace_macros($tpl, array(
542 '$title' => t('Connector Settings'),
545 '$diasp_enabled' => $diasp_enabled,
546 '$ostat_enabled' => $ostat_enabled,
548 '$h_imap' => t('Email/Mailbox Setup'),
549 '$imap_desc' => t("If you wish to communicate with email contacts using this service \x28optional\x29, please specify how to connect to your mailbox."),
550 '$imap_lastcheck' => array('imap_lastcheck', t('Last successful email check:'), $mail_chk,''),
551 '$mail_disabled' => (($mail_disabled) ? t('Email access is disabled on this site.') : ''),
552 '$mail_server' => array('mail_server', t('IMAP server name:'), $mail_server, ''),
553 '$mail_port' => array('mail_port', t('IMAP port:'), $mail_port, ''),
554 '$mail_ssl' => array('mail_ssl', t('Security:'), strtoupper($mail_ssl), '', array( ''=>t('None'), 'TSL'=>'TSL', 'SSL'=>'SSL')),
555 '$mail_user' => array('mail_user', t('Email login name:'), $mail_user, ''),
556 '$mail_pass' => array('mail_pass', t('Email password:'), '', ''),
557 '$mail_replyto' => array('mail_replyto', t('Reply-to address:'), '', 'Optional'),
558 '$mail_pubmail' => array('mail_pubmail', t('Send public posts to all email contacts:'), $mail_pubmail, ''),
559 '$submit' => t('Submit'),
563 '$settings_connectors' => $settings_connectors
569 require_once('include/acl_selectors.php');
571 $p = q("SELECT * FROM `profile` WHERE `is-default` = 1 AND `uid` = %d LIMIT 1",
577 $username = $a->user['username'];
578 $email = $a->user['email'];
579 $nickname = $a->user['nickname'];
580 $timezone = $a->user['timezone'];
581 $notify = $a->user['notify-flags'];
582 $defloc = $a->user['default-location'];
583 $openid = $a->user['openid'];
584 $maxreq = $a->user['maxreq'];
585 $expire = ((intval($a->user['expire'])) ? $a->user['expire'] : '');
586 $blockwall = $a->user['blockwall'];
587 $blocktags = $a->user['blocktags'];
589 if(! strlen($a->user['timezone']))
590 $timezone = date_default_timezone_get();
594 $pageset_tpl = get_markup_template('pagetypes.tpl');
595 $pagetype = replace_macros($pageset_tpl,array(
596 '$page_normal' => array('page-flags', t('Normal Account'), PAGE_NORMAL,
597 t('This account is a normal personal profile'),
598 ($a->user['page-flags'] == PAGE_NORMAL)),
600 '$page_soapbox' => array('page-flags', t('Soapbox Account'), PAGE_SOAPBOX,
601 t('Automatically approve all connection/friend requests as read-only fans'),
602 ($a->user['page-flags'] == PAGE_SOAPBOX)),
604 '$page_community' => array('page-flags', t('Community/Celebrity Account'), PAGE_COMMUNITY,
605 t('Automatically approve all connection/friend requests as read-write fans'),
606 ($a->user['page-flags'] == PAGE_COMMUNITY)),
608 '$page_freelove' => array('page-flags', t('Automatic Friend Account'), PAGE_FREELOVE,
609 t('Automatically approve all connection/friend requests as friends'),
610 ($a->user['page-flags'] == PAGE_FREELOVE)),
613 $noid = get_config('system','no_openid');
616 $openid_field = false;
619 $openid_field = array('openid_url', t('OpenID:'),$openid, t("\x28Optional\x29 Allow this OpenID to login to this account."));
623 $opt_tpl = get_markup_template("field_yesno.tpl");
624 if(get_config('system','publish_all')) {
625 $profile_in_dir = '<input type="hidden" name="profile_in_directory" value="1" />';
628 $profile_in_dir = replace_macros($opt_tpl,array(
629 '$field' => array('profile_in_directory', t('Publish your default profile in your local site directory?'), $profile['publish'], '', array(t('No'),t('Yes'))),
633 if(strlen(get_config('system','directory_submit_url'))) {
634 $profile_in_net_dir = replace_macros($opt_tpl,array(
635 '$field' => array('profile_in_netdirectory', t('Publish your default profile in the global social directory?'), $profile['net-publish'], '', array(t('No'),t('Yes'))),
639 $profile_in_net_dir = '';
642 $hide_friends = replace_macros($opt_tpl,array(
643 '$field' => array('hide-friends', t('Hide your contact/friend list from viewers of your default profile?'), $profile['hide-friends'], '', array(t('No'),t('Yes'))),
646 $hide_wall = replace_macros($opt_tpl,array(
647 '$field' => array('hidewall', t('Hide profile details and all your messages from unknown viewers?'), $a->user['hidewall'], '', array(t('No'),t('Yes'))),
651 $blockwall = replace_macros($opt_tpl,array(
652 '$field' => array('blockwall', t('Allow friends to post to your profile page?'), ! $a->user['blockwall'], '', array(t('No'),t('Yes'))),
657 $blocktags = replace_macros($opt_tpl,array(
658 '$field' => array('blocktags', t('Allow friends to tag your posts?'), ! $a->user['blocktags'], '', array(t('No'),t('Yes'))),
663 $invisible = (((! $profile['publish']) && (! $profile['net-publish']))
667 info( t('Profile is <strong>not published</strong>.') . EOL );
670 $default_theme = get_config('system','theme');
672 $default_theme = 'default';
675 $files = glob('view/theme/*');
677 foreach($files as $file) {
678 $f = basename($file);
679 $theme_name = ((file_exists($file . '/experimental')) ? sprintf("%s - \x28Experimental\x29", $f) : $f);
680 $themes[$f]=$theme_name;
683 $theme_selected = (!x($_SESSION,'theme')? $default_theme : $_SESSION['theme']);
686 $subdir = ((strlen($a->get_path())) ? '<br />' . t('or') . ' ' . $a->get_baseurl() . '/profile/' . $nickname : '');
688 $tpl_addr = get_markup_template("settings_nick_set.tpl");
690 $prof_addr = replace_macros($tpl_addr,array(
691 '$desc' => t('Your Identity Address is'),
692 '$nickname' => $nickname,
693 '$subdir' => $subdir,
694 '$basepath' => $a->get_hostname()
697 $stpl = get_markup_template('settings.tpl');
699 $celeb = ((($a->user['page-flags'] == PAGE_SOAPBOX) || ($a->user['page-flags'] == PAGE_COMMUNITY)) ? true : false);
703 $o .= replace_macros($stpl,array(
705 '$ptitle' => t('Account Settings'),
707 '$submit' => t('Submit'),
708 '$baseurl' => $a->get_baseurl(),
709 '$uid' => local_user(),
711 '$nickname_block' => $prof_addr,
713 '$h_pass' => t('Password Settings'),
714 '$password1'=> array('npassword', t('New Password:'), '', ''),
715 '$password2'=> array('confirm', t('Confirm:'), '', t('Leave password fields blank unless changing')),
716 '$oid_enable' => (! get_config('system','no_openid')),
717 '$openid' => $openid_field,
719 '$h_basic' => t('Basic Settings'),
720 '$username' => array('username', t('Full Name:'), $username,''),
721 '$email' => array('email', t('Email Address:'), $email, ''),
722 '$timezone' => array('timezone_select' , t('Your Timezone:'), select_timezone($timezone), ''),
723 '$defloc' => array('defloc', t('Default Post Location:'), $defloc, ''),
724 '$allowloc' => array('allow_location', t('Use Browser Location:'), ($a->user['allow_location'] == 1), ''),
725 '$theme' => array('theme', t('Display Theme:'), $theme_selected, '', $themes),
729 '$h_prv' => t('Security and Privacy Settings'),
731 '$maxreq' => array('maxreq', t('Maximum Friend Requests/Day:'), $maxreq ,t("\x28to prevent spam abuse\x29")),
732 '$permissions' => t('Default Post Permissions'),
733 '$permdesc' => t("\x28click to open/close\x29"),
734 '$visibility' => $profile['net-publish'],
735 '$aclselect' => populate_acl($a->user,$celeb),
737 '$blockwall'=> $blockwall, // array('blockwall', t('Allow friends to post to your profile page:'), !$blockwall, ''),
738 '$blocktags'=> $blocktags, // array('blocktags', t('Allow friends to tag your posts:'), !$blocktags, ''),
739 '$expire' => array('expire', t("Automatically expire posts after days:"), $expire, t('If empty, posts will not expire. Expired posts will be deleted')),
741 '$profile_in_dir' => $profile_in_dir,
742 '$profile_in_net_dir' => $profile_in_net_dir,
743 '$hide_friends' => $hide_friends,
744 '$hide_wall' => $hide_wall,
748 '$h_not' => t('Notification Settings'),
749 '$lbl_not' => t('Send a notification email when:'),
750 '$notify1' => array('notify1', t('You receive an introduction'), ($notify & NOTIFY_INTRO), NOTIFY_INTRO, ''),
751 '$notify2' => array('notify2', t('Your introductions are confirmed'), ($notify & NOTIFY_CONFIRM), NOTIFY_CONFIRM, ''),
752 '$notify3' => array('notify3', t('Someone writes on your profile wall'), ($notify & NOTIFY_WALL), NOTIFY_WALL, ''),
753 '$notify4' => array('notify4', t('Someone writes a followup comment'), ($notify & NOTIFY_COMMENT), NOTIFY_COMMENT, ''),
754 '$notify5' => array('notify5', t('You receive a private message'), ($notify & NOTIFY_MAIL), NOTIFY_MAIL, ''),
758 '$h_advn' => t('Advanced Page Settings'),
759 '$pagetype' => $pagetype,
774 call_hooks('settings_form',$o);
776 $o .= '</form>' . "\r\n";