Resolved the issue of warnings showing up when trying to add a new shool under school management.
1
.gitignore
vendored
Normal file
@ -0,0 +1 @@
|
|||||||
|
data/
|
@ -45,20 +45,24 @@
|
|||||||
$webfirst=get_value_from_2d_array($_POST,'webfirst', $id)=="yes"?"yes":"no";
|
$webfirst=get_value_from_2d_array($_POST,'webfirst', $id)=="yes"?"yes":"no";
|
||||||
$weblast=get_value_from_2d_array($_POST, 'weblast', $id)=="yes"?"yes":"no";
|
$weblast=get_value_from_2d_array($_POST, 'weblast', $id)=="yes"?"yes":"no";
|
||||||
$webphoto=get_value_from_2d_array($_POST, 'webphoto', $id)=="yes"?"yes":"no";
|
$webphoto=get_value_from_2d_array($_POST, 'webphoto', $id)=="yes"?"yes":"no";
|
||||||
|
|
||||||
$stmt = $pdo->prepare("UPDATE students SET
|
$stmt = $pdo->prepare("UPDATE students SET
|
||||||
webfirst='$webfirst',
|
webfirst='$webfirst',
|
||||||
weblast='$weblast',
|
weblast='$weblast',
|
||||||
webphoto='$webphoto'
|
webphoto='$webphoto'
|
||||||
WHERE
|
WHERE
|
||||||
id='$id'");
|
id='$id'");
|
||||||
|
$stmt->execute();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if($numchanged==1)
|
|
||||||
|
if($numchanged==1) {
|
||||||
echo happy(i18n("1 student record updated"));
|
echo happy(i18n("1 student record updated"));
|
||||||
else if($numchanged>1)
|
} else if($numchanged>1) {
|
||||||
echo happy(i18n("%1 student records updated",array($numchanged)));
|
echo happy(i18n("%1 student records updated",array($numchanged)));
|
||||||
else
|
} else {
|
||||||
echo error(i18n("No student records where changed"));
|
echo error(i18n("No student records where changed"));
|
||||||
|
}
|
||||||
}
|
}
|
||||||
?>
|
?>
|
||||||
<script type="text/javascript">
|
<script type="text/javascript">
|
||||||
@ -71,28 +75,28 @@
|
|||||||
|
|
||||||
<?
|
<?
|
||||||
|
|
||||||
$sq=$pdo->prepare("SELECT students.firstname,
|
$sq=$pdo->prepare("SELECT students.firstname,
|
||||||
students.lastname,
|
students.lastname,
|
||||||
students.id,
|
students.id,
|
||||||
projects.projectnumber,
|
projects.projectnumber,
|
||||||
students.webfirst,
|
students.webfirst,
|
||||||
students.weblast,
|
students.weblast,
|
||||||
students.webphoto
|
students.webphoto
|
||||||
FROM
|
FROM
|
||||||
students,
|
students,
|
||||||
registrations,
|
registrations,
|
||||||
projects
|
projects
|
||||||
WHERE
|
WHERE
|
||||||
students.registrations_id=registrations.id
|
students.registrations_id=registrations.id
|
||||||
AND ( registrations.status = 'complete' OR registrations.status='paymentpending' )
|
AND ( registrations.status = 'complete' OR registrations.status='paymentpending' )
|
||||||
AND projects.registrations_id=registrations.id
|
AND projects.registrations_id=registrations.id
|
||||||
AND registrations.year='".$config['FAIRYEAR']."'
|
AND registrations.year='".$config['FAIRYEAR']."'
|
||||||
AND projects.year='".$config['FAIRYEAR']."'
|
AND projects.year='".$config['FAIRYEAR']."'
|
||||||
AND students.year='".$config['FAIRYEAR']."'
|
AND students.year='".$config['FAIRYEAR']."'
|
||||||
ORDER BY projectnumber
|
ORDER BY projectnumber
|
||||||
");
|
");
|
||||||
$sq->execute();
|
$sq->execute();
|
||||||
show_pdo_errors_if_any($pdo);
|
show_pdo_errors_if_any($pdo);
|
||||||
|
|
||||||
echo "<form method=\"post\" action=\"registration_webconsent.php\">";
|
echo "<form method=\"post\" action=\"registration_webconsent.php\">";
|
||||||
echo "<table class=\"tableview\">";
|
echo "<table class=\"tableview\">";
|
||||||
@ -121,5 +125,5 @@
|
|||||||
echo "<input type=\"submit\" value=\"".i18n("Save Changes")."\">";
|
echo "<input type=\"submit\" value=\"".i18n("Save Changes")."\">";
|
||||||
echo "</form>";
|
echo "</form>";
|
||||||
|
|
||||||
send_footer();
|
send_footer();
|
||||||
?>
|
?>
|
||||||
|
@ -54,10 +54,21 @@
|
|||||||
|
|
||||||
$principal_update = '';
|
$principal_update = '';
|
||||||
$sciencehead_update = '';
|
$sciencehead_update = '';
|
||||||
list($first, $last) = explode(' ', get_value_from_array($_POST,'principal') ?? '', 2);
|
|
||||||
|
// list($first, $last)
|
||||||
|
$split = explode(' ', get_value_from_array($_POST,'principal') ?? '', 2);
|
||||||
|
|
||||||
|
if(count($split) === 2){
|
||||||
|
list($first, $last) = $split;
|
||||||
|
}
|
||||||
|
else{
|
||||||
|
$first = $split[0];
|
||||||
|
$last = '';
|
||||||
|
}
|
||||||
|
|
||||||
/* Load existing entry if it exists, else make an entry if
|
/* Load existing entry if it exists, else make an entry if
|
||||||
* there is data, else, do nothing */
|
* there is data, else, do nothing */
|
||||||
if($i['principal_uid'] > 0)
|
if(get_value_from_array($i, 'principal_uid') > 0)
|
||||||
$pl = user_load_by_uid($i['principal_uid']);
|
$pl = user_load_by_uid($i['principal_uid']);
|
||||||
else if($first != '' && $last != '') {
|
else if($first != '' && $last != '') {
|
||||||
$pl = user_create('principal', "*$first$last".user_generate_password());
|
$pl = user_create('principal', "*$first$last".user_generate_password());
|
||||||
@ -84,7 +95,15 @@
|
|||||||
|
|
||||||
/* Get info about science head */
|
/* Get info about science head */
|
||||||
// FIX ME
|
// FIX ME
|
||||||
list($first, $last) = explode(' ', get_value_from_array($_POST, 'sciencehead', ''), 2);
|
$split = explode(' ', get_value_from_array($_POST,'principal') ?? '', 2);
|
||||||
|
|
||||||
|
if(count($split) === 2){
|
||||||
|
list($first, $last) = $split;
|
||||||
|
}
|
||||||
|
else{
|
||||||
|
$first = $split[0];
|
||||||
|
$last = '';
|
||||||
|
}
|
||||||
$em = get_value_from_array($_POST,'scienceheademail');
|
$em = get_value_from_array($_POST,'scienceheademail');
|
||||||
if($em == '' && ($first != '' || $last != '')) $em = "*$first$last".user_generate_password();
|
if($em == '' && ($first != '' || $last != '')) $em = "*$first$last".user_generate_password();
|
||||||
/* Load existing record, or create new if there's something
|
/* Load existing record, or create new if there's something
|
||||||
|
Before Width: | Height: | Size: 17 KiB After Width: | Height: | Size: 17 KiB |
Before Width: | Height: | Size: 50 KiB After Width: | Height: | Size: 50 KiB |
Before Width: | Height: | Size: 192 KiB After Width: | Height: | Size: 192 KiB |
BIN
data/logo.png
Before Width: | Height: | Size: 81 KiB After Width: | Height: | Size: 81 KiB |