forked from science-ation/science-ation
Fix rolestasks saving of the level
for each item
Fix tableeditor css to only modify anything in the tableeditor/tableview classes Fix saving language for volunteers Fix error message for saving phone numbers on organization and personal Fix schoolfeedback and schoolinfo pages Update school select tab, better html and school options list Fix css for tertiary menu to show difference between selected and non-selected
This commit is contained in:
parent
01d70abf74
commit
ba793ac8e0
@ -151,9 +151,9 @@ if(isset($_SESSION['roles']) && $_SESSION['username']) {
|
||||
<form method="post" action="user_login.php">
|
||||
<input type="hidden" name="action" value="login" />
|
||||
<table><tr><td>
|
||||
<?=i18n("Username")?>:</td><td><input type="text" size="14" name="username" />
|
||||
<?=i18n("Username")?>:</td><td><input type="text" size="18" name="username" />
|
||||
</td></tr><tr><td>
|
||||
<?=i18n("Password")?>:</td><td><input type="password" size="14" name="password" />
|
||||
<?=i18n("Password")?>:</td><td><input type="password" size="18" name="password" />
|
||||
</td></tr>
|
||||
<tr><td style="text-align: center;" colspan="2">
|
||||
<a href="register.php"><?=i18n("Register")?></a>
|
||||
@ -288,7 +288,7 @@ if(array_key_exists('users_id', $_SESSION)) {
|
||||
</div>
|
||||
<div id="division-menu" class="clear">
|
||||
<?
|
||||
$q=mysql_query("SELECT * FROM rolestasks WHERE pid='{$_SESSION['nav']['primary']}' AND level=1 AND conferencetype='{$conference['type']}' ORDER By ord,task");
|
||||
$q=mysql_query("SELECT * FROM rolestasks WHERE pid='{$_SESSION['nav']['primary']}' AND conferencetype='{$conference['type']}' ORDER By ord,task");
|
||||
echo "<ul class=\"secondarynav\">";
|
||||
$cl="";
|
||||
while($r=mysql_fetch_object($q)) {
|
||||
@ -318,10 +318,10 @@ if(array_key_exists('users_id', $_SESSION)) {
|
||||
$topicMenuStyle = 'style="display:none;"';
|
||||
}
|
||||
?>
|
||||
<div id="topic-menu" <?=$topicMenuStyle?>>
|
||||
<div id="topic-menu" class="clear" <?=$topicMenuStyle?>>
|
||||
<?
|
||||
$q=mysql_query("SELECT * FROM rolestasks WHERE pid='{$_SESSION['nav']['secondary']}' AND level=2 AND conferencetype='{$conference['type']}' ORDER By ord,task");
|
||||
echo "<ul class=\"topic-menu sfiab-menu\">";
|
||||
$q=mysql_query("SELECT * FROM rolestasks WHERE pid='{$_SESSION['nav']['secondary']}' AND conferencetype='{$conference['type']}' ORDER By ord,task");
|
||||
echo "<ul class=\"tertiarynav\">";
|
||||
while($r=mysql_fetch_object($q)) {
|
||||
$cl="class=\"";
|
||||
if($r->link)
|
||||
|
@ -2,52 +2,38 @@
|
||||
require_once('common.inc.php');
|
||||
require_once('user.inc.php');
|
||||
|
||||
user_auth_required("teacher");
|
||||
$schoolid=user_field_required("schools_id","user_edit.php?tab=school");
|
||||
|
||||
if($_SESSION['schoolid'] && $_SESSION['schoolaccesscode'])
|
||||
{
|
||||
$title = i18n("Feedback / Questions");
|
||||
send_header($title, array("School Home" => "schoolaccess.php"));
|
||||
send_header("Feedback / Questions");
|
||||
|
||||
// load the school info
|
||||
$q=mysql_query("SELECT * FROM schools WHERE id='".$_SESSION['schoolid']."' AND accesscode='".$_SESSION['schoolaccesscode']."' AND year='".$config['FAIRYEAR']."'");
|
||||
echo mysql_error();
|
||||
$school=mysql_fetch_object($q);
|
||||
// load the school info
|
||||
$q=mysql_query("SELECT * FROM schools WHERE id='$schoolid'");
|
||||
echo mysql_error();
|
||||
$school=mysql_fetch_object($q);
|
||||
|
||||
if($school->sciencehead_uid > 0)
|
||||
$sh = user_load_by_uid($school->sciencehead_uid);
|
||||
else
|
||||
$sh = array();
|
||||
$sh_email = ($sh['email'] != '' && $sh['email'][0] != '*') ? $sh['email'] : '';
|
||||
|
||||
// send the e-mail if we're receiving a post
|
||||
if(array_key_exists('feedbacktext', $_POST)){
|
||||
$body="";
|
||||
$body.=date("r")."\n";
|
||||
$body.=$_SERVER['REMOTE_ADDR']." (".$_SERVER['REMOTE_HOST'].")\n";
|
||||
$body.="School ID: $school->id\n";
|
||||
$body.="School Name: $school->school\n";
|
||||
if($sh['name']) $body.="Science Teacher: {$sh['name']}\n";
|
||||
if($sh['phonework']) $body.="Science Teacher Phone: {$sh['phonework']}\n";
|
||||
if($sh_email) $body.="Science Teacher Email: $sh_email\n";
|
||||
$body.="\nFeedback:\n".stripslashes($_POST['feedbacktext'])."\n";
|
||||
$returnEmailAddress = $sh_email;
|
||||
mail($config['fairmanageremail'],"School Feedback",$body,"From: ". $returnEmailAddress."\nReply-To: ".$returnEmailAddress."\nReturn-Path: ".$returnEmailAddress);
|
||||
echo happy_("Your feedback has been sent");
|
||||
}
|
||||
|
||||
// draw the feedback form
|
||||
echo i18n("We are always welcome to any feedback (both positive and constructive criticism!), or any questions you may have. Please use the following form to communicate with the science fair committee!");
|
||||
if($sh_email != '') {
|
||||
echo "<form method=POST action=\"schoolfeedback.php\">";
|
||||
echo "<br><textarea name=feedbacktext rows=8 cols=60></textarea><br>";
|
||||
echo "<input type=submit value=\"Send Feedback\">";
|
||||
echo "</form>";
|
||||
}else{
|
||||
echo error("Feedback is disabled until a science teacher email address is entered above");
|
||||
}
|
||||
|
||||
send_footer();
|
||||
}else{
|
||||
header('Location: schoolaccess.php');
|
||||
// send the e-mail if we're receiving a post
|
||||
if(array_key_exists('feedbacktext', $_POST)){
|
||||
$body="";
|
||||
$body.=date("r")."\n";
|
||||
$body.=$_SERVER['REMOTE_ADDR']." (".$_SERVER['REMOTE_HOST'].")\n";
|
||||
$body.="School ID: $school->id\n";
|
||||
$body.="School Name: $school->school\n";
|
||||
if($sh['name']) $body.="Science Teacher: {$sh['name']}\n";
|
||||
if($sh['phonework']) $body.="Science Teacher Phone: {$sh['phonework']}\n";
|
||||
if($sh_email) $body.="Science Teacher Email: $sh_email\n";
|
||||
$body.="\nFeedback:\n".stripslashes($_POST['feedbacktext'])."\n";
|
||||
$returnEmailAddress = $sh_email;
|
||||
mail($config['fairmanageremail'],"School Feedback",$body,"From: ". $returnEmailAddress."\nReply-To: ".$returnEmailAddress."\nReturn-Path: ".$returnEmailAddress);
|
||||
echo happy_("Your feedback has been sent");
|
||||
}
|
||||
|
||||
// draw the feedback form
|
||||
echo i18n("We are always welcome to any feedback (both positive and constructive criticism!), or any questions you may have. Please use the following form to communicate with the science fair committee!");
|
||||
echo "<form method=\"post\" action=\"schoolfeedback.php\">";
|
||||
echo "<br><textarea name=\"feedbacktext\" rows=\"8\" cols=\"60\"></textarea><br />";
|
||||
echo "<input type=\"submit\" value=\"".i18n("Send Feedback")."\">";
|
||||
echo "</form>";
|
||||
|
||||
send_footer();
|
||||
?>
|
||||
|
102
schoolinfo.php
102
schoolinfo.php
@ -2,89 +2,37 @@
|
||||
require_once('common.inc.php');
|
||||
require_once('user.inc.php');
|
||||
|
||||
user_auth_required("teacher");
|
||||
$schoolid=user_field_required("schools_id","user_edit.php?tab=school");
|
||||
|
||||
if($_SESSION['schoolid'] && $_SESSION['schoolaccesscode'])
|
||||
{
|
||||
$title = i18n("School Information");
|
||||
send_header($title, array("School Home" => "schoolaccess.php"));
|
||||
send_header("School Details");
|
||||
|
||||
$q=mysql_query("SELECT * FROM schools WHERE id='".$_SESSION['schoolid']."' AND accesscode='".$_SESSION['schoolaccesscode']."' AND year='".$config['FAIRYEAR']."'");
|
||||
echo mysql_error();
|
||||
if($_POST['action']=="save") {
|
||||
// load the school info so we know which one we're saving
|
||||
$q=mysql_query("SELECT * FROM schools WHERE id='$schoolid'");
|
||||
$school=mysql_fetch_object($q);
|
||||
|
||||
if($school->sciencehead_uid > 0)
|
||||
$sh = user_load_by_uid($school->sciencehead_uid);
|
||||
mysql_query("UPDATE schools SET
|
||||
school='".mysql_real_escape_string($_POST['school'])."',
|
||||
address='".mysql_real_escape_string($_POST['address'])."',
|
||||
city='".mysql_real_escape_string($_POST['city'])."',
|
||||
province_code='".mysql_real_escape_string($_POST['province_code'])."',
|
||||
postalcode='".mysql_real_escape_string($_POST['postalcode'])."',
|
||||
phone='".mysql_real_escape_string($_POST['phone'])."',
|
||||
fax='".mysql_real_escape_string($_POST['fax'])."'
|
||||
WHERE id='$school->id'");
|
||||
|
||||
echo mysql_error();
|
||||
if(mysql_error())
|
||||
echo error(i18n("An Error occured trying to save the school information"));
|
||||
else
|
||||
$sh = array();
|
||||
$sh_email = ($sh['email'] != '' && $sh['email'][0] != '*') ? $sh['email'] : '';
|
||||
echo happy(i18n("School information successfully updated"));
|
||||
|
||||
|
||||
if($_POST['action']=="save") {
|
||||
/* Get info about science head */
|
||||
$sciencehead_update = '';
|
||||
list($first, $last) = explode(' ', $_POST['sciencehead'], 2);
|
||||
$em = $_POST['scienceheademail'];
|
||||
if($em == '' && ($first != '' || $last != '')) $em = "*$first$last".user_generate_password();
|
||||
|
||||
if($school->sciencehead_uid > 0)
|
||||
$sh = user_load_by_uid($school->sciencehead_uid);
|
||||
else if($em != '') {
|
||||
$sh = user_create('teacher', $em);
|
||||
$sciencehead_update = "sciencehead_uid='{$sh['uid']}',";
|
||||
} else
|
||||
$sh = false;
|
||||
|
||||
/* If we have a record, either delete it or update it */
|
||||
if(is_array($sh)) {
|
||||
if($em == '') {
|
||||
user_purge($sh, 'teacher');
|
||||
$sciencehead_update = 'sciencehead_uid=NULL,';
|
||||
} else {
|
||||
$sh['firstname'] = $first;
|
||||
$sh['lastname'] = $last;
|
||||
$sh['phonework'] = $_POST['scienceheadphone'];
|
||||
$sh['email'] = $em;
|
||||
$sh['username'] = $em;
|
||||
user_save($sh);
|
||||
}
|
||||
}
|
||||
|
||||
mysql_query("UPDATE schools SET
|
||||
school='".mysql_escape_string(stripslashes($_POST['school']))."',
|
||||
address='".mysql_escape_string(stripslashes($_POST['address']))."',
|
||||
city='".mysql_escape_string(stripslashes($_POST['city']))."',
|
||||
province_code='".mysql_escape_string(stripslashes($_POST['province_code']))."',
|
||||
postalcode='".mysql_escape_string(stripslashes($_POST['postalcode']))."',
|
||||
phone='".mysql_escape_string(stripslashes($_POST['phone']))."',
|
||||
$sciencehead_update
|
||||
fax='".mysql_escape_string(stripslashes($_POST['fax']))."'
|
||||
WHERE id='$school->id'");
|
||||
|
||||
echo mysql_error();
|
||||
if(mysql_error())
|
||||
echo error(i18n("An Error occured trying to save the school information"));
|
||||
else
|
||||
echo happy(i18n("School information successfully updated"));
|
||||
|
||||
}
|
||||
|
||||
}else{
|
||||
header('Location: schoolaccess.php');
|
||||
exit();
|
||||
}
|
||||
|
||||
// load the school info
|
||||
$q=mysql_query("SELECT * FROM schools WHERE id='".$_SESSION['schoolid']."' AND accesscode='".$_SESSION['schoolaccesscode']."' AND year='".$config['FAIRYEAR']."'");
|
||||
echo mysql_error();
|
||||
$q=mysql_query("SELECT * FROM schools WHERE id='$schoolid'");
|
||||
$school=mysql_fetch_object($q);
|
||||
|
||||
if($school->sciencehead_uid > 0)
|
||||
$sh = user_load_by_uid($school->sciencehead_uid);
|
||||
else
|
||||
$sh = array();
|
||||
$sh_email = ($sh['email'] != '' && $sh['email'][0] != '*') ? $sh['email'] : '';
|
||||
|
||||
|
||||
draw_page();
|
||||
send_footer();
|
||||
|
||||
@ -92,10 +40,10 @@ function draw_page(){
|
||||
global $config, $school, $sh_email, $sh_email, $sh;
|
||||
|
||||
echo i18n("Please make sure your school contact information is correct, make any necessary changes:");
|
||||
echo "<form method=POST action=\"schoolinfo.php\">";
|
||||
echo "<input type=hidden name=action value=\"save\">";
|
||||
echo "<form method=\"post\" action=\"schoolinfo.php\">";
|
||||
echo "<input type=\"hidden\" name=\"action\" value=\"save\">";
|
||||
echo "<table border=0 cellspacing=0 cellpadding=3>";
|
||||
echo "<tr><td>".i18n("School Name")."</td><td><input value=\"$school->school\" type=text name=school size=40></td></tr>";
|
||||
echo "<tr><td>".i18n("School Name")."</td><td><input value=\"$school->school\" type=\"text\" name=\"school\" size=\"40\"></td></tr>";
|
||||
// echo "<tr><td>Registration Password</td><td><input value=\"$school->registration_password\" type=text name=\"registration_password\" size=\"20\"></td></tr>";
|
||||
echo "<tr><td>".i18n("Address")."</td><td><input value=\"$school->address\" type=text name=address size=40></td></tr>";
|
||||
echo "<tr><td>".i18n("City")."</td><td><input value=\"$school->city\" type=text name=city size=30></td></tr>";
|
||||
@ -106,9 +54,11 @@ function draw_page(){
|
||||
echo "<tr><td>".i18n("Phone Number")."</td><td><input value=\"$school->phone\" type=text name=phone size=30></td></tr>";
|
||||
echo "<tr><td>".i18n("Fax Number")."</td><td><input value=\"$school->fax\" type=text name=fax size=30></td></tr>";
|
||||
|
||||
/*
|
||||
echo "<tr><td>".i18n("Science Teacher")."</td><td><input value=\"{$sh['name']}\" type=text name=sciencehead size=40></td></tr>";
|
||||
echo "<tr><td>".i18n("Science Teacher Email")."</td><td><input value=\"$sh_email\" type=text name=scienceheademail size=40></td></tr>";
|
||||
echo "<tr><td>".i18n("Science Teacher Phone")."<br><font size=1>(".i18n("If different than above").")</font></td><td><input value=\"{$sh['phonework']}\" type=text name=scienceheadphone size=30></td></tr>";
|
||||
*/
|
||||
echo "</table>";
|
||||
echo "<input type=submit value=\"".i18n("Save Changes")."\">";
|
||||
echo "</form>";
|
||||
|
@ -162,10 +162,12 @@ function doTree($id,$roleid,$ctype) {
|
||||
echo mysql_error();
|
||||
while($r=mysql_fetch_object($q)) {
|
||||
echo "comparing {$r->id} with {$dropid} \n";
|
||||
$droplevel=$r->level;
|
||||
|
||||
if($r->id==$dropid) {
|
||||
$ord++;
|
||||
mysql_query("UPDATE rolestasks SET pid='$droppid', ord='$ord' WHERE id='$dragid'");
|
||||
//dropped on something, so put it at the same level as what we dropped
|
||||
mysql_query("UPDATE rolestasks SET pid='$droppid', level='$droplevel', ord='$ord' WHERE id='$dragid'");
|
||||
echo "found!";
|
||||
$updated=true;
|
||||
}
|
||||
@ -175,7 +177,7 @@ function doTree($id,$roleid,$ctype) {
|
||||
if(!$updated) {
|
||||
echo "not found, putting it at the end";
|
||||
$ord++;
|
||||
mysql_query("UPDATE rolestasks SET pid='$droppid', ord='$ord' WHERE id='$dragid'");
|
||||
mysql_query("UPDATE rolestasks SET pid='$droppid', level='$droplevel', ord='$ord' WHERE id='$dragid'");
|
||||
}
|
||||
echo mysql_error();
|
||||
}
|
||||
|
@ -1,8 +1,8 @@
|
||||
select {
|
||||
.tableedit select {
|
||||
font-size: 1.0em;
|
||||
}
|
||||
|
||||
input {
|
||||
.tableedit input {
|
||||
font-size: 1.0em;
|
||||
}
|
||||
|
||||
|
@ -17,7 +17,8 @@ body
|
||||
input, textarea, select
|
||||
{
|
||||
font-family: Verdana, Arial, Sans-Serif;
|
||||
font-size: small;
|
||||
font-size: 0.85em;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
td {
|
||||
@ -67,7 +68,7 @@ table tr.odd {
|
||||
#header-conferences {
|
||||
border: 1px solid #777777;
|
||||
position: absolute;
|
||||
right: 210px;
|
||||
right: 240px;
|
||||
height: 70px;
|
||||
background-color: #DDDDDD;
|
||||
}
|
||||
@ -78,7 +79,11 @@ table tr.odd {
|
||||
position: absolute;
|
||||
right: 5px;
|
||||
height: 70px;
|
||||
width: 200px;
|
||||
width: 230px;
|
||||
}
|
||||
#header-login table {
|
||||
border-collapse: collapse;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
#primarymenu,
|
||||
@ -112,8 +117,34 @@ table tr.odd {
|
||||
float: left;
|
||||
margin-left: 0px;
|
||||
margin-right: 10px;
|
||||
padding-left: 3px;
|
||||
}
|
||||
|
||||
.topic-menu ul {
|
||||
margin-left: 0px;
|
||||
padding-left: 0px;
|
||||
|
||||
|
||||
}
|
||||
|
||||
.topic-menu li {
|
||||
margin-left: 0px;
|
||||
padding-left: 0px;
|
||||
}
|
||||
.topic-menu li.selected {
|
||||
color: red;
|
||||
}
|
||||
|
||||
.sfiab-menu {
|
||||
list-style-position: inside;
|
||||
list-style-type: none;
|
||||
}
|
||||
|
||||
.sfiab-menu .selected {
|
||||
color: red;
|
||||
}
|
||||
|
||||
|
||||
#main {
|
||||
background: #FFFFFF;
|
||||
padding: 3px;
|
||||
@ -275,18 +306,24 @@ ul.secondarynav li.secondarynav-selected a {
|
||||
}
|
||||
|
||||
ul.tertiarynav {
|
||||
font-size: 0.9em;
|
||||
list-style : none;
|
||||
padding: 0;
|
||||
|
||||
}
|
||||
ul.tertiarynav li a {
|
||||
|
||||
ul.tertiarynav li {
|
||||
display: block;
|
||||
margin-left: 5px;
|
||||
margin-top: 5px;
|
||||
}
|
||||
|
||||
.tertiarylinknav-selected a {
|
||||
li.link a {
|
||||
color: black;
|
||||
}
|
||||
|
||||
li.selected a {
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
|
||||
.aligncenter {
|
||||
width: 100%;
|
||||
text-align: center;
|
||||
|
16
user.inc.php
16
user.inc.php
@ -148,6 +148,7 @@ function user_load($users_id, $accounts_id = false)
|
||||
convenience variable, not not the email itself, for that, they need to access
|
||||
the account. */
|
||||
unset($u['email']);
|
||||
$should_be_arrays=array();
|
||||
|
||||
|
||||
foreach(array_keys($u['roles']) as $r) {
|
||||
@ -176,11 +177,7 @@ function user_load($users_id, $accounts_id = false)
|
||||
// $u['highest_psd'] = $u['highest_psd'];
|
||||
|
||||
/* Sanity check the arrays, make sure they are arrays */
|
||||
$should_be_arrays = array('cat_prefs','div_prefs',
|
||||
'divsub_prefs','languages');
|
||||
foreach($should_be_arrays as $k) {
|
||||
if(!is_array($u[$k])) $u[$k] = array();
|
||||
}
|
||||
$should_be_arrays = array('cat_prefs','div_prefs', 'divsub_prefs','languages');
|
||||
break;
|
||||
|
||||
case 'sponsor':
|
||||
@ -190,12 +187,19 @@ function user_load($users_id, $accounts_id = false)
|
||||
$u['sponsor']=mysql_fetch_assoc($q);
|
||||
}
|
||||
break;
|
||||
case 'volunteer':
|
||||
$u['languages'] = (strlen($u['languages']) > 0) ? unserialize($u['languages']) : array();
|
||||
$should_be_arrays = array('languages');
|
||||
break;
|
||||
|
||||
default:
|
||||
/* Nothing to do for all other roles */
|
||||
break;
|
||||
}
|
||||
}
|
||||
foreach($should_be_arrays as $k) {
|
||||
if(!is_array($u[$k])) $u[$k] = array();
|
||||
}
|
||||
|
||||
/* Do this assignment without recursion :) */
|
||||
unset($u['orig']);
|
||||
@ -286,6 +290,8 @@ function user_save(&$u)
|
||||
$fields_for_role['student'] = array('schools_id');
|
||||
$fields_for_role['fair'] = array('fairs_id');
|
||||
$fields_for_role['sponsor'] = array('sponsors_id','primary','position');
|
||||
$fields_for_role['teacher'] = array();
|
||||
$fields_for_role['volunteer'] = array('languages');
|
||||
|
||||
/* Merge fields as necessary, build a big list of fields to save */
|
||||
foreach($new_roles as $r) {
|
||||
|
@ -82,7 +82,7 @@ function user_edit_item(&$u, $label, $fname, $type='textbox', $data1=NULL, $data
|
||||
foreach($config['languages'] AS $l=>$ln) {
|
||||
$ch = (in_array($l,$u['languages'])) ? 'checked="checked"' : '';
|
||||
if($x) echo '<br />';
|
||||
echo "<input $ch type=\"checkbox\" name=\"$fname\" value=\"$l\" />$ln";
|
||||
echo "<label><input $ch type=\"checkbox\" name=\"$fname\" value=\"$l\" /> $ln</label>";
|
||||
$x=1;
|
||||
}
|
||||
echo "</span>";
|
||||
@ -95,7 +95,7 @@ function user_edit_item(&$u, $label, $fname, $type='textbox', $data1=NULL, $data
|
||||
foreach($data1 AS $key=>$txt) {
|
||||
$ch = (in_array($key,$data2)) ? 'checked="checked"' : '';
|
||||
if($x) echo '<br />';
|
||||
echo "<input $ch type=\"checkbox\" name=\"$fname\" value=\"$key\" />$txt";
|
||||
echo "<label><input $ch type=\"checkbox\" name=\"$fname\" value=\"$key\" /> $txt</label>";
|
||||
$x=1;
|
||||
}
|
||||
echo "</span>";
|
||||
|
@ -201,7 +201,7 @@ if(count($a) == 0) {
|
||||
}
|
||||
|
||||
|
||||
send_header(i18n("User Editor").": {$u['name']}");
|
||||
send_header($u['name']);
|
||||
|
||||
/* Setup tabs */
|
||||
echo '<div id="tabs">';
|
||||
|
@ -146,20 +146,13 @@ send_header("Main Page", array());
|
||||
</script>
|
||||
<?php
|
||||
// draw the main body of the page
|
||||
echo "<div><p>";
|
||||
|
||||
//only display the named greeting if we have their name
|
||||
echo i18n("Hello <strong>%1</strong>",array($_SESSION['name']));
|
||||
echo i18n("Hello %1",array($_SESSION['name']));
|
||||
|
||||
echo "<p>This is a placeholder for the main user page until all the specific user-role pages are removed. For now, here's what you can do: </p></div>";
|
||||
draw_roles();
|
||||
echo "<br />";
|
||||
echo i18n('Other Options and Things To Do').':<br />';
|
||||
echo '<ul>';
|
||||
echo '<li><a href="user_edit.php">'.i18n('Change Password').'</a> - '.i18n('Change your email, username, and password').'</li>';
|
||||
echo '<li>'.i18n('To logout, use the "Logout" link in the upper-right of the page').'</li>';
|
||||
echo '</ul>';
|
||||
|
||||
echo "<br />";
|
||||
draw_roles();
|
||||
send_footer();
|
||||
|
||||
|
||||
@ -186,7 +179,7 @@ function draw_roles(){
|
||||
echo '<div id="roles">';
|
||||
if(count($registered) > 0){
|
||||
$rowNumber = 0;
|
||||
echo "<h4>" . i18n("You are currently registered for the following roles") . ":</h4>";
|
||||
echo "<h3>" . i18n("You are currently registered for the following roles") . ":</h3>";
|
||||
echo '<form class="editor" id="rolesform">';
|
||||
echo "<table class=\"summarytable\" style=\"width:95%;margin-bottom:1em\">";
|
||||
foreach($registered as $role => $title){
|
||||
@ -225,7 +218,7 @@ function draw_roles(){
|
||||
}
|
||||
|
||||
if(count($available) > 0){
|
||||
echo "<h4>" . i18n("The following roles are available") . ":</h4>";
|
||||
echo "<h3>" . i18n("The following roles are available") . ":</h3>";
|
||||
$rowNumber = 0;
|
||||
echo "<table class=\"summarytable\" style=\"width:95%\">";
|
||||
foreach($available as $type => $title){
|
||||
|
@ -123,7 +123,7 @@ jQuery.validator.addMethod("phoneUS", function(phone_number, element) {
|
||||
phone_number = phone_number.replace(/\s+/g, "");
|
||||
return this.optional(element) || phone_number.length > 9 &&
|
||||
phone_number.match(/^[2-9]\d{2}-[2-9]\d{2}-\d{4}$/);
|
||||
}, "Please specify a valid phone number");
|
||||
}, "Please specify a valid phone number (NNN-NNN-NNNN)");
|
||||
|
||||
$(document).ready(function() {
|
||||
$("#orgform").validate({
|
||||
|
@ -236,7 +236,7 @@ jQuery.validator.addMethod("phoneUS", function(phone_number, element) {
|
||||
phone_number = phone_number.replace(/\s+/g, "");
|
||||
return this.optional(element) || phone_number.length > 9 &&
|
||||
phone_number.match(/^[2-9]\d{2}-[2-9]\d{2}-\d{4}$/);
|
||||
}, "Please specify a valid phone number");
|
||||
}, "Please specify a valid phone number (NNN-NNN-NNNN)");
|
||||
|
||||
$(document).ready(function() {
|
||||
$("#personalform").validate({
|
||||
|
@ -109,7 +109,7 @@ if($currentSchool){
|
||||
|
||||
// draw the form elements for changing the school
|
||||
echo "<table><tr><td>";
|
||||
echo "<strong>" . i18n("School") . ": </strong>";
|
||||
echo i18n("School").":";
|
||||
echo "</td><td>";
|
||||
|
||||
// build a select box for them to pick out a school
|
||||
@ -117,23 +117,23 @@ echo '<select id="schoolId">';
|
||||
$query = "SELECT MAX(id) AS id,school,city FROM schools GROUP BY school, city";
|
||||
$q = mysql_query($query);
|
||||
$prev="somethingthatdoesnotexist";
|
||||
echo "<option value=\"\">".i18n("Choose a school")."</option>\n";
|
||||
while($r=mysql_fetch_object($q)){
|
||||
if($r->school == $schoolData['school']){
|
||||
$selected = "SELECTED";
|
||||
$sel= "selected=\"selected\"";
|
||||
}else{
|
||||
$selected = "";
|
||||
$sel= "";
|
||||
}
|
||||
if($r->school==$prev)
|
||||
echo "<option $selected value=\"$r->id\">$r->school ($r->city)</option>\n";
|
||||
echo "<option $sel value=\"$r->id\">$r->school ($r->city)</option>\n";
|
||||
else
|
||||
echo "<option $selected value=\"$r->id\">$r->school</option>\n";
|
||||
echo "<option $sel value=\"$r->id\">$r->school</option>\n";
|
||||
$prev=$r->school;
|
||||
}
|
||||
echo "</select>";
|
||||
echo "</td></tr><tr><td>";
|
||||
|
||||
// and the rest of the form...
|
||||
echo "<strong>" . i18n("Access Code") . ": </strong>";
|
||||
echo "</td></tr>";
|
||||
echo "<tr><td>";
|
||||
echo i18n("Access Code") . ":";
|
||||
echo "</td><td>";
|
||||
echo '<input type="text" id="accessCode"></input><br/>';
|
||||
echo "</td></tr><tr><td colspan = 2>";
|
||||
|
Loading…
Reference in New Issue
Block a user