Copyright (C) 2005 James Grant Copyright (C) 2007 David Grant This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, version 2. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; see the file COPYING. If not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ ?> array('name' => 'Salutation'), 'firstname' => array('name' => 'First Name'), 'lastname' => array('name' => 'Last Name'), 'email' => array('name' => 'Email Address'), 'username' => array('name' => 'Username'), 'password' => array('name' => 'Password'), 'address' => array('name' => 'Address 1'), 'address2' => array('name' => 'Address 2'), 'city' => array('name' => 'City'), 'province' => array('name' => $config['provincestate']), 'organization' => array('name' => 'Organization'), 'sex' => array('name' => 'Gender'), 'firstaid' => array ('name' => 'First Aid Training', 'type' => 'yesno'), 'cpr' => array ('name' => 'CPR Training', 'type' => 'yesno'), 'phonehome' => array('name' => 'Phone (Home)', 'regexp' => '^[1-9][0-9]{2}-[1-9][0-9]{2}-[0-9]{4}( x[0-9]{1,5})?$', 'format' => '\'NNN-NNN-NNNN\' or \'NNN-NNN-NNNN xEXT\'',), 'phonecell' => array('name' => 'Phone (Cell)', 'regexp' => '^[1-9][0-9]{2}-[1-9][0-9]{2}-[0-9]{4}$', 'format' => '\'NNN-NNN-NNNN\'',), 'phonework' => array('name' => 'Phone (Work)', 'regexp' => '^[1-9][0-9]{2}-[1-9][0-9]{2}-[0-9]{4}( x[0-9]{1,5})?$', 'format' => '\'NNN-NNN-NNNN\' or \'NNN-NNN-NNNN xEXT\'',), 'fax' => array('name' => 'Fax', 'regexp' => '^[1-9][0-9]{2}-[1-9][0-9]{2}-[0-9]{4}$', 'format' => '\'NNN-NNN-NNNN\'',), 'postalcode' => array('name' => $config['postalzip'], 'regexp' => '^(([A-Z][0-9][A-Z] [0-9][A-Z][0-9])|([0-9]{5}))$', 'format' => '\'ANA NAN\' or \'NNNNN\'',), ); /* Sort out who we're editting */ if($_POST['users_id']) $eid = intval($_POST['users_id']); /* From a save form */ else if(array_key_exists('embed_edit_id', $_SESSION)) $eid = $_SESSION['embed_edit_id']; /* From the embedded editor */ else $eid = $_SESSION['users_id']; /* Regular entry */ if($eid != $_SESSION['users_id']) { /* Not editing ourself, we had better be * a committee member */ user_auth_required('committee','admin'); } $u = user_load($eid); /* Load the fields the user can edit, and theones that are required */ $fields = array(); $required = array(); $errorfields = array(); foreach($u['types'] as $t) { $fields = array_merge($fields, user_personal_fields($t)); $required = array_merge($required, user_personal_required_fields($t)); } if(committee_auth_has_access('super')) { /* If the editer is super, let them see/edit/save the user/pass */ $fields[] = 'username'; $fields[] = 'password'; } switch($_GET['action']) { case 'save': $users_id = intval($_POST['users_id']); if($users_id != $_SESSION['users_id']) { user_auth_required('committee','admin'); } $u = user_load($users_id); $save = true; /* Set values */ foreach($fields as $f) { $u[$f] = stripslashes($_POST[$f]); } foreach($u as $f=>$v) { if($v == '') continue; /* See if this field has a validate */ if(isset($user_personal_fields[$f]['regexp'])) { /* Match the regex */ if(!ereg($user_personal_fields[$f]['regexp'], $v)) { /* Bad */ $save = false; $errorfields[] = $f; } } } if(!array_key_exists('username', $u) || $u['username'] == '') { $u['username'] = $u['email']; } if(in_array('committee', $u['types'])) { /* Trying to save a committee member eh? Well, we established above * that we're allowed to be here, so go ahead and save it */ $u['displayemail'] = ($_POST['displayemail'] == 'yes') ? 'yes' : 'no'; $u['emailprivate'] = mysql_real_escape_string(stripslashes($_POST['emailprivate'])); if(committee_auth_has_access('super')) { /* But only superusers can save these ones */ $u['access_admin'] = ($_POST['access_admin'] == 'yes') ? 'yes' : 'no'; $u['access_config'] = ($_POST['access_config'] == 'yes') ? 'yes' : 'no'; $u['access_super'] = ($_POST['access_super'] == 'yes') ? 'yes' : 'no'; } } /* Check for an email collision */ $em = mysql_escape_string(stripslashes($_POST['email'])); $q=mysql_query("SELECT id FROM users WHERE email='$em' AND uid!='{$u['uid']}' AND deleted='no'"); if(mysql_num_rows($q) > 0) { error_("That email address is in use by another user"); $save = false; } if($save == true) { user_save($u); happy_("%1 %2 successfully updated",array($_POST['firstname'],$_POST['lastname'])); } exit; } $type = $_SESSION['users_type']; //send the header if($_SESSION['embed'] == true) { echo "
"; echo "

".i18n("Personal Information")."

"; echo "
"; } else { send_header("Personal Information for {$u['firstname']} {$u['lastname']}", array($user_what[$type]." Registration" => "{$type}_main.php") ,"edit_profile" ); } ?> 1) { $roles=''; foreach($u['types'] as $t) { $roles.= (($roles=='')?'':', ').i18n($user_what[$t]); } echo notice(i18n('This user has multiple roles, the fields shown below are a combination of every role. Some may not apply to some roles. This user has the following roles:').' '.$roles); } function item($user, $fname, $subtext='') { global $fields, $required; global $errorfields; global $user_personal_fields; if(in_array($fname, $fields)) { $text = i18n($user_personal_fields[$fname]['name']); if(in_array($fname, $errorfields)) $style = 'style="color:red;"'; echo "$text: "; if($subtext != '') echo '
'.i18n($subtext).''; echo ''; $req = in_array($fname, $required) ? REQUIREDFIELD : ''; switch($user_personal_fields[$fname]['type']) { case 'yesno': echo " $req"; break; default: echo "$req"; break; } echo ''; } else { echo ''; } } echo "
\n"; echo ""; echo "\n"; echo "\n"; item($u, 'firstname'); item($u, 'lastname'); echo "\n"; echo "\n"; item($u, 'email'); item($u, 'salutation'); echo "\n"; echo "\n"; item($u, 'username', '(if different from Email)'); item($u, 'password'); echo "\n"; echo "\n"; item($u, 'address'); item($u, 'city'); echo "\n"; echo "\n"; item($u, 'address2'); if(in_array('province', $fields)) { echo ''; echo ''; } else { echo ''; } echo "\n"; echo "\n"; item($u, 'postalcode'); echo ""; echo "\n"; echo ""; item($u, 'phonehome'); item($u, 'phonecell'); echo "\n"; echo "\n"; item($u, 'organization'); item($u, 'phonework'); echo ""; echo "\n"; item($u, 'fax'); if(in_array('sex', $fields)) { echo ''; echo ''; } else { echo ''; } echo ""; echo "\n"; item($u, 'firstaid'); item($u, 'cpr'); echo ""; echo ""; echo "
'.i18n($config['provincestate']).': '; emit_province_selector("province",$u['province'],"onchange=\"fieldChanged()\""); if(in_array('province', $required)) echo REQUIREDFIELD; echo '
'.i18n('Gender').': '; echo ""; if(in_array('sex', $required)) echo REQUIREDFIELD; echo '

"; /* Committee specific fields */ if(in_array('committee', $u['types'])) { echo ""; echo "\n"; echo ""; echo ""; } echo '
".i18n("Email (Private)").":
".i18n("Display Emails").":"; if($u['displayemail']=="no") $checked="checked=\"checked\""; else $checked=""; echo "".i18n("No"); echo "     "; if($u['displayemail']=="yes") $checked="checked=\"checked\""; else $checked=""; echo "".i18n("Yes"); if(committee_auth_has_access("super")) { /* If the user is a committee member, only print these fields * if the editer has super access */ echo "

".i18n("Access Controls").":"; $ch = ($u['access_admin']=="yes") ? 'checked="checked"' : ''; echo " ".i18n("Administration")."
"; $ch = ($u['access_config']=="yes") ? 'checked="checked"' : ''; echo " ".i18n("Configuration")."
"; $ch = ($u['access_super']=="yes") ? 'checked="checked"' : ''; echo " ".i18n("Superuser")."
"; echo "
'; } echo "\n"; echo "
"; echo "
"; if($_SESSION['embed'] != true) { send_footer(); } ?>