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!
226 $hide_friends = (($_POST['hide-friends'] == 1) ? 1: 0);
227 $hidewall = (($_POST['hidewall'] == 1) ? 1: 0);
232 if(x($_POST,'notify1'))
233 $notify += intval($_POST['notify1']);
234 if(x($_POST,'notify2'))
235 $notify += intval($_POST['notify2']);
236 if(x($_POST,'notify3'))
237 $notify += intval($_POST['notify3']);
238 if(x($_POST,'notify4'))
239 $notify += intval($_POST['notify4']);
240 if(x($_POST,'notify5'))
241 $notify += intval($_POST['notify5']);
243 $email_changed = false;
247 $name_change = false;
249 if($username != $a->user['username']) {
251 if(strlen($username) > 40)
252 $err .= t(' Please use a shorter name.');
253 if(strlen($username) < 3)
254 $err .= t(' Name too short.');
257 if($email != $a->user['email']) {
258 $email_changed = true;
259 if(! valid_email($email))
260 $err .= t(' Not valid email.');
261 if((x($a->config,'admin_email')) && (strcasecmp($email,$a->config['admin_email']) == 0)) {
262 $err .= t(' Cannot change to that email.');
263 $email = $a->user['email'];
272 if($timezone != $a->user['timezone']) {
273 if(strlen($timezone))
274 date_default_timezone_set($timezone);
277 $str_group_allow = perms2str($_POST['group_allow']);
278 $str_contact_allow = perms2str($_POST['contact_allow']);
279 $str_group_deny = perms2str($_POST['group_deny']);
280 $str_contact_deny = perms2str($_POST['contact_deny']);
282 $openidserver = $a->user['openidserver'];
284 // If openid has changed or if there's an openid but no openidserver, try and discover it.
286 if($openid != $a->user['openid'] || (strlen($openid) && (! strlen($openidserver)))) {
288 if(strlen($tmp_str) && validate_url($tmp_str)) {
289 logger('updating openidserver');
290 require_once('library/openid.php');
291 $open_id_obj = new LightOpenID;
292 $open_id_obj->identity = $openid;
293 $openidserver = $open_id_obj->discover($open_id_obj->identity);
299 $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 WHERE `uid` = %d LIMIT 1",
304 dbesc($str_contact_allow),
305 dbesc($str_group_allow),
306 dbesc($str_contact_deny),
307 dbesc($str_group_deny),
311 intval($allow_location),
315 dbesc($openidserver),
321 info( t('Settings updated.') . EOL);
323 $r = q("UPDATE `profile`
327 WHERE `is-default` = 1 AND `uid` = %d LIMIT 1",
329 intval($net_publish),
330 intval($hide_friends),
336 q("UPDATE `contact` SET `name` = '%s', `name-date` = '%s' WHERE `uid` = %d AND `self` = 1 LIMIT 1",
338 dbesc(datetime_convert()),
343 if($old_visibility != $net_publish) {
344 // Update global directory in background
345 $url = $_SESSION['my_url'];
346 if($url && strlen(get_config('system','directory_submit_url')))
347 proc_run('php',"include/directory.php","$url");
351 // not yet ready for prime time
352 // require_once('include/profile_update.php');
355 $_SESSION['theme'] = $theme;
356 if($email_changed && $a->config['register_policy'] == REGISTER_VERIFY) {
358 // FIXME - set to un-verified, blocked and redirect to logout
362 goaway($a->get_baseurl() . '/settings' );
363 return; // NOTREACHED
367 if(! function_exists('settings_content')) {
368 function settings_content(&$a) {
371 nav_set_selected('settings');
374 notice( t('Permission denied.') . EOL );
380 'label' => t('Account settings'),
381 'url' => $a->get_baseurl().'/settings',
382 'sel' => (($a->argc == 1)?'active':''),
385 'label' => t('Connector settings'),
386 'url' => $a->get_baseurl().'/settings/connectors',
387 'sel' => (($a->argc > 1) && ($a->argv[1] === 'connectors')?'active':''),
390 'label' => t('Plugin settings'),
391 'url' => $a->get_baseurl().'/settings/addon',
392 'sel' => (($a->argc > 1) && ($a->argv[1] === 'addon')?'active':''),
395 'label' => t('Connections'),
396 'url' => $a->get_baseurl() . '/settings/oauth',
397 'sel' => (($a->argc > 1) && ($a->argv[1] === 'oauth')?'active':''),
400 'label' => t('Export personal data'),
401 'url' => $a->get_baseurl() . '/uexport',
406 $tabtpl = get_markup_template("common_tabs.tpl");
407 $tabs = replace_macros($tabtpl, array(
411 if(($a->argc > 1) && ($a->argv[1] === 'oauth')) {
413 if(($a->argc > 2) && ($a->argv[2] === 'add')) {
414 $tpl = get_markup_template("settings_oauth_edit.tpl");
415 $o .= replace_macros($tpl, array(
417 '$title' => t('Add application'),
418 '$submit' => t('Submit'),
419 '$cancel' => t('Cancel'),
420 '$name' => array('name', t('Name'), '', ''),
421 '$key' => array('key', t('Consumer Key'), '', ''),
422 '$secret' => array('secret', t('Consumer Secret'), '', ''),
423 '$redirect' => array('redirect', t('Redirect'), '', ''),
424 '$icon' => array('icon', t('Icon url'), '', ''),
429 if(($a->argc > 3) && ($a->argv[2] === 'edit')) {
430 $r = q("SELECT * FROM clients WHERE client_id='%s' AND uid=%d",
435 notice(t("You can't edit this application."));
440 $tpl = get_markup_template("settings_oauth_edit.tpl");
441 $o .= replace_macros($tpl, array(
443 '$title' => t('Add application'),
444 '$submit' => t('Update'),
445 '$cancel' => t('Cancel'),
446 '$name' => array('name', t('Name'), $app['name'] , ''),
447 '$key' => array('key', t('Consumer Key'), $app['client_id'], ''),
448 '$secret' => array('secret', t('Consumer Secret'), $app['pw'], ''),
449 '$redirect' => array('redirect', t('Redirect'), $app['redirect_uri'], ''),
450 '$icon' => array('icon', t('Icon url'), $app['icon'], ''),
455 if(($a->argc > 3) && ($a->argv[2] === 'delete')) {
456 $r = q("DELETE FROM clients WHERE client_id='%s' AND uid=%d",
459 goaway($a->get_baseurl()."/settings/oauth/");
464 $r = q("SELECT clients.*, tokens.id as oauth_token, (clients.uid=%d) AS my
466 LEFT JOIN tokens ON clients.client_id=tokens.client_id
467 WHERE clients.uid IN (%d,0)",
472 $tpl = get_markup_template("settings_oauth.tpl");
473 $o .= replace_macros($tpl, array(
474 '$baseurl' => $a->get_baseurl(),
475 '$title' => t('Connected Apps'),
476 '$add' => t('Add application'),
477 '$edit' => t('Edit'),
478 '$delete' => t('Delete'),
479 '$consumerkey' => t('Client key starts with'),
480 '$noname' => t('No name'),
481 '$remove' => t('Remove authorization'),
488 if(($a->argc > 1) && ($a->argv[1] === 'addon')) {
489 $settings_addons = "";
491 $r = q("SELECT * FROM `hook` WHERE `hook` = 'plugin_settings' ");
493 $settings_addons = t('No Plugin settings configured');
495 call_hooks('plugin_settings', $settings_addons);
498 $tpl = get_markup_template("settings_addons.tpl");
499 $o .= replace_macros($tpl, array(
500 '$title' => t('Plugin Settings'),
502 '$settings_addons' => $settings_addons
507 if(($a->argc > 1) && ($a->argv[1] === 'connectors')) {
509 $settings_connectors = "";
511 call_hooks('connector_settings', $settings_connectors);
513 $diasp_enabled = sprintf( t('Built-in support for %s connectivity is %s'), t('Diaspora'), ((get_config('system','diaspora_enabled')) ? t('enabled') : t('disabled')));
514 $ostat_enabled = sprintf( t('Built-in support for %s connectivity is %s'), t('StatusNet'), ((get_config('system','ostatus_disabled')) ? t('disabled') : t('enabled')));
516 $mail_disabled = ((function_exists('imap_open') && (! get_config('system','imap_disabled'))) ? 0 : 1);
517 if(get_config('system','dfrn_only'))
520 if(! $mail_disabled) {
521 $r = q("SELECT * FROM `mailacct` WHERE `uid` = %d LIMIT 1",
529 $mail_server = ((count($r)) ? $r[0]['server'] : '');
530 $mail_port = ((count($r) && intval($r[0]['port'])) ? intval($r[0]['port']) : '');
531 $mail_ssl = ((count($r)) ? $r[0]['ssltype'] : '');
532 $mail_user = ((count($r)) ? $r[0]['user'] : '');
533 $mail_replyto = ((count($r)) ? $r[0]['reply_to'] : '');
534 $mail_pubmail = ((count($r)) ? $r[0]['pubmail'] : 0);
535 $mail_chk = ((count($r)) ? $r[0]['last_check'] : '0000-00-00 00:00:00');
538 $tpl = get_markup_template("settings_connectors.tpl");
539 $o .= replace_macros($tpl, array(
540 '$title' => t('Connector Settings'),
543 '$diasp_enabled' => $diasp_enabled,
544 '$ostat_enabled' => $ostat_enabled,
546 '$h_imap' => t('Email/Mailbox Setup'),
547 '$imap_desc' => t("If you wish to communicate with email contacts using this service \x28optional\x29, please specify how to connect to your mailbox."),
548 '$imap_lastcheck' => array('imap_lastcheck', t('Last successful email check:'), $mail_chk,''),
549 '$mail_disabled' => (($mail_disabled) ? t('Email access is disabled on this site.') : ''),
550 '$mail_server' => array('mail_server', t('IMAP server name:'), $mail_server, ''),
551 '$mail_port' => array('mail_port', t('IMAP port:'), $mail_port, ''),
552 '$mail_ssl' => array('mail_ssl', t('Security:'), strtoupper($mail_ssl), '', array( ''=>t('None'), 'TSL'=>'TSL', 'SSL'=>'SSL')),
553 '$mail_user' => array('mail_user', t('Email login name:'), $mail_user, ''),
554 '$mail_pass' => array('mail_pass', t('Email password:'), '', ''),
555 '$mail_replyto' => array('mail_replyto', t('Reply-to address:'), '', 'Optional'),
556 '$mail_pubmail' => array('mail_pubmail', t('Send public posts to all email contacts:'), $mail_pubmail, ''),
557 '$submit' => t('Submit'),
561 '$settings_connectors' => $settings_connectors
567 require_once('include/acl_selectors.php');
569 $p = q("SELECT * FROM `profile` WHERE `is-default` = 1 AND `uid` = %d LIMIT 1",
575 $username = $a->user['username'];
576 $email = $a->user['email'];
577 $nickname = $a->user['nickname'];
578 $timezone = $a->user['timezone'];
579 $notify = $a->user['notify-flags'];
580 $defloc = $a->user['default-location'];
581 $openid = $a->user['openid'];
582 $maxreq = $a->user['maxreq'];
583 $expire = ((intval($a->user['expire'])) ? $a->user['expire'] : '');
584 $blockwall = $a->user['blockwall'];
586 if(! strlen($a->user['timezone']))
587 $timezone = date_default_timezone_get();
591 $pageset_tpl = get_markup_template('pagetypes.tpl');
592 $pagetype = replace_macros($pageset_tpl,array(
593 '$page_normal' => array('page-flags', t('Normal Account'), PAGE_NORMAL,
594 t('This account is a normal personal profile'),
595 ($a->user['page-flags'] == PAGE_NORMAL)),
597 '$page_soapbox' => array('page-flags', t('Soapbox Account'), PAGE_SOAPBOX,
598 t('Automatically approve all connection/friend requests as read-only fans'),
599 ($a->user['page-flags'] == PAGE_SOAPBOX)),
601 '$page_community' => array('page-flags', t('Community/Celebrity Account'), PAGE_COMMUNITY,
602 t('Automatically approve all connection/friend requests as read-write fans'),
603 ($a->user['page-flags'] == PAGE_COMMUNITY)),
605 '$page_freelove' => array('page-flags', t('Automatic Friend Account'), PAGE_FREELOVE,
606 t('Automatically approve all connection/friend requests as friends'),
607 ($a->user['page-flags'] == PAGE_FREELOVE)),
610 $noid = get_config('system','no_openid');
613 $openid_field = false;
616 $openid_field = array('openid_url', t('OpenID:'),$openid, t("\x28Optional\x29 Allow this OpenID to login to this account."));
620 $opt_tpl = get_markup_template("field_yesno.tpl");
621 if(get_config('system','publish_all')) {
622 $profile_in_dir = '<input type="hidden" name="profile_in_directory" value="1" />';
625 $profile_in_dir = replace_macros($opt_tpl,array(
626 '$field' => array('profile_in_directory', t('Publish your default profile in your local site directory?'), $profile['publish'], '', array(t('No'),t('Yes'))),
630 if(strlen(get_config('system','directory_submit_url'))) {
631 $profile_in_net_dir = replace_macros($opt_tpl,array(
632 '$field' => array('profile_in_netdirectory', t('Publish your default profile in the global social directory?'), $profile['net-publish'], '', array(t('No'),t('Yes'))),
636 $profile_in_net_dir = '';
639 $hide_friends = replace_macros($opt_tpl,array(
640 '$field' => array('hide-friends', t('Hide your contact/friend list from viewers of your default profile?'), $profile['hide-friends'], '', array(t('No'),t('Yes'))),
643 $hide_wall = replace_macros($opt_tpl,array(
644 '$field' => array('hidewall', t('Hide profile details and all your messages from unknown viewers?'), $a->user['hidewall'], '', array(t('No'),t('Yes'))),
649 $invisible = (((! $profile['publish']) && (! $profile['net-publish']))
653 info( t('Profile is <strong>not published</strong>.') . EOL );
656 $default_theme = get_config('system','theme');
658 $default_theme = 'default';
661 $files = glob('view/theme/*');
663 foreach($files as $file) {
664 $f = basename($file);
665 $theme_name = ((file_exists($file . '/experimental')) ? sprintf("%s - \x28Experimental\x29", $f) : $f);
666 $themes[$f]=$theme_name;
669 $theme_selected = (!x($_SESSION,'theme')? $default_theme : $_SESSION['theme']);
672 $subdir = ((strlen($a->get_path())) ? '<br />' . t('or') . ' ' . $a->get_baseurl() . '/profile/' . $nickname : '');
674 $tpl_addr = get_markup_template("settings_nick_set.tpl");
676 $prof_addr = replace_macros($tpl_addr,array(
677 '$desc' => t('Your Identity Address is'),
678 '$nickname' => $nickname,
679 '$subdir' => $subdir,
680 '$basepath' => $a->get_hostname()
683 $stpl = get_markup_template('settings.tpl');
685 $celeb = ((($a->user['page-flags'] == PAGE_SOAPBOX) || ($a->user['page-flags'] == PAGE_COMMUNITY)) ? true : false);
689 $o .= replace_macros($stpl,array(
691 '$ptitle' => t('Account Settings'),
693 '$submit' => t('Submit'),
694 '$baseurl' => $a->get_baseurl(),
695 '$uid' => local_user(),
697 '$nickname_block' => $prof_addr,
699 '$h_pass' => t('Password Settings'),
700 '$password1'=> array('npassword', t('New Password:'), '', ''),
701 '$password2'=> array('confirm', t('Confirm:'), '', t('Leave password fields blank unless changing')),
702 '$oid_enable' => (! get_config('system','no_openid')),
703 '$openid' => $openid_field,
705 '$h_basic' => t('Basic Settings'),
706 '$username' => array('username', t('Full Name:'), $username,''),
707 '$email' => array('email', t('Email Address:'), $email, ''),
708 '$timezone' => array('timezone_select' , t('Your Timezone:'), select_timezone($timezone), ''),
709 '$defloc' => array('defloc', t('Default Post Location:'), $defloc, ''),
710 '$allowloc' => array('allow_location', t('Use Browser Location:'), ($a->user['allow_location'] == 1), ''),
711 '$theme' => array('theme', t('Display Theme:'), $theme_selected, '', $themes),
715 '$h_prv' => t('Security and Privacy Settings'),
717 '$maxreq' => array('maxreq', t('Maximum Friend Requests/Day:'), $maxreq ,t("\x28to prevent spam abuse\x29")),
718 '$permissions' => t('Default Post Permissions'),
719 '$permdesc' => t("\x28click to open/close\x29"),
720 '$visibility' => $profile['net-publish'],
721 '$aclselect' => populate_acl($a->user,$celeb),
723 '$blockwall'=> array('blockwall', t('Allow friends to post to your profile page:'), !$blockwall, ''),
724 '$expire' => array('expire', t("Automatically expire posts after days:"), $expire, t('If empty, posts will not expire. Expired posts will be deleted')),
726 '$profile_in_dir' => $profile_in_dir,
727 '$profile_in_net_dir' => $profile_in_net_dir,
728 '$hide_friends' => $hide_friends,
729 '$hide_wall' => $hide_wall,
733 '$h_not' => t('Notification Settings'),
734 '$lbl_not' => t('Send a notification email when:'),
735 '$notify1' => array('notify1', t('You receive an introduction'), ($notify & NOTIFY_INTRO), NOTIFY_INTRO, ''),
736 '$notify2' => array('notify2', t('Your introductions are confirmed'), ($notify & NOTIFY_CONFIRM), NOTIFY_CONFIRM, ''),
737 '$notify3' => array('notify3', t('Someone writes on your profile wall'), ($notify & NOTIFY_WALL), NOTIFY_WALL, ''),
738 '$notify4' => array('notify4', t('Someone writes a followup comment'), ($notify & NOTIFY_COMMENT), NOTIFY_COMMENT, ''),
739 '$notify5' => array('notify5', t('You receive a private message'), ($notify & NOTIFY_MAIL), NOTIFY_MAIL, ''),
743 '$h_advn' => t('Advanced Page Settings'),
744 '$pagetype' => $pagetype,
759 call_hooks('settings_form',$o);
761 $o .= '</form>' . "\r\n";