2009-09-09 00:26:12 +00:00
|
|
|
<?
|
2025-01-29 03:30:48 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* This file is part of the Science-ation project
|
|
|
|
* Science-ation Website: https://science-ation.ca
|
|
|
|
*
|
|
|
|
* This file was part of the 'Science Fair In A Box' project
|
|
|
|
*
|
|
|
|
*
|
|
|
|
* Copyright (C) 2005 Sci-Tech Ontario Inc <info@scitechontario.org>
|
|
|
|
* Copyright (C) 2005 James Grant <james@lightbox.org>
|
|
|
|
* Copyright (C) 2024 AlgoLibre Inc. <science-ation@algolibre.io>
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
2009-09-09 00:26:12 +00:00
|
|
|
?>
|
|
|
|
<?
|
2025-01-29 03:30:48 +00:00
|
|
|
require_once ('../common.inc.php');
|
|
|
|
require_once ('../user.inc.php');
|
|
|
|
user_auth_required('committee', 'admin');
|
|
|
|
|
|
|
|
$tabs = array(
|
|
|
|
'fairinfo' => array(
|
|
|
|
'label' => 'Fair Information',
|
|
|
|
'types' => array('fair'),
|
|
|
|
'file' => '../fair_info.php',
|
|
|
|
'enabled' => true,
|
|
|
|
),
|
|
|
|
'fairstatsgathering' => array(
|
|
|
|
'label' => 'Fair Stats Gathering',
|
|
|
|
'types' => array('fair'),
|
|
|
|
'file' => 'fair_stats_select.php',
|
|
|
|
'enabled' => true,
|
|
|
|
),
|
|
|
|
'personal' => array(
|
|
|
|
'label' => 'Personal',
|
|
|
|
'types' => array('student', 'judge', 'committee', 'volunteer', 'sponsor', 'fair'),
|
|
|
|
'file' => '../user_personal.php',
|
|
|
|
'enabled' => true
|
|
|
|
),
|
|
|
|
'roles' => array(
|
|
|
|
'label' => 'Roles/Account',
|
|
|
|
'types' => array('student', 'judge', 'committee', 'volunteer', 'sponsor', 'fair'),
|
|
|
|
'file' => '../user_activate.php',
|
|
|
|
'enabled' => true
|
|
|
|
),
|
|
|
|
'judgeother' => array(
|
|
|
|
'label' => 'Judge Other',
|
|
|
|
'types' => array('judge'),
|
|
|
|
'file' => '../judge_other.php',
|
|
|
|
'enabled' => true
|
|
|
|
),
|
|
|
|
'judgeexpertise' => array(
|
|
|
|
'label' => 'Expertise',
|
|
|
|
'types' => array('judge'),
|
|
|
|
'file' => '../judge_expertise.php',
|
|
|
|
'enabled' => true
|
|
|
|
),
|
|
|
|
'judgeavailability' => array(
|
|
|
|
'label' => 'Time Avail.',
|
|
|
|
'types' => array('judge'),
|
|
|
|
'file' => '../judge_availability.php',
|
|
|
|
'enabled' => $config['judges_availability_enable'] == 'yes' ? true : false
|
|
|
|
),
|
|
|
|
'judgesa' => array(
|
|
|
|
'label' => 'Special Awards',
|
|
|
|
'types' => array('judge'),
|
|
|
|
'file' => '../judge_special_awards.php',
|
|
|
|
'enabled' => true,
|
|
|
|
),
|
|
|
|
'volunteerpos' => array(
|
|
|
|
'label' => 'Volunteer Positions',
|
|
|
|
'types' => array('volunteer'),
|
|
|
|
'file' => '../volunteer_position.php',
|
|
|
|
'enabled' => true,
|
|
|
|
),
|
|
|
|
'fairstats' => array(
|
|
|
|
'label' => 'Fair Statistics and Information',
|
|
|
|
'types' => array('fair'),
|
|
|
|
'file' => '../fair_stats.php',
|
|
|
|
'enabled' => true,
|
|
|
|
),
|
|
|
|
);
|
|
|
|
|
|
|
|
if (array_key_exists('username', $_GET)) {
|
2009-09-09 00:26:12 +00:00
|
|
|
$username = $_GET['username'];
|
|
|
|
$type = $_GET['type'];
|
2024-12-08 02:42:00 -05:00
|
|
|
$un = $username;
|
2025-02-09 17:24:37 +00:00
|
|
|
$q = $pdo->prepare("SELECT id,MAX(year),deleted FROM users WHERE username=? GROUP BY uid");
|
|
|
|
$q->execute([$un]);
|
2025-01-29 03:30:48 +00:00
|
|
|
show_pdo_errors_if_any($pdo);
|
2009-09-09 00:26:12 +00:00
|
|
|
|
2025-01-29 03:30:48 +00:00
|
|
|
if ($q->rowCount()) {
|
2024-12-08 02:42:00 -05:00
|
|
|
$r = $q->fetch(PDO::FETCH_OBJ);
|
2025-01-29 03:30:48 +00:00
|
|
|
if ($r->deleted == 'no') {
|
2010-02-11 22:39:15 +00:00
|
|
|
/* Load the user */
|
|
|
|
$u = user_load_by_email($username);
|
2025-01-29 03:30:48 +00:00
|
|
|
if (in_array($type, $u['types'])) {
|
2010-02-11 22:39:15 +00:00
|
|
|
echo "Username already exists with role '$type'";
|
|
|
|
exit;
|
|
|
|
} else {
|
2025-01-29 03:30:48 +00:00
|
|
|
/*
|
|
|
|
* Add the role, user_create does a role_allowed check
|
|
|
|
* so we'll never add a judge/committee role to a student
|
|
|
|
*/
|
2010-02-11 22:39:15 +00:00
|
|
|
user_create($type, $username, $u);
|
|
|
|
}
|
2011-01-19 19:46:48 +00:00
|
|
|
} else {
|
2025-01-29 03:30:48 +00:00
|
|
|
// undelete them?
|
2025-02-09 17:24:37 +00:00
|
|
|
$stmt = $pdo->prepare("UPDATE users SET deleted='no' WHERE id=?");
|
|
|
|
$stmt->execute([$r->id]);
|
2025-01-29 03:30:48 +00:00
|
|
|
// then load them?
|
2011-01-19 19:46:48 +00:00
|
|
|
$u = user_load($r->id);
|
2009-09-09 00:26:12 +00:00
|
|
|
}
|
2010-02-11 22:39:15 +00:00
|
|
|
} else {
|
|
|
|
$u = user_create($type, $username);
|
|
|
|
$u['email'] = $username;
|
2009-09-09 00:26:12 +00:00
|
|
|
}
|
|
|
|
user_save($u);
|
|
|
|
$id = $u['id'];
|
|
|
|
} else {
|
|
|
|
$id = $_GET['id'];
|
|
|
|
}
|
|
|
|
|
|
|
|
$u = user_load($id);
|
|
|
|
|
2024-12-19 22:29:06 -05:00
|
|
|
$selected = get_value_from_array($_GET, 'tab');
|
2025-01-29 03:30:48 +00:00
|
|
|
if (!array_key_exists($selected, $tabs)) {
|
|
|
|
if (in_array('fair', $u['types']))
|
2009-09-09 00:26:12 +00:00
|
|
|
$selected = 'fairinfo';
|
2025-01-29 03:30:48 +00:00
|
|
|
else
|
2009-09-09 00:26:12 +00:00
|
|
|
$selected = 'personal';
|
|
|
|
}
|
|
|
|
|
2025-01-29 03:30:48 +00:00
|
|
|
if (get_value_from_array($_GET, 'sub') == 1) {
|
2009-09-11 06:01:01 +00:00
|
|
|
$_SESSION['embed'] = true;
|
|
|
|
$_SESSION['embed_submit_url'] = "{$_SERVER['PHP_SELF']}?id=$id&tab=$selected";
|
|
|
|
$_SESSION['embed_edit_id'] = $id;
|
|
|
|
$t = $tabs[$selected];
|
2025-01-29 03:30:48 +00:00
|
|
|
include ("{$t['file']}");
|
2009-09-11 06:01:01 +00:00
|
|
|
|
|
|
|
unset($_SESSION['embed']);
|
|
|
|
unset($_SESSION['embed_edit_id']);
|
|
|
|
unset($_SESSION['embed_submit_url']);
|
|
|
|
exit;
|
|
|
|
}
|
|
|
|
|
2025-01-29 03:30:48 +00:00
|
|
|
send_popup_header(i18n('User Editor') . ": {$u['name']}");
|
2009-09-11 06:01:01 +00:00
|
|
|
|
2009-11-06 07:32:51 +00:00
|
|
|
/* Setup tabs */
|
2009-09-11 06:01:01 +00:00
|
|
|
echo '<div id="tabs">';
|
|
|
|
echo '<ul>';
|
2009-11-06 07:32:51 +00:00
|
|
|
$index = 0;
|
|
|
|
$selected_index = 0;
|
2025-01-29 03:30:48 +00:00
|
|
|
foreach ($tabs as $k => $t) {
|
2009-09-09 00:26:12 +00:00
|
|
|
/* Make sure the tab is enabled */
|
2025-01-29 03:30:48 +00:00
|
|
|
if ($t['enabled'] == false)
|
|
|
|
continue;
|
2009-09-09 00:26:12 +00:00
|
|
|
/* Make sure the user has the right type to see the tab */
|
|
|
|
$i = array_intersect($t['types'], $u['types']);
|
2025-01-29 03:30:48 +00:00
|
|
|
if (count($i) == 0)
|
|
|
|
continue;
|
2009-11-06 07:32:51 +00:00
|
|
|
|
2025-01-29 03:30:48 +00:00
|
|
|
if ($k == $selected)
|
|
|
|
$selected_index = $index;
|
2009-11-06 07:32:51 +00:00
|
|
|
$index++;
|
|
|
|
|
2009-09-09 00:26:12 +00:00
|
|
|
/* Show the tab */
|
2009-09-11 06:01:01 +00:00
|
|
|
$href = "{$_SERVER['PHP_SELF']}?id=$id&tab=$k&sub=1";
|
2025-01-29 03:30:48 +00:00
|
|
|
echo "<li><a href=\"$href\"><span>" . i18n($t['label']) . '</span></a></li>';
|
2009-09-09 00:26:12 +00:00
|
|
|
}
|
|
|
|
echo '</ul>';
|
|
|
|
|
2009-11-06 07:32:51 +00:00
|
|
|
?>
|
|
|
|
<script type="text/javascript">
|
|
|
|
|
|
|
|
$(document).ready(function() {
|
|
|
|
$("#tabs").tabs({
|
2025-01-29 03:30:48 +00:00
|
|
|
selected: <?= $selected_index ?>
|
2009-11-06 07:32:51 +00:00
|
|
|
});
|
|
|
|
window.focus();
|
|
|
|
});
|
|
|
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<?
|
2009-09-09 00:26:12 +00:00
|
|
|
|
2025-01-29 03:30:48 +00:00
|
|
|
$icon_path = $config['SFIABDIRECTORY'] . '/images/16/';
|
2009-09-09 00:26:12 +00:00
|
|
|
$icon_exitension = $config['icon_extension'];
|
|
|
|
|
2025-01-29 03:30:48 +00:00
|
|
|
// send_popup_footer();
|
2009-09-09 00:26:12 +00:00
|
|
|
?>
|