Compare commits
4 Commits
cce7d93023
...
2a9fb88de4
Author | SHA1 | Date | |
---|---|---|---|
2a9fb88de4 | |||
7635670078 | |||
4c698b29e1 | |||
bc588358ee |
@ -32,11 +32,11 @@
|
||||
'Awards Main' => 'admin/awards.php')
|
||||
);
|
||||
|
||||
if($_GET['sponsors_id']) $sponsors_id=$_GET['sponsors_id'];
|
||||
else if($_POST['sponsors_id']) $sponsors_id=$_POST['sponsors_id'];
|
||||
if(get_value_from_array($_GET, 'sponsors_id')) $sponsors_id=$_GET['sponsors_id'];
|
||||
else if(get_value_from_array($_POST,'sponsors_id')) $sponsors_id=$_POST['sponsors_id'];
|
||||
|
||||
if($_GET['award_types_id']) $award_types_id=$_GET['award_types_id'];
|
||||
else if($_POST['award_types_id']) $award_types_id=$_POST['award_types_id'];
|
||||
if(get_value_from_array($_GET, 'award_types_id')) $award_types_id=$_GET['award_types_id'];
|
||||
else if(get_value_from_array($_POST, 'award_types_id')) $award_types_id=$_POST['award_types_id'];
|
||||
|
||||
//first, we can only do this if we dont have any type=divisional awards created yet
|
||||
|
||||
|
@ -229,8 +229,6 @@
|
||||
WHERE id='$id'");
|
||||
|
||||
$q->execute();
|
||||
// echo $q;
|
||||
// echo mysql_error();
|
||||
happy_("Prize saved");
|
||||
exit;
|
||||
|
||||
@ -307,8 +305,6 @@
|
||||
exit;
|
||||
|
||||
case 'feeder_save':
|
||||
// print_r($_POST);
|
||||
|
||||
$id = intval($_POST['award_awards_id']);
|
||||
$dl = is_array($_POST['feeder_dl']) ? $_POST['feeder_dl'] : array();
|
||||
$ul = is_array($_POST['feeder_ul']) ? $_POST['feeder_ul'] : array();
|
||||
|
@ -28,7 +28,8 @@ function award_delete($award_awards_id)
|
||||
|
||||
$q = $pdo->prepare("SELECT id FROM award_prizes WHERE award_awards_id='$award_awards_id'");
|
||||
$q->execute();
|
||||
while(($p = $q->fetch(PDO::FETCH_ASSOC))) {
|
||||
|
||||
while(($p = $q->fetch(PDO::FETCH_ASSOC))) {
|
||||
|
||||
$q = $pdo->prepare();
|
||||
$q->execute("DELETE FROM winners WHERE award_prizes_id='{$p['id']}'");
|
||||
@ -54,13 +55,11 @@ function award_delete($award_awards_id)
|
||||
|
||||
function award_prize_delete($award_prizes_id)
|
||||
{
|
||||
|
||||
$q = $pdo->prepare("DELETE FROM winners WHERE award_prizes_id='$award_prizes_id'");
|
||||
$q->execute();
|
||||
|
||||
$q = $pdo->prepare("DELETE FROM award_prizes WHERE id='$award_prizes_id'");
|
||||
$q->execute();
|
||||
|
||||
}
|
||||
|
||||
?>
|
||||
|
@ -77,7 +77,7 @@
|
||||
echo "<a href=\"cms.php\"><< Back to file list</a><br />\n";
|
||||
echo "<form method=\"post\" action=\"cms.php\">";
|
||||
echo "<input type=\"hidden\" name=\"action\" value=\"save\">\n";
|
||||
if($_GET['filename'])
|
||||
if(get_value_from_array($_GET,'filename', ''))
|
||||
echo "<input type=\"hidden\" name=\"filename\" value=\"".htmlspecialchars($_GET['filename'])."\">\n";
|
||||
else
|
||||
echo "Choose filename to create: /web/<input type=\"text\" name=\"filename\" size=\"15\">.html<hr />";
|
||||
@ -88,7 +88,7 @@
|
||||
echo "<table class=\"tableview\" width=\"100%\">";
|
||||
echo "<tr><th colspan=\"2\">";
|
||||
|
||||
$q = $pdo->prepare("SELECT * FROM cms WHERE filename='".$_GET['filename']."' AND lang='$lang' ORDER BY dt DESC LIMIT 1");
|
||||
$q = $pdo->prepare("SELECT * FROM cms WHERE filename='".get_value_from_array($_GET, 'filename', '')."' AND lang='$lang' ORDER BY dt DESC LIMIT 1");
|
||||
$q->execute();
|
||||
if($r=$q->fetch(PDO::FETCH_OBJ)) {
|
||||
if($r->dt=="0000-00-00 00:00:00" || !$r->dt) $dt="Never";
|
||||
@ -112,12 +112,12 @@
|
||||
echo "<b>$langname</b><br />"; // ".i18n("Last updated").": $dt<br />";
|
||||
}
|
||||
echo "</th></tr>\n";
|
||||
echo "<tr><td width=\"100\">".i18n("Page Title").":</td><td><input type=\"text\" name=\"title_$lang\" style=\"width: 99%;\" value=\"".htmlspecialchars($r->title)."\"></td></tr>\n";
|
||||
echo "<tr><td width=\"100\">".i18n("Page Title").":</td><td><input type=\"text\" name=\"title_$lang\" style=\"width: 99%;\" value=\"".htmlspecialchars(get_value_property_or_default($r, 'title', ''))."\"></td></tr>\n";
|
||||
echo "<tr><td width=\"100\">".i18n("Show Logo").":</td><td>";
|
||||
if($r->showlogo) $ch="checked=\"checked\""; else $ch="";
|
||||
if(get_value_property_or_default($r, 'showlogo')) $ch="checked=\"checked\""; else $ch="";
|
||||
echo "<input $ch type=\"radio\" name=\"showlogo_$lang\" value=\"1\"> ".i18n("Yes");
|
||||
echo " ";
|
||||
if(!$r->showlogo) $ch="checked=\"checked\""; else $ch="";
|
||||
if(!get_value_property_or_default($r, 'showlogo')) $ch="checked=\"checked\""; else $ch="";
|
||||
echo "<input $ch type=\"radio\" name=\"showlogo_$lang\" value=\"0\"> ".i18n("No");
|
||||
|
||||
echo "</td></tr>\n";
|
||||
@ -126,7 +126,7 @@
|
||||
|
||||
$oFCKeditor = new FCKeditor("text_$lang") ;
|
||||
$oFCKeditor->BasePath = "../fckeditor/";
|
||||
$oFCKeditor->Value = $r->text;
|
||||
$oFCKeditor->Value = get_value_property_or_default($r, 'text');
|
||||
$oFCKeditor->Width="100%";
|
||||
$oFCKeditor->Height=400;
|
||||
$oFCKeditor->Create() ;
|
||||
@ -138,13 +138,13 @@
|
||||
echo "</td><td width=\"130\" valign=\"top\">";
|
||||
echo "<table class=\"tableview\" width=\"130\">";
|
||||
|
||||
if($_GET['historylimit']) $historylimit=intval($_GET['historylimit']);
|
||||
if(get_value_from_array($_GET, 'historylimit','')) $historylimit=intval(get_value_from_array($_GET, 'historylimit', ''));
|
||||
else $historylimit=30;
|
||||
|
||||
echo "<tr><th>".i18n("File History")."</th></tr>\n";
|
||||
|
||||
|
||||
$q = $pdo->prepare("SELECT DISTINCT(dt) FROM cms WHERE filename='".$_GET['filename']."' ORDER BY dt DESC LIMIT $historylimit");
|
||||
$q = $pdo->prepare("SELECT DISTINCT(dt) FROM cms WHERE filename='".get_value_from_array($_GET, 'filename','')."' ORDER BY dt DESC LIMIT $historylimit");
|
||||
$q->execute();
|
||||
$first=true;
|
||||
if($q->rowCount()) {
|
||||
|
@ -142,7 +142,7 @@ if(get_value_from_array($_POST,'committees_id') && get_value_from_array($_POST,'
|
||||
|
||||
$titles=$_POST['title'];
|
||||
$pords = $_POST['order'];
|
||||
while($ids[$x]) {
|
||||
while(get_value_from_array($ids, $x)) {
|
||||
$cid = intval($ids[$x]);
|
||||
|
||||
$q = $pdo->prepare("UPDATE committees SET ord='".intval($ords[$x])."' WHERE id='$cid'");
|
||||
@ -342,36 +342,36 @@ if(get_value_from_array($_GET, 'unlinkmember') && get_value_from_array($_GET,'un
|
||||
}
|
||||
|
||||
echo "</td></tr>\n";
|
||||
echo $pdo->errorInfo();
|
||||
|
||||
while($r2=$q2->fetch(PDO::FETCH_OBJ)) {
|
||||
$u = user_load_by_uid($r2->uid);
|
||||
echo "<tr><td align=\"right\"> ";
|
||||
echo "<a title=\"Edit Member\" href=\"#\" onclick=\"openeditor({$u['id']})\"><img src=\"{$config['SFIABDIRECTORY']}/images/16/edit.{$config['icon_extension']}\" border=\"0\" alt=\"Edit\" /></a>";
|
||||
echo " ";
|
||||
echo "<a title=\"Unlink Member from Committee\" onclick=\"return confirmClick('Are you sure you want to unlink this member from this committee?');\" href=\"committees.php?unlinkmember={$u['uid']}&unlinkcommittee={$r->id}\"><img src=\"{$config['SFIABDIRECTORY']}/images/16/undo.{$config['icon_extension']}\" border=\"0\" alt=\"Unlink\" /></a>";
|
||||
echo "</td>";
|
||||
echo "<td valign=\"top\">";
|
||||
echo "<b>{$u['name']}</b>";
|
||||
echo "</td><td>";
|
||||
echo "<input type=\"text\" value=\"{$r2->title}\" name=\"title[{$r->id}][{$u['uid']}]\" size=\"15\">";
|
||||
echo "</td><td>";
|
||||
echo "<input type=\"text\" value=\"{$r2->ord}\" name=\"order[{$r->id}][{$u['uid']}]\" size=\"2\">";
|
||||
if ($u = user_load_by_uid($r2->uid)) {
|
||||
echo "<tr><td align=\"right\"> ";
|
||||
echo "<a title=\"Edit Member\" href=\"#\" onclick=\"openeditor({$u['id']})\"><img src=\"{$config['SFIABDIRECTORY']}/images/16/edit.{$config['icon_extension']}\" border=\"0\" alt=\"Edit\" /></a>";
|
||||
echo " ";
|
||||
echo "<a title=\"Unlink Member from Committee\" onclick=\"return confirmClick('Are you sure you want to unlink this member from this committee?');\" href=\"committees.php?unlinkmember={$u['uid']}&unlinkcommittee={$r->id}\"><img src=\"{$config['SFIABDIRECTORY']}/images/16/undo.{$config['icon_extension']}\" border=\"0\" alt=\"Unlink\" /></a>";
|
||||
echo "</td>";
|
||||
echo "<td valign=\"top\">";
|
||||
echo "<b>{$u['name']}</b>";
|
||||
echo "</td><td>";
|
||||
echo "<input type=\"text\" value=\"{$r2->title}\" name=\"title[{$r->id}][{$u['uid']}]\" size=\"15\">";
|
||||
echo "</td><td>";
|
||||
echo "<input type=\"text\" value=\"{$r2->ord}\" name=\"order[{$r->id}][{$u['uid']}]\" size=\"2\">";
|
||||
|
||||
echo "</td><td>";
|
||||
echo "</td><td>";
|
||||
|
||||
if(get_value_from_array($u, 'email')) {
|
||||
print_r($u["email"]);
|
||||
list($b,$a)=explode("@",$u['email']);
|
||||
echo "<script language=\"javascript\" type=\"text/javascript\">em('$b','$a')</script>";
|
||||
if(get_value_from_array($u, 'email')) {
|
||||
list($b,$a)=explode("@",$u['email']);
|
||||
echo "<script language=\"javascript\" type=\"text/javascript\">em('$b','$a')</script>";
|
||||
}
|
||||
|
||||
if(get_value_from_array($u, 'emailprivate')) {
|
||||
if($u['email']) echo " <b>/</b> ";
|
||||
list($b,$a)=explode("@",$u['emailprivate']);
|
||||
echo "<script language=\"javascript\" type=\"text/javascript\">em('$b','$a')</script>";
|
||||
}
|
||||
|
||||
echo "</td></tr>\n";
|
||||
}
|
||||
|
||||
if(get_value_from_array($u, 'emailprivate')) {
|
||||
if($u['email']) echo " <b>/</b> ";
|
||||
list($b,$a)=explode("@",$u['emailprivate']);
|
||||
echo "<script language=\"javascript\" type=\"text/javascript\">em('$b','$a')</script>";
|
||||
}
|
||||
|
||||
echo "</td></tr>\n";
|
||||
}
|
||||
echo "<tr><td colspan=\"2\"> </td></tr>\n";
|
||||
}
|
||||
|
@ -39,7 +39,7 @@
|
||||
* select: comm_dialog_choose_select(emails_id)
|
||||
* cancel: comm_dialog_choose_cancel() */
|
||||
|
||||
switch($_GET['action']) {
|
||||
switch(get_value_from_array($_GET, 'action')) {
|
||||
case 'dialog_choose_load':
|
||||
$emails_id = intval($_GET['emails_id']);
|
||||
$q = $pdo->prepare("SELECT * FROM emails WHERE id='$emails_id'");
|
||||
@ -677,7 +677,7 @@ case "email_get_list":
|
||||
}
|
||||
|
||||
|
||||
if($_GET['action']=="sendqueue") {
|
||||
if(get_value_from_array($_GET, 'action') == "sendqueue") {
|
||||
$fcid=intval($_POST['fundraising_campaigns_id']);
|
||||
$emailid=intval($_POST['emails_id']);
|
||||
|
||||
@ -785,13 +785,13 @@ case "email_get_list":
|
||||
</script>
|
||||
<?
|
||||
|
||||
if($_GET['action']=="delete" && $_GET['delete']) {
|
||||
if(get_value_from_array($_GET, 'action') == "delete" && get_value_from_array($_GET, 'delete')) {
|
||||
$q = $pdo->prepare("DELETE FROM emails WHERE id='".$_GET['delete']."' AND `type`='user'");
|
||||
$q->execute();
|
||||
echo happy("Email successfully deleted");
|
||||
}
|
||||
|
||||
if($_GET['action']=="send" && $_GET['send']) {
|
||||
if(get_value_from_array($_GET, 'action') == "send" && get_value_from_array($_GET, 'send')) {
|
||||
echo $pdo->errorInfo();
|
||||
|
||||
$q = $pdo->prepare("SELECT * FROM emails WHERE id='".$_GET['send']."'");
|
||||
@ -860,7 +860,7 @@ case "email_get_list":
|
||||
}
|
||||
//echo $str;
|
||||
}
|
||||
else if($_POST['action']=="reallysend" && $_POST['reallysend'] && $_POST['to']) {
|
||||
else if(get_value_from_array($_POST, 'action') == "reallysend" && get_value_from_array($_POST, 'reallysend') && get_value_from_array($_POST, 'to')) {
|
||||
$emailid=intval($_POST['reallysend']);
|
||||
$emailq=$pdo->prepare("SELECT * FROM emails WHERE id='$emailid'");
|
||||
$email=$emailq->fetch(PDO::FETCH_OBJ);
|
||||
@ -962,7 +962,7 @@ case "email_get_list":
|
||||
echo "<a href=\"communication_send_status.php\">Click here to see the sending progress</a>";
|
||||
|
||||
}
|
||||
else if($_GET['action']=="restartqueue")
|
||||
else if(get_value_from_array($_GET, 'action') == "restartqueue")
|
||||
{
|
||||
launchQueue();
|
||||
echo "<br />";
|
||||
|
@ -129,7 +129,7 @@ include "xml.inc.php";
|
||||
);
|
||||
echo "<br />";
|
||||
|
||||
if(count(get_value_from_array($_POST,'cwsfdivision', '')))
|
||||
if(count(get_value_from_array($_POST,'cwsfdivision', [])))
|
||||
{
|
||||
foreach($_POST['cwsfdivision'] AS $p=>$d)
|
||||
{
|
||||
@ -139,7 +139,7 @@ include "xml.inc.php";
|
||||
echo happy(i18n("CWSF Project Divisions saved"));
|
||||
}
|
||||
|
||||
if($_POST['action']=="register" && $_POST['xml'])
|
||||
if(get_value_from_array($_POST,'action')=="register" && $_POST['xml'])
|
||||
{
|
||||
if(function_exists('curl_init'))
|
||||
{
|
||||
|
@ -27,8 +27,9 @@ require_once("../user.inc.php");
|
||||
user_auth_required('committee', 'admin');
|
||||
require_once("fundraising_common.inc.php");
|
||||
|
||||
|
||||
global $pdo;
|
||||
switch(get_value_from_array($_GET, 'action')) {
|
||||
|
||||
case 'organizationinfo_load':
|
||||
$id=intval($_GET['id']);
|
||||
$q=$pdo->prepare("SELECT * FROM sponsors WHERE id='$id'");
|
||||
|
@ -44,7 +44,7 @@
|
||||
// echo "query=$query";
|
||||
$q=$pdo->prepare($query);
|
||||
$q->execute();
|
||||
$_POST['donortype'];
|
||||
get_value_from_array($_POST,'donortype');
|
||||
$thisyear=$config['FISCALYEAR'];
|
||||
$lastyear=$config['FISCALYEAR']-1;
|
||||
$rows=array();
|
||||
@ -66,7 +66,7 @@
|
||||
$rows[]=array("id"=>$r->id, "name"=>$r->organization, "thisyeartotal"=>$thisyeartotal, "lastyeartotal"=>$lastyeartotal, "change"=>$change);
|
||||
}
|
||||
$thisyearsort=array();
|
||||
if(!$_POST['order']) {
|
||||
if(!get_value_from_array($_POST, 'order')) {
|
||||
//if order is not given, lets order by donation amount this year
|
||||
foreach($rows AS $key=>$val) {
|
||||
$thisyearsort[$key]=$val['thisyeartotal'];
|
||||
@ -74,7 +74,7 @@
|
||||
array_multisort($thisyearsort,SORT_DESC,$rows);
|
||||
}
|
||||
|
||||
if($_POST['limit']) {
|
||||
if(get_value_from_array($_POST, 'limit')) {
|
||||
$limit=$_POST['limit'];
|
||||
}
|
||||
else {
|
||||
|
@ -88,8 +88,8 @@
|
||||
if(get_value_from_array($_GET,'year')) $year=intval(get_value_from_array($_GET, 'year'));
|
||||
else $year=$config['FAIRYEAR'];
|
||||
|
||||
if($_GET['id']) $fairs_id=intval($_GET['id']);
|
||||
else if($_POST['id']) $fairs_id=intval($_POST['id']);
|
||||
if(get_value_from_array($_GET, 'id')) $fairs_id=intval($_GET['id']);
|
||||
else if(get_value_from_array($_POST, 'id')) $fairs_id=intval($_POST['id']);
|
||||
else $fairs_id = -1;
|
||||
|
||||
if($fairs_id != -1) {
|
||||
@ -504,7 +504,7 @@ $q->execute();
|
||||
}
|
||||
$keys = array_keys($stats_data);
|
||||
foreach($keys as $k) {
|
||||
if($stats_data[$k]['manual'] == true) continue;
|
||||
if(isset($stats_data[$k]['manual']) && $stats_data[$k]['manual'] == true) continue;
|
||||
echo "<input type=\"hidden\" name=\"$k\" value=\"{$stats[$k]}\" />";
|
||||
}
|
||||
|
||||
|
@ -26,7 +26,7 @@
|
||||
user_auth_required('committee', 'admin');
|
||||
require("fundraising_common.inc.php");
|
||||
|
||||
switch($_GET['action']){
|
||||
switch(get_value_from_array($_GET, 'action')){
|
||||
case "campaigninfo_save":
|
||||
save_campaign_info();
|
||||
exit;
|
||||
|
@ -62,7 +62,7 @@
|
||||
}
|
||||
|
||||
|
||||
switch($_GET['gettab']) {
|
||||
switch(get_value_from_array($_GET, 'gettab')) {
|
||||
case "levels":
|
||||
$q=$pdo->prepare("SELECT * FROM fundraising_donor_levels WHERE fiscalyear='{$config['FISCALYEAR']}' ORDER BY max");
|
||||
$q->execute();
|
||||
@ -205,7 +205,7 @@
|
||||
break;
|
||||
}
|
||||
|
||||
switch($_GET['action']) {
|
||||
switch(get_value_from_array($_GET, 'action')) {
|
||||
case "level_save":
|
||||
$id=$_POST['id'];
|
||||
if(! ($_POST['level'] && $_POST['min'] && $_POST['max'])) {
|
||||
|
@ -1,9 +1,8 @@
|
||||
<?
|
||||
function getJudgingTeams()
|
||||
{
|
||||
global $config;
|
||||
global $pdo;
|
||||
$q=$pdo->prepare("SELECT judges_teams.id,
|
||||
global $config, $pdo;
|
||||
$q=$pdo->prepare("SELECT judges_teams.id,
|
||||
judges_teams.num,
|
||||
judges_teams.name
|
||||
FROM
|
||||
@ -11,8 +10,7 @@ function getJudgingTeams()
|
||||
WHERE
|
||||
judges_teams.year='".$config['FAIRYEAR']."'
|
||||
ORDER BY
|
||||
num,name
|
||||
");
|
||||
num,name");
|
||||
$q->execute();
|
||||
|
||||
$lastteamid=-1;
|
||||
@ -35,33 +33,34 @@ function getJudgingTeams()
|
||||
$tq->execute();
|
||||
$teams[$r->id]['timeslots'] = array();
|
||||
$teams[$r->id]['rounds'] = array();
|
||||
|
||||
while($ts = $tq->fetch(PDO::FETCH_ASSOC)) {
|
||||
$teams[$r->id]['timeslots'][] = $ts;
|
||||
$rounds[$ts['round_id']] = $ts['round_id'];
|
||||
}
|
||||
|
||||
foreach($rounds as $round_id) {
|
||||
$tq = $pdo->prepare("SELECT * FROM judges_timeslots WHERE id='{$round_id}'");
|
||||
$tq->execute();
|
||||
$teams[$r->id]['rounds'][] = $tq->fetch(PDO::FETCH_ASSOC);
|
||||
}
|
||||
|
||||
|
||||
//get the members for this team
|
||||
$mq=$pdo->prepare("SELECT
|
||||
users.id AS judges_id,
|
||||
users.firstname,
|
||||
users.lastname,
|
||||
judges_teams_link.captain
|
||||
|
||||
FROM
|
||||
users,
|
||||
judges_teams_link
|
||||
WHERE
|
||||
judges_teams_link.users_id=users.id AND
|
||||
judges_teams_link.judges_teams_id='$r->id'
|
||||
ORDER BY
|
||||
captain DESC,
|
||||
lastname,
|
||||
firstname");
|
||||
$mq = $pdo->prepare("SELECT
|
||||
users.id AS judges_id,
|
||||
users.firstname,
|
||||
users.lastname,
|
||||
judges_teams_link.captain
|
||||
FROM
|
||||
users,
|
||||
judges_teams_link
|
||||
WHERE
|
||||
judges_teams_link.users_id=users.id AND
|
||||
judges_teams_link.judges_teams_id='$r->id'
|
||||
ORDER BY
|
||||
captain DESC,
|
||||
lastname,
|
||||
firstname");
|
||||
$mq->execute();
|
||||
show_pdo_errors_if_any($pdo);
|
||||
|
||||
@ -255,7 +254,7 @@ function teamMemberToName($member)
|
||||
|
||||
function judges_load_all()
|
||||
{
|
||||
global $config;
|
||||
global $config, $pdo;
|
||||
|
||||
$ret = array();
|
||||
|
||||
|
@ -101,7 +101,7 @@ function newbuttonclicked(jdivs)
|
||||
|
||||
function get_all_divs()
|
||||
{
|
||||
global $config;
|
||||
global $config, $pdo;
|
||||
global $divshort, $div,$cat, $langr;
|
||||
global $divcat;
|
||||
|
||||
@ -170,7 +170,7 @@ function get_all_divs()
|
||||
$q->execute();
|
||||
|
||||
$r = $q->fetch(PDO::FETCH_OBJ);
|
||||
echo $pdo->errorInfo();
|
||||
show_pdo_errors_if_any($pdo);
|
||||
$c = $r->cnt;
|
||||
|
||||
$cdl[$id]['name'] = "$x $y ({$cdl[$id]['lang']}) ($c project".($c==1?'':'s').")";
|
||||
@ -180,7 +180,7 @@ function get_all_divs()
|
||||
return $cdl;
|
||||
}
|
||||
|
||||
if($_POST['action']=="add" && $_POST['jdiv_id'] && count($_POST['cdllist'])>0)
|
||||
if(get_value_from_array($_POST, 'action') == "add" && get_value_from_array($_POST, 'jdiv_id') && count(get_value_from_array($_POST, 'cdllist')) > 0)
|
||||
{
|
||||
foreach($_POST['cdllist'] AS $selectedcdl) {
|
||||
$q=$pdo->prepare("UPDATE judges_jdiv SET jdiv_id='{$_POST['jdiv_id']}' WHERE ".
|
||||
@ -190,18 +190,18 @@ function get_all_divs()
|
||||
echo happy(i18n("Judging Division(s) successfully added"));
|
||||
}
|
||||
|
||||
if($_GET['action']=="del" && $_GET['cdl_id']) {
|
||||
if(get_value_from_array($_GET, 'action') == "del" && get_value_from_array($_GET, 'cdl_id')) {
|
||||
$stmt = $pdo->prepare("UPDATE judges_jdiv SET jdiv_id=0 WHERE id='{$_GET['cdl_id']}'");
|
||||
$stmt->execute();
|
||||
}
|
||||
|
||||
if($_GET['action']=="empty" && $_GET['jdiv_id']) {
|
||||
if(get_value_from_array($_GET, 'action') == "empty" && get_value_from_array($_GET, 'jdiv_id')) {
|
||||
$stmt = $pdo->prepare("UPDATE judges_jdiv SET jdiv_id=0 WHERE jdiv_id='{$_GET['jdiv_id']}' ");
|
||||
$stmt->execute();
|
||||
echo happy(i18n("Emptied all divisions from Judging Division Group %1",array($_GET['jdiv_id'])));
|
||||
}
|
||||
|
||||
if($_GET['action']=="recreate") {
|
||||
if(get_value_from_array($_GET, 'action') == "recreate") {
|
||||
//just delete them all, they'll be recreated automagically
|
||||
$stmt = $pdo->prepare("TRUNCATE TABLE judges_jdiv");
|
||||
$stmt->execute();
|
||||
@ -216,7 +216,7 @@ function get_all_divs()
|
||||
|
||||
/* Count the divisions, or, use the posted variable so we can create new
|
||||
* and empty judging divisions */
|
||||
if($_POST['jdivs'] > 0) {
|
||||
if(get_value_from_array($_POST, 'jdivs') > 0) {
|
||||
$jdivs = $_POST['jdivs'];
|
||||
} else {
|
||||
$jdivs = 0;
|
||||
|
@ -46,7 +46,7 @@ ogram; see the file COPYING. If not, write to
|
||||
config_editor("Judge Scheduler", $config['FAIRYEAR'], "var", $_SERVER['PHP_SELF']);
|
||||
echo "<hr />";
|
||||
|
||||
if($_GET['action']=="reset")
|
||||
if(get_value_from_array($_GET, 'action') == "reset")
|
||||
{
|
||||
$stmt = $pdo->prepare("UPDATE config SET `val`='-1' WHERE `var`='judge_scheduler_percent' AND `year`=0");
|
||||
$stmt->execute();
|
||||
|
@ -1,8 +1,9 @@
|
||||
<?
|
||||
|
||||
|
||||
function judges_scheduler_check_timeslots()
|
||||
{
|
||||
global $config;
|
||||
global $config, $pdo;
|
||||
|
||||
$q=$pdo->prepare("SELECT * FROM judges_timeslots WHERE ".
|
||||
" year='".$config['FAIRYEAR']."'".
|
||||
@ -10,7 +11,7 @@ function judges_scheduler_check_timeslots()
|
||||
$q->execute();
|
||||
if($q->rowCount()) {
|
||||
$round=$q->fetch(PDO::FETCH_OBJ);
|
||||
$q=$stmt->prepare("SELECT * FROM judges_timeslots WHERE round_id='$round->id' AND type='timeslot'");
|
||||
$q=$pdo->prepare("SELECT * FROM judges_timeslots WHERE round_id='$round->id' AND type='timeslot'");
|
||||
$q->execute();
|
||||
return $q->rowCount();
|
||||
}
|
||||
@ -20,7 +21,7 @@ function judges_scheduler_check_timeslots()
|
||||
|
||||
function judges_scheduler_check_timeslots_sa()
|
||||
{
|
||||
global $config;
|
||||
global $config, $pdo;
|
||||
$rows = 0;
|
||||
|
||||
$q=$pdo->prepare("SELECT * FROM judges_timeslots WHERE ".
|
||||
@ -39,7 +40,7 @@ function judges_scheduler_check_timeslots_sa()
|
||||
|
||||
function judges_scheduler_check_awards()
|
||||
{
|
||||
global $config;
|
||||
global $config, $pdo;
|
||||
|
||||
$q=$pdo->prepare("SELECT * FROM projectdivisions WHERE year='".$config['FAIRYEAR']."' ORDER BY id");
|
||||
$q->execute();
|
||||
@ -92,7 +93,7 @@ function judges_scheduler_check_awards()
|
||||
AND award_awards.award_types_id='1'
|
||||
");
|
||||
$q->execute();
|
||||
echo $pdo->errorInfo();
|
||||
show_pdo_errors_if_any($pdo);
|
||||
if($q->rowCount()!=1) {
|
||||
$missing_awards[] = "{$cat[$c]} - {$div[$d]} (".i18n("%1 found",array($q->rowCount())).")";
|
||||
}
|
||||
@ -103,7 +104,7 @@ function judges_scheduler_check_awards()
|
||||
|
||||
function judges_scheduler_check_jdivs()
|
||||
{
|
||||
global $config;
|
||||
global $config, $pdo;
|
||||
|
||||
$q=$pdo->prepare("SELECT DISTINCT jdiv_id FROM judges_jdiv ");
|
||||
$q->execute();
|
||||
@ -115,10 +116,13 @@ function judges_scheduler_check_jdivs()
|
||||
|
||||
function judges_scheduler_check_judges()
|
||||
{
|
||||
global $config;
|
||||
global $config, $pdo;
|
||||
$ok = 1;
|
||||
|
||||
$jdiv = array();
|
||||
$projectlanguagetotal = array();
|
||||
$projecttotal = 0;
|
||||
|
||||
$q=$pdo->prepare("SELECT * FROM judges_jdiv ORDER BY jdiv_id");
|
||||
$q->execute();
|
||||
while($r=$q->fetch(PDO::FETCH_OBJ)) {
|
||||
@ -140,8 +144,10 @@ function judges_scheduler_check_judges()
|
||||
$qp->execute();
|
||||
$qr = $qp->fetch(PDO::FETCH_OBJ);
|
||||
|
||||
|
||||
$jdiv[$r->jdiv_id]['num_projects']['total'] += $qr->cnt;
|
||||
$jdiv[$r->jdiv_id]['num_projects'][$l] += $qr->cnt;
|
||||
|
||||
|
||||
$projectlanguagetotal[$l]+=$qr->cnt;
|
||||
$projecttotal+=$qr->cnt;
|
||||
|
@ -32,7 +32,7 @@
|
||||
if(get_value_from_array($_GET,'action')) $action=get_value_from_array($_GET,'action');
|
||||
if(get_value_from_array($_POST,'action')) $action=get_value_from_array($_POST,'action');
|
||||
|
||||
if($action=="delete" && $_GET['delete'])
|
||||
if($action == "delete" && get_value_from_array($_GET, 'delete'))
|
||||
{
|
||||
//ALSO DELETE: team members, timeslots, projects, awards
|
||||
|
||||
@ -419,8 +419,6 @@ function addclicked()
|
||||
}
|
||||
}
|
||||
|
||||
//print_r($teams);
|
||||
|
||||
echo "<table width=\"95%\">";
|
||||
echo "<tr><td>";
|
||||
$q=$pdo->prepare("SELECT COUNT(*) AS c FROM judges_teams WHERE autocreate_type_id!='1' AND year='".$config['FAIRYEAR']."'");
|
||||
|
@ -106,11 +106,11 @@ jQuery(document).ready(function(){
|
||||
</script>
|
||||
<?
|
||||
|
||||
if($_POST['action']=="add" && $_POST['team_num'] && count($_POST['judgelist'])>0) {
|
||||
if(get_value_from_array($_POST, 'action') == "add" && get_value_from_array($_POST, 'team_num') && count(get_value_from_array($_POST, 'judgelist'))>0) {
|
||||
//first check if this team exists.
|
||||
$q=$pdo->prepare("SELECT id,name FROM judges_teams WHERE num='".$_POST['team_num']."' AND year='".$config['FAIRYEAR']."'");
|
||||
$q->execute();
|
||||
if($q->rowCount();)
|
||||
if($q->rowCount())
|
||||
{
|
||||
$r=$q->fetch(PDO::FETCH_OBJ);
|
||||
$team_id=$r->id;
|
||||
@ -130,7 +130,7 @@ jQuery(document).ready(function(){
|
||||
|
||||
$q=$pdo->prepare("SELECT * FROM judges_teams_link WHERE users_id='$selectedjudge' AND judges_teams_id='$team_id'");
|
||||
$q->execute();
|
||||
if($q->rowCount();) {
|
||||
if($q->rowCount()) {
|
||||
echo notice(i18n("Judge (%1) already belongs to judging team: %2",array($selectedjudge,$team_name)));
|
||||
|
||||
}
|
||||
@ -152,7 +152,7 @@ jQuery(document).ready(function(){
|
||||
echo happy(i18n("%1 %2 added to team #%3 (%4)",array($added,$j,$_POST['team_num'],$team_name)));
|
||||
}
|
||||
|
||||
if($_GET['action']=="del" && $_GET['team_num'] && $_GET['team_id'] && $_GET['users_id'])
|
||||
if(get_value_from_array($_GET, 'action') == "del" && get_value_from_array($_GET, 'team_num') && get_value_from_array($_GET, 'team_id') && get_value_from_array($_GET, 'users_id'))
|
||||
{
|
||||
$stmt = $pdo->prepare("DELETE FROM judges_teams_link WHERE users_id='".$_GET['users_id']."' AND judges_teams_id='".$_GET['team_id']."' AND year='".$config['FAIRYEAR']."'");
|
||||
$stmt->execute();
|
||||
@ -161,7 +161,7 @@ jQuery(document).ready(function(){
|
||||
//if there is still members left in the team, make sure we have a captain still
|
||||
$q = $pdo->prepare("SELECT * FROM judges_teams_link WHERE judges_teams_id='".$_GET['team_id']."' AND year='".$config['FAIRYEAR']."'");
|
||||
$q->execute();
|
||||
if($q->rowCount();)
|
||||
if($q->rowCount())
|
||||
{
|
||||
//make sure the team still has a captain!
|
||||
//FIXME: this might best come from the "i am willing to be a team captain" question under the judges profile
|
||||
@ -191,14 +191,14 @@ jQuery(document).ready(function(){
|
||||
}
|
||||
}
|
||||
|
||||
if($_GET['action']=="empty" && $_GET['team_num'] && $_GET['team_id'])
|
||||
if(get_value_from_array($_GET, 'action') == "empty" && get_value_from_array($_GET, 'team_num') && get_value_from_array($_GET, 'team_id'))
|
||||
{
|
||||
$stmt = $pdo->prepare("DELETE FROM judges_teams_link WHERE judges_teams_id='".$_GET['team_id']."' AND year='".$config['FAIRYEAR']."'");
|
||||
$stmt->execute();
|
||||
echo happy(i18n("Emptied all judges from team #%1 (%2)",array($_GET['team_num'],$_GET['team_name'])));
|
||||
}
|
||||
|
||||
if($_POST['action']=="saveteamnames")
|
||||
if(get_value_from_array($_POST, 'action') == "saveteamnames")
|
||||
{
|
||||
if(count($_POST['team_names']))
|
||||
{
|
||||
@ -212,7 +212,7 @@ jQuery(document).ready(function(){
|
||||
|
||||
}
|
||||
|
||||
if($_GET['action']=="addcaptain")
|
||||
if(get_value_from_array($_GET, 'action') == "addcaptain")
|
||||
{
|
||||
|
||||
//teams can have as many captains as they want, so just add it.
|
||||
@ -221,12 +221,12 @@ jQuery(document).ready(function(){
|
||||
echo happy(i18n("Team captain assigned"));
|
||||
}
|
||||
|
||||
if($_GET['action']=="removecaptain")
|
||||
if(get_value_from_array($_GET, 'action') == "removecaptain")
|
||||
{
|
||||
//teams must always have at least one captain, so if we only have one, and we are trying to remove it, dont let them!
|
||||
$q=$pdo->prepare("SELECT * FROM judges_teams_link WHERE captain='yes' AND judges_teams_id='".$_GET['team_id']."'");
|
||||
$q->execute();
|
||||
if($q->rowCount();<2)
|
||||
if($q->rowCount() < 2)
|
||||
{
|
||||
echo error(i18n("A judge team must always have at least one captain"));
|
||||
}
|
||||
@ -238,7 +238,7 @@ jQuery(document).ready(function(){
|
||||
}
|
||||
}
|
||||
|
||||
if($_GET['action']=="autoassignspecial") {
|
||||
if(get_value_from_array($_GET, 'action') == "autoassignspecial") {
|
||||
|
||||
/* Load all the judges (judge_complete=yes, deleted=no, year=fairyear) */
|
||||
$judgelist = judges_load_all();
|
||||
@ -276,7 +276,7 @@ jQuery(document).ready(function(){
|
||||
//find the award id linked to a team
|
||||
$q=$pdo->prepare("SELECT * FROM judges_teams_awards_link WHERE award_awards_id='{$awardid}' AND year='{$config['FAIRYEAR']}'");
|
||||
$q->execute();
|
||||
if($q->rowCount();) {
|
||||
if($q->rowCount()) {
|
||||
while($r=$q->fetch(PDO::FETCH_OBJ)) {
|
||||
$stmt = $pdo->prepare("INSERT INTO judges_teams_link (users_id,judges_teams_id,captain,year) VALUES ('$jid','$r->judges_teams_id','yes','{$config['FAIRYEAR']}')");
|
||||
$stmt->execute();
|
||||
@ -298,7 +298,7 @@ jQuery(document).ready(function(){
|
||||
if(!$_SESSION['viewstate']['judges_teams_list_show'])
|
||||
$_SESSION['viewstate']['judges_teams_list_show']='unassigned';
|
||||
//now update the judges_teams_list_show viewstate
|
||||
if($_GET['judges_teams_list_show'])
|
||||
if(get_value_from_array($_GET, 'judges_teams_list_show'))
|
||||
$_SESSION['viewstate']['judges_teams_list_show']=$_GET['judges_teams_list_show'];
|
||||
|
||||
echo "<form name=\"judges\" method=\"post\" action=\"judges_teams_members.php\">";
|
||||
@ -354,7 +354,7 @@ jQuery(document).ready(function(){
|
||||
if($_SESSION['viewstate']['judges_teams_list_show']=='unassigned') {
|
||||
/* Remove all judges that have a link */
|
||||
foreach($judgelist as $j) {
|
||||
if(count($j['teams_links']) == 0) $jlist[] = $j['id'];
|
||||
if(count(get_value_from_array($j, 'teams_links', [])) == 0) $jlist[] = $j['id'];
|
||||
}
|
||||
} else {
|
||||
$jlist = array_keys($judgelist);
|
||||
@ -364,7 +364,7 @@ jQuery(document).ready(function(){
|
||||
echo i18n("Listing %1 judges",array(count($jlist)));
|
||||
echo "<br />";
|
||||
echo "</center>";
|
||||
echo $pdo->errorInfo();
|
||||
show_pdo_errors_if_any($pdo);
|
||||
echo "<select name=\"judgelist[]\" onchange=\"switchjudgeinfo()\" multiple=\"multiple\" style=\"width: 250px; height: 600px;\">";
|
||||
|
||||
foreach($jlist as $jid) {
|
||||
@ -406,7 +406,7 @@ jQuery(document).ready(function(){
|
||||
}
|
||||
echo "</td></tr>";
|
||||
|
||||
if(count($team['members'])) {
|
||||
if(count(get_value_from_array($team, 'members', []))) {
|
||||
foreach($team['members'] AS $member) {
|
||||
$j = &$judgelist[$member['id']];
|
||||
echo "<tr><td>";
|
||||
|
@ -233,16 +233,17 @@ if( ($action=="edit" || $action=="assign" ) && $edit)
|
||||
registrations
|
||||
WHERE
|
||||
projectnumber is not null
|
||||
" . getJudgingEligibilityCode(). " AND
|
||||
' . getJudgingEligibilityCode(). ' AND
|
||||
projects.registrations_id=registrations.id AND
|
||||
judges_teams_timeslots_projects_link.projects_id IS NULL AND
|
||||
projects.year='".$config['FAIRYEAR']."'
|
||||
ORDER BY
|
||||
projectnumber";
|
||||
}
|
||||
|
||||
$pq=$pdo->($querystr);
|
||||
$pq->execute();
|
||||
echo $pdo->errorInfo();
|
||||
show_pdo_errors_if_any($pdo);
|
||||
|
||||
$eligibleprojects=getProjectsEligibleOrNominatedForAwards($award_ids);
|
||||
// echo nl2br(print_r($eligibleprojects,true));
|
||||
|
@ -38,14 +38,14 @@
|
||||
$action = $_POST['action'];
|
||||
|
||||
|
||||
if($action == 'delete' && array_key_exists('delete', $_GET)) {
|
||||
if(get_value_from_array($_GET, 'action') && $action == 'delete') {
|
||||
$id = intval($_GET['delete']);
|
||||
$stmt = $pdo->prepare("DELETE FROM judges_teams_timeslots_link WHERE id='$id'");
|
||||
$stmt->execute();
|
||||
message_push(happy(i18n("Judging team timeslot successfully removed")));
|
||||
}
|
||||
|
||||
if($action == 'empty' && array_key_exists('empty',$_GET)) {
|
||||
if(array_key_exists('empty', $_GET) && $action == 'empty') {
|
||||
$id = intval($_GET['empty']);
|
||||
$stmt = $pdo->prepare("DELETE FROM judges_teams_timeslots_link WHERE judges_teams_id='$id'");
|
||||
$stmt->execute();
|
||||
@ -191,7 +191,7 @@ function checkinvert(what)
|
||||
echo "<td>";
|
||||
echo "<b>".$team['name']." (#".$team['num'].")</b><br />";
|
||||
$memberlist="";
|
||||
if(count($team['members']))
|
||||
if(count(get_value_from_array($team, 'members', [])))
|
||||
{
|
||||
foreach($team['members'] AS $member)
|
||||
{
|
||||
|
@ -258,7 +258,7 @@
|
||||
echo "</select>";
|
||||
|
||||
echo "<tr><td>".i18n("Name").":</td><td>";
|
||||
echo "<input type=\"textbox\" name=\"name\" value=\"{$r['name']}\" width=\"60\" /></td></tr>";
|
||||
echo "<input type=\"textbox\" name=\"name\" value=\"".get_value_from_array($r, 'name')."\" width=\"60\" /></td></tr>";
|
||||
|
||||
echo "<tr><td>".i18n("Date").":</td><td>";
|
||||
emit_date_selector("date",$r['date']);
|
||||
|
@ -33,7 +33,7 @@ $auth_type = user_auth_required(array('fair','committee'), 'admin');
|
||||
|
||||
//require_once('../register_participants.inc.php');
|
||||
|
||||
if($_GET['year']) $year=$_GET['year'];
|
||||
if(get_value_from_array($_GET, 'year')) $year=$_GET['year'];
|
||||
else $year=$config['FAIRYEAR'];
|
||||
|
||||
$q = $pdo->prepare("SELECT * FROM projectcategories WHERE year='$year' ORDER BY id");
|
||||
@ -45,10 +45,10 @@ while($r=$q->fetch(PDO::FETCH_OBJ))
|
||||
$q = $pdo->prepare("SELECT * FROM projectdivisions WHERE year='$year' ORDER BY id");
|
||||
$q->execute();
|
||||
|
||||
while($q->fetch(PDO::FETCH_OBJ))
|
||||
while($r=$q->fetch(PDO::FETCH_OBJ))
|
||||
$divs[$r->id]=$r->division;
|
||||
|
||||
$action=$_GET['action'];
|
||||
$action=get_value_from_array($_GET, 'action');
|
||||
switch($action) {
|
||||
case 'load_row':
|
||||
$id = intval($_GET['id']);
|
||||
|
@ -323,7 +323,7 @@ echo $pdo->errorInfo();
|
||||
echo "<font size=\"2\" color=\"red\">This button does not keep track of payments</font>";
|
||||
echo "</td></tr><tr><td>";
|
||||
echo "<form method=\"post\" action=\"registration_receivedforms.php\">";
|
||||
echo "<input type=\"hidden\" name=\"action\" value=\"recieve_all\" />";
|
||||
echo "<input type=\"hidden\" name=\"action\" value=\"receive_all\" />";
|
||||
echo "<input type=\"submit\" value=\"".i18n("Receive All")."\" onclick=\"return confirmClick('Are you sure you wish to mark all students as has having their $signatureformpermissionform received?')\" />";
|
||||
echo "</form>";
|
||||
echo "</tr></td>";
|
||||
@ -336,7 +336,7 @@ echo $pdo->errorInfo();
|
||||
}
|
||||
|
||||
|
||||
if ($_POST['action'] == 'recieve_all')
|
||||
if (get_value_from_array($_POST, 'action') == 'receive_all')
|
||||
{
|
||||
// Grab all projects that don't have project numbers. Status should therefor be open or new but not complete
|
||||
$query_noprojectnumber = $pdo->prepare("SELECT * FROM projects WHERE projectnumber IS NULL AND year =".$config['FAIRYEAR']."");
|
||||
|
@ -129,11 +129,13 @@ else $wherestatus="";
|
||||
while($r=$q->fetch(PDO::FETCH_OBJ))
|
||||
{
|
||||
$stats_totalprojects++;
|
||||
$stats_divisions[$r->projectdivisions_id]++;
|
||||
$stats_categories[$r->projectcategories_id]++;
|
||||
$stats_projects_catdiv[$r->projectcategories_id][$r->projectdivisions_id]++;
|
||||
$stats_projects_lang[$r->projectcategories_id][$r->projectdivisions_id][$r->language]++;
|
||||
$languages[$r->language]++;
|
||||
|
||||
$stats_divisions[$r->projectdivisions_id] = add_or_initialize($stats_divisions, $r->projectdivisions_id);
|
||||
$stats_categories[$r->projectcategories_id] = add_or_initialize($stats_categories, $r->projectcategories_id);
|
||||
$stats_projects_catdiv[$r->projectcategories_id][$r->projectdivisions_id] = add_or_initialize_multi_2($stats_projects_catdiv, $r->projectcategories_id, $r->projectdivisions_id);
|
||||
$stats_projects_lang[$r->projectcategories_id][$r->projectdivisions_id][$r->language] = add_or_initialize_multi_3($stats_projects_lang, $r->projectcategories_id, $r->projectdivisions_id, $r->language);
|
||||
|
||||
$languages[$r->language] = add_or_initialize($languages, $r->language);
|
||||
|
||||
switch($r->status)
|
||||
{
|
||||
@ -163,6 +165,7 @@ else $wherestatus="";
|
||||
$studnum=1;
|
||||
$schools="";
|
||||
$students="";
|
||||
$lastschoolid = -1;
|
||||
while($studentinfo=$sq->fetch(PDO::FETCH_OBJ))
|
||||
{
|
||||
$stats_totalstudents++;
|
||||
@ -173,7 +176,7 @@ else $wherestatus="";
|
||||
}
|
||||
//this really isnt right, its only taking the school from the last student in the project to count towards the school's project totals
|
||||
//but there's really no other way
|
||||
$stats_projects_schools[$r->projectcategories_id][$lastschoolid]++;
|
||||
$stats_projects_schools[$r->projectcategories_id][$lastschoolid] = add_or_initialize_multi_2($stats_projects_schools, $r->projectcategories_id, $lastschoolid);
|
||||
}
|
||||
|
||||
echo "<table style=\"margin-left: 50px;\">";
|
||||
@ -189,19 +192,23 @@ else $wherestatus="";
|
||||
foreach($divs AS $d=>$dn) {
|
||||
echo "<tr><td>$dn</td>";
|
||||
$tstud=0;
|
||||
$tstudcat = array();
|
||||
$tproj=0;
|
||||
$tprojcat = array();
|
||||
foreach($cats AS $c=>$cn)
|
||||
{
|
||||
echo "<td align=\"center\">";
|
||||
echo ($stats_students_catdiv[$c][$d]?$stats_students_catdiv[$c][$d]:0);
|
||||
|
||||
echo ($stats_students_catdiv[$c][$d] ?? 0);
|
||||
echo " ";
|
||||
echo ($stats_projects_catdiv[$c][$d]?$stats_projects_catdiv[$c][$d]:0);
|
||||
echo ($stats_projects_catdiv[$c][$d] ?? 0);
|
||||
echo "</td>";
|
||||
$tstud+=$stats_students_catdiv[$c][$d];
|
||||
$tproj+=$stats_projects_catdiv[$c][$d];
|
||||
|
||||
$tstudcat[$c]+=$stats_students_catdiv[$c][$d];
|
||||
$tprojcat[$c]+=$stats_projects_catdiv[$c][$d];
|
||||
$tstud+=$stats_students_catdiv[$c][$d] ?? 0;
|
||||
$tproj+=$stats_projects_catdiv[$c][$d] ?? 0;
|
||||
|
||||
$tstudcat[$c] = add_or_initialize($tstudcat, $c, $stats_students_catdiv[$c][$d] ?? 0);
|
||||
$tprojcat[$c] = add_or_initialize($tprojcat, $c, $stats_projects_catdiv[$c][$d] ?? 0);
|
||||
}
|
||||
echo "<td align=\"center\"><b>";
|
||||
echo ($tstud?$tstud:0);
|
||||
@ -293,11 +300,10 @@ else $wherestatus="";
|
||||
{
|
||||
foreach($languages AS $l=>$ln) {
|
||||
echo "<td align=\"center\">";
|
||||
echo ($stats_projects_lang[$c][$d][$l]?$stats_projects_lang[$c][$d][$l]:0);
|
||||
echo ($stats_projects_lang[$c][$d][$l] ?? 0);
|
||||
echo "</td>";
|
||||
$tproj[$l]+=$stats_projects_lang[$c][$d][$l];
|
||||
|
||||
$tprojcat[$c][$l]+=$stats_projects_lang[$c][$d][$l];
|
||||
$tproj[$l] = add_or_initialize($tproj, $l, $stats_projects_lang[$c][$d][$l] ?? 0);
|
||||
$tprojcat[$c][$l] = add_or_initialize_multi_2($tprojcat, $c, $l, $stats_projects_lang[$c][$d][$l] ?? 0);
|
||||
}
|
||||
}
|
||||
foreach($tproj AS $l=>$ln) {
|
||||
@ -314,7 +320,7 @@ else $wherestatus="";
|
||||
echo "<td align=\"center\"><b>";
|
||||
echo ($tprojcat[$c][$l]?$tprojcat[$c][$l]:0);
|
||||
echo "</b></td>";
|
||||
$tproj[$l]+=$tprojcat[$c][$l];
|
||||
$tproj[$l] = add_or_initialize($tproj, $l, $tprojcat[$c][$l] ?? 0);
|
||||
}
|
||||
}
|
||||
foreach($tproj AS $l=>$ln) {
|
||||
|
@ -34,7 +34,7 @@
|
||||
|
||||
echo "<br />";
|
||||
|
||||
if(is_array($_POST['changed']))
|
||||
if(get_value_from_array($_POST, 'changed'))
|
||||
{
|
||||
$numchanged=0;
|
||||
foreach($_POST['changed'] AS $id=>$val)
|
||||
@ -92,7 +92,7 @@
|
||||
ORDER BY projectnumber
|
||||
");
|
||||
$sq->execute();
|
||||
echo $pdo->errorInfo();
|
||||
show_pdo_errors_if_any($pdo);
|
||||
|
||||
echo "<form method=\"post\" action=\"registration_webconsent.php\">";
|
||||
echo "<table class=\"tableview\">";
|
||||
@ -103,6 +103,7 @@
|
||||
echo " <th>".i18n("Last")."</th>";
|
||||
echo " <th>".i18n("Photo")."</th>";
|
||||
echo "</tr></thead>";
|
||||
|
||||
while($r=$sq->fetch(PDO::FETCH_OBJ))
|
||||
{
|
||||
echo "<tr>";
|
||||
|
@ -437,13 +437,13 @@ foreach($report_stock as $n=>$v) {
|
||||
* ['option'][name] = value; */
|
||||
if(!in_array($f, $allow_options)) {
|
||||
// print("Type[$type] Field[$f] not allowed.\n");
|
||||
continue;
|
||||
break;
|
||||
}
|
||||
$report['option'][$f] = $a['value'];
|
||||
default:
|
||||
if(!in_array($f, $allow_fields)) {
|
||||
// print("Type[$type] Field[$f] not allowed.\n");
|
||||
continue;
|
||||
break;
|
||||
}
|
||||
/* Pull out all the data */
|
||||
$val = array();
|
||||
|
@ -32,7 +32,7 @@
|
||||
$option_keys = array('type','stock');
|
||||
|
||||
|
||||
switch($_GET['action']) {
|
||||
switch(get_value_from_array($_GET, 'action')) {
|
||||
case 'remove_report':
|
||||
$id = intval($_GET['id']);
|
||||
$stmt = $pdo->prepare("DELETE FROM reports_committee WHERE
|
||||
@ -42,7 +42,7 @@ case 'remove_report':
|
||||
exit;
|
||||
case 'reload':
|
||||
$edit_mode = true;
|
||||
$reports_id = intval($_POST['reports_id']);
|
||||
$reports_id = intval(get_value_from_array($_POST, 'reports_id'));
|
||||
exit;
|
||||
|
||||
case 'load_report':
|
||||
@ -260,7 +260,7 @@ $q->execute();
|
||||
if($last_category != $i->category) {
|
||||
/* New category */
|
||||
echo '<tr><td style="border:0px;" colspan="3" style="even"><h3>';
|
||||
if($edit_mode == true) echo i18n('Category').': ';
|
||||
if(get_value_or_default($edit_mode) == true) echo i18n('Category').': ';
|
||||
echo "{$i->category}</h3></td></tr>";
|
||||
$last_category = $i->category;
|
||||
}
|
||||
|
@ -12,14 +12,14 @@
|
||||
else if($_GET['awardtype']) $awardtype=" AND award_types.type='".$_GET['awardtype']."'";
|
||||
else $awardtype="";
|
||||
|
||||
if($_GET['show_unawarded_awards']=="on") $show_unawarded_awards="yes";
|
||||
if(get_value_from_array($_GET, 'show_unawarded_awards')=="on") $show_unawarded_awards="yes";
|
||||
else $show_unawarded_awards="no";
|
||||
|
||||
if($_GET['show_unawarded_prizes']=="on") $show_unawarded_prizes="yes";
|
||||
if(get_value_from_array($_GET, 'show_unawarded_prizes')=="on") $show_unawarded_prizes="yes";
|
||||
else $show_unawarded_prizes="no";
|
||||
|
||||
$show_pronunciation= ($_GET['show_pronunciation'] == 'on') ? TRUE : FALSE;
|
||||
$group_by_prize= ($_GET['group_by_prize'] == 'on') ? true : false;
|
||||
$show_pronunciation= get_value_from_array($_GET, 'show_pronunciation' == 'on') ? TRUE : FALSE;
|
||||
$group_by_prize= (get_value_from_array($_GET, 'group_by_prize') == 'on') ? true : false;
|
||||
|
||||
if(is_array($_GET['show_category'])) {
|
||||
$show_category = array();
|
||||
@ -35,7 +35,7 @@
|
||||
$and_categories = '1';
|
||||
}
|
||||
|
||||
$show_criteria = ($_GET['show_criteria']=='on') ? true : false;
|
||||
$show_criteria = (get_value_from_array($_GET, 'show_criteria')=='on') ? true : false;
|
||||
|
||||
$type=$_GET['type'];
|
||||
if(!$type) $type="pdf";
|
||||
|
@ -80,7 +80,7 @@
|
||||
{
|
||||
global $locs;
|
||||
$ret = array();
|
||||
if(!is_array($_POST[$f])) return array();
|
||||
if(!is_array(get_value_from_array($_POST, $f))) return array();
|
||||
$x = 0;
|
||||
foreach($_POST[$f] as $o=>$d) {
|
||||
if(is_array($d)) {
|
||||
@ -123,7 +123,7 @@
|
||||
function parse_options($f)
|
||||
{
|
||||
$ret = array();
|
||||
if(!is_array($_POST[$f])) return array();
|
||||
if(!is_array(get_value_from_array($_POST, $f))) return array();
|
||||
foreach($_POST[$f] as $c=>$v) {
|
||||
if(trim($c) == '') continue;
|
||||
$ret[$c] = stripslashes($v);
|
||||
@ -133,11 +133,11 @@
|
||||
|
||||
/* Decode the report */
|
||||
$report = array();
|
||||
$report['id'] = intval($_POST['id']);
|
||||
$report['name'] = stripslashes($_POST['name']);
|
||||
$report['creator'] = stripslashes($_POST['creator']);
|
||||
$report['desc'] = stripslashes($_POST['desc']);
|
||||
$report['type'] = stripslashes($_POST['type']);
|
||||
$report['id'] = intval(get_value_from_array($_POST, 'id', ''));
|
||||
$report['name'] = stripslashes(get_value_from_array($_POST, 'name', ''));
|
||||
$report['creator'] = stripslashes(get_value_from_array($_POST, 'creator', ''));
|
||||
$report['desc'] = stripslashes(get_value_from_array($_POST, 'desc', ''));
|
||||
$report['type'] = stripslashes(get_value_from_array($_POST, 'type', ''));
|
||||
$report['col'] = parse_fields('col');
|
||||
$report['group'] = parse_fields('group');
|
||||
$report['sort'] = parse_fields('sort');
|
||||
@ -148,10 +148,10 @@
|
||||
// print("<pre>");print_r($_POST);print("</pre>");
|
||||
// print("<pre>");print_r($report);print("</pre>");
|
||||
|
||||
$reloadaction = $_POST['reloadaction'];
|
||||
$loadaction = $_POST['loadaction'];
|
||||
$colaction = $_POST['colaction'];
|
||||
$repaction = $_POST['repaction'];
|
||||
$reloadaction = get_value_from_array($_POST, 'reloadaction', '');
|
||||
$loadaction = get_value_from_array($_POST, 'loadaction', '');
|
||||
$colaction = get_value_from_array($_POST, 'colaction', '');
|
||||
$repaction = get_value_from_array($_POST, 'repaction', '');
|
||||
|
||||
$repaction_save = $repaction;
|
||||
|
||||
@ -371,7 +371,7 @@ function createDataTCPDF(x,y,w,h,align,valign,fontname,fontstyle,fontsize,value)
|
||||
|
||||
/* ---- Setup ------ */
|
||||
|
||||
$n_columns = intval($_POST['ncolumns']);
|
||||
$n_columns = intval(get_value_from_array($_POST, 'ncolumns'));
|
||||
$n = count($report['col']) + 1;
|
||||
if($n > $n_columns) $n_columns = $n;
|
||||
if($colaction == 'add') $n_columns+=3;
|
||||
@ -461,9 +461,11 @@ $doCanvasSample = false;
|
||||
$doCanvasSampletcpdf = false;
|
||||
$l_w=$report_stock[$report['option']['stock']]['label_width'];
|
||||
$l_h=$report_stock[$report['option']['stock']]['label_height'];
|
||||
|
||||
|
||||
if($l_w && $l_h && $report['option']['type']=="label") {
|
||||
echo "<h4>Label Data Locations</h4>";
|
||||
|
||||
pdf_begin_page
|
||||
$doCanvasSample=true;
|
||||
$ratio=$l_h/$l_w;
|
||||
$canvaswidth=600;
|
||||
|
@ -112,7 +112,7 @@ $report_volunteers_fields = array(
|
||||
'name' => 'Fair -- Name',
|
||||
'header' => 'Fair Name',
|
||||
'width' => 3,
|
||||
'table' => "'".$config['fairname'])."'",
|
||||
'table' => "'".$config['fairname']."'"),
|
||||
|
||||
'static_text' => array (
|
||||
'name' => 'Static Text (useful for labels)',
|
||||
|
@ -197,6 +197,7 @@
|
||||
$q=$pdo->prepare("SELECT * FROM schools WHERE id='".get_value_from_array($_GET, 'edit', '')."'");
|
||||
$q->execute();
|
||||
$r=$q->fetch(PDO::FETCH_OBJ);
|
||||
print_r($r);
|
||||
}
|
||||
else if(get_value_from_array($_GET, 'action') == "add")
|
||||
{
|
||||
@ -211,14 +212,14 @@
|
||||
echo "<input type=\"hidden\" name=\"id\" value=\"".get_value_from_array($_GET,'edit', '')."\">\n";
|
||||
|
||||
echo "<table>\n";
|
||||
echo "<tr><td>".i18n("School Name")."</td><td><input type=\"text\" name=\"school\" value=\"".htmlspecialchars($r->school)."\" size=\"60\" maxlength=\"64\" /></td></tr>\n";
|
||||
|
||||
echo "<tr><td>".i18n("School Name")."</td><td><input type=\"text\" name=\"school\" value=\"".htmlspecialchars(get_value_or_default($r->school))."\" size=\"60\" maxlength=\"64\" /></td></tr>\n";
|
||||
echo "<tr><td>".i18n("School Language")."</td><td>";
|
||||
echo "<select name=\"schoollang\">";
|
||||
echo "<option value=\"\">".i18n("Choose")."</option>\n";
|
||||
foreach($config['languages'] AS $k=>$l)
|
||||
{
|
||||
if($r->schoollang==$k) $sel="selected=\"selected\""; else $sel="";
|
||||
echo "<option $sel value=\"$k\">".i18n($l)."</option>\n";
|
||||
echo "<option $sel value=\"$k\">".i18n($limportant_dates)."</option>\n";
|
||||
}
|
||||
echo "</select>";
|
||||
|
||||
@ -250,6 +251,7 @@
|
||||
else
|
||||
$pl = array();
|
||||
/* Don't show autogenerated emails */
|
||||
|
||||
$e = $pl['email'][0] == '*' ? '' : $pl['email'];
|
||||
echo "<tr><td>".i18n("Principal")."</td><td><input type=\"text\" name=\"principal\" value=\"".htmlspecialchars($pl['name'])."\" size=\"60\" maxlength=\"64\" /></td></tr>\n";
|
||||
echo "<tr><td>".i18n("Principal Email")."</td><td><input type=\"text\" name=\"principalemail\" value=\"".htmlspecialchars($e)."\" size=\"60\" maxlength=\"128\" /></td></tr>\n";
|
||||
@ -316,6 +318,7 @@
|
||||
"schools_management"
|
||||
);
|
||||
|
||||
global $notice;
|
||||
switch($notice) {
|
||||
case 'added':
|
||||
echo happy("School successfully added");
|
||||
|
@ -36,7 +36,7 @@
|
||||
|
||||
$showform=true;
|
||||
|
||||
if($_POST['action']=="import")
|
||||
if(get_value_from_array($_POST, 'action')=="import")
|
||||
{
|
||||
if(!$_FILES['schools']['error'] && $_FILES['schools']['size']>0)
|
||||
{
|
||||
|
@ -33,18 +33,20 @@
|
||||
);
|
||||
|
||||
//by default, we will edit the french translations
|
||||
if($_GET['translang']) $_SESSION['translang']=$_GET['translang'];
|
||||
if(get_value_from_array($_GET, 'translang')) $_SESSION['translang']=$_GET['translang'];
|
||||
|
||||
if(!$_SESSION['translang'])
|
||||
if(get_value_from_array(!$_SESSION, 'translang'))
|
||||
$_SESSION['translang']="fr";
|
||||
|
||||
$show = false;
|
||||
|
||||
if(get_value_from_array($_GET, 'show')) $show=$_GET['show'];
|
||||
else if(get_value_from_array($_POST, 'show')) $show=$_POST['show'];
|
||||
|
||||
if($_GET['show']) $show=$_GET['show'];
|
||||
else if($_POST['show']) $show=$_POST['show'];
|
||||
if(!$show) $show="missing";
|
||||
|
||||
|
||||
if($_POST['action']=="save") {
|
||||
if(get_value_from_array($_POST, 'action') == "save") {
|
||||
//first, delete anything thats supposed to eb deleted
|
||||
if(count($_POST['delete'])) {
|
||||
foreach($_POST['delete'] AS $del) {
|
||||
|
@ -122,7 +122,7 @@ echo $pdo->errorInfo();
|
||||
|
||||
$u = user_load($id);
|
||||
|
||||
$selected = $_GET['tab'];
|
||||
$selected = get_value_from_array($_GET, 'tab');
|
||||
if(!array_key_exists($selected, $tabs)) {
|
||||
if(in_array('fair', $u['types']) )
|
||||
$selected = 'fairinfo';
|
||||
@ -131,7 +131,7 @@ if(!array_key_exists($selected, $tabs)) {
|
||||
}
|
||||
|
||||
|
||||
if($_GET['sub'] == 1) {
|
||||
if(get_value_from_array($_GET, 'sub') == 1) {
|
||||
$_SESSION['embed'] = true;
|
||||
$_SESSION['embed_submit_url'] = "{$_SERVER['PHP_SELF']}?id=$id&tab=$selected";
|
||||
$_SESSION['embed_edit_id'] = $id;
|
||||
|
@ -149,7 +149,7 @@ function update (id)
|
||||
<?
|
||||
|
||||
// Begin updating user
|
||||
if($_GET['action']=='update') {
|
||||
if(get_value_from_array($_GET, 'action') == 'update') {
|
||||
$id = intval($_GET['id']);
|
||||
|
||||
//if no id print error
|
||||
@ -199,7 +199,7 @@ function update (id)
|
||||
echo "<div class=\"notice\">";
|
||||
echo "<a id=\"optionstext\" onclick=\"toggleoptions();return false;\">- ".i18n('Hide Display Options')."</a>";
|
||||
|
||||
echo "<form method=\"GET\" action=\"$PHP_SELF\">";
|
||||
echo "<form method=\"GET\" action=\"\">";
|
||||
|
||||
echo "<div id=\"options\" style=\"display: block;\" >";
|
||||
echo "<table><tr><td>".i18n('Type').":</td>";
|
||||
@ -275,6 +275,8 @@ function update (id)
|
||||
}
|
||||
}
|
||||
|
||||
$having_year = '';
|
||||
|
||||
if($show_year == 'current')
|
||||
$having_year = "AND u1.year={$config['FAIRYEAR']}";
|
||||
|
||||
@ -304,10 +306,9 @@ function update (id)
|
||||
$q = $pdo->prepare($querystr);
|
||||
$q->execute();
|
||||
|
||||
echo $pdo->errorInfo();
|
||||
// echo $querystr;
|
||||
show_pdo_errors_if_any($pdo);
|
||||
$num=$q->rowCount();
|
||||
echo $pdo->errorInfo();
|
||||
show_pdo_errors_if_any($pdo);
|
||||
echo i18n("Listing %1 people total. See the table at the bottom for the totals by status <br><br><br>",array($num));
|
||||
echo i18n(" <lh>Notes:</lh> <ul><li> Deleting users from this list is a permanent operation and cannot be undone. Consider editing the user and deactivating or deleting roles in their account instead.
|
||||
<li> Updating a user to the current fair year allows you to then complete the user from this list.
|
||||
@ -380,7 +381,7 @@ function update (id)
|
||||
echo "<td>{$user_what[$t]}</td>";
|
||||
|
||||
echo "<td>";
|
||||
if($r["{$t}_active"] == 'yes') {
|
||||
if(get_value_from_array($r, "{$t}_active") == 'yes') {
|
||||
echo "<div class=\"happy\" align=\"center\">".i18n("yes")."</div>";
|
||||
$userstate = 'active';
|
||||
} else {
|
||||
|
@ -57,7 +57,7 @@
|
||||
$output=$config['committee_publiclayout'];
|
||||
|
||||
$name=$r2->firstname.' '.$r2->lastname;
|
||||
$output=str_replace("name",$u['name'],$output);
|
||||
$output=str_replace("name",get_value_or_default_boolean($u, 'name', ''),$output);
|
||||
$output=str_replace("title",$r2->title,$output);
|
||||
|
||||
//make sure we do emailprivate before email so we dont match the wrong thing
|
||||
@ -73,10 +73,10 @@
|
||||
} else
|
||||
$output=str_replace("email","",$output);
|
||||
|
||||
$output=str_replace("phonehome",$u['phonehome'],$output);
|
||||
$output=str_replace("phonework",$u['phonework'],$output);
|
||||
$output=str_replace("phonecell",$u['phonecell'],$output);
|
||||
$output=str_replace("fax",$u['fax'],$output);
|
||||
$output=str_replace("phonehome",get_value_or_default_boolean($u, 'phonehome', ''),$output);
|
||||
$output=str_replace("phonework",get_value_or_default_boolean($u, 'phonework', ''),$output);
|
||||
$output=str_replace("phonecell",get_value_or_default_boolean($u, 'phonecell', ''),$output);
|
||||
$output=str_replace("fax",get_value_or_default_boolean($u, 'fax', ''),$output);
|
||||
|
||||
echo $output;
|
||||
|
||||
|
219
common.inc.php
@ -22,14 +22,13 @@
|
||||
*/
|
||||
?>
|
||||
<?
|
||||
|
||||
//////echo phpinfo();
|
||||
header("Content-Type: text/html; charset=utf8");
|
||||
include_once("helper.inc.php");
|
||||
|
||||
//set error reporting to not show notices, for some reason some people's installation dont set this by default
|
||||
//so we will set it in the code instead just to make sure
|
||||
error_reporting(E_ALL);
|
||||
#error_reporting( E_ALL ^ E_WARNING );
|
||||
#error_reporting(E_ALL);
|
||||
error_reporting( E_ALL ^ E_WARNING );
|
||||
#error_reporting( E_ALL ^ E_WARNING ^ E_NOTICE ^ E_DEPRECATED );
|
||||
|
||||
define('REQUIREDFIELD','<span class="requiredfield">*</span>');
|
||||
@ -87,7 +86,7 @@ else
|
||||
|
||||
$dsn = "mysql:host=db;dbname=sfiab;charset=utf8mb4";
|
||||
|
||||
$pdo = new PDO($dsn,$DBUSER,$DBPASS);
|
||||
$pdo = new PDO($dsn,$DBUSER,$DBPASS,$dsn_options);
|
||||
|
||||
if(!$pdo)
|
||||
{
|
||||
@ -196,6 +195,8 @@ require_once("theme/{$config['theme_icons']}/icons.php");
|
||||
|
||||
require_once("committee.inc.php");
|
||||
|
||||
session_start();
|
||||
|
||||
if($config['SFIABDIRECTORY'] == '') {
|
||||
session_name("SFIABSESSID");
|
||||
session_set_cookie_params(0,'/');
|
||||
@ -204,8 +205,6 @@ if($config['SFIABDIRECTORY'] == '') {
|
||||
session_set_cookie_params(0,$config['SFIABDIRECTORY']);
|
||||
}
|
||||
|
||||
session_start();
|
||||
|
||||
//detect the browser first, so we know what icons to use - we store this in the config array as well
|
||||
//even though its not configurable by the fair
|
||||
if(stristr($_SERVER['HTTP_USER_AGENT'],"MSIE"))
|
||||
@ -231,7 +230,6 @@ else
|
||||
}
|
||||
}
|
||||
//now if no language has been set yet, lets set it to the default language
|
||||
|
||||
if(!$_SESSION['lang'])
|
||||
{
|
||||
//first try the default language, if that doesnt work, use "en"
|
||||
@ -243,10 +241,10 @@ if(!$_SESSION['lang'])
|
||||
|
||||
//only allow debug to get set if we're using a development version (odd numbered ending)
|
||||
if(substr($config['version'], -1) % 2 != 0)
|
||||
if(get_value_from_array($_GET, 'debug')) $_SESSION['debug']=$_GET['debug'];
|
||||
if($_GET['debug']) $_SESSION['debug']=$_GET['debug'];
|
||||
|
||||
//if the user has switched languages, go ahead and switch the session variable
|
||||
if(get_value_from_array($_GET, 'switchlanguage'))
|
||||
if($_GET['switchlanguage'])
|
||||
{
|
||||
//first, make sure its a valid language:
|
||||
if($config['languages'][$_GET['switchlanguage']])
|
||||
@ -392,17 +390,31 @@ function send_header($title="", $nav=null, $icon=null, $titletranslated=false)
|
||||
//do this so we can use send_header() a little more loosly and not worry about it being sent more than once.
|
||||
if($HEADER_SENT) return;
|
||||
else $HEADER_SENT=true;
|
||||
|
||||
//FIXME UTF-8?
|
||||
echo "<?xml version=\"1.0\" encoding=\"iso-8859-1\" ?>\n";
|
||||
?>
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="utf-8" />
|
||||
<title><? //if($title && !$titletranslated) echo i18n($title); else if($title) echo $title; else echo i18n($config['fairname']); ?></title>
|
||||
<link rel="stylesheet" href="<?=$config['SFIABDIRECTORY']?>/theme/<?=$config['theme']?>/jquery-ui-1.7.2.custom.css" type="text/css" media="all" />
|
||||
<link rel="stylesheet" href="<?=$config['SFIABDIRECTORY']?>/theme/<?=$config['theme']?>/sfiab.css" type="text/css" media="all" />
|
||||
<link rel="stylesheet" href="<?=$config['SFIABDIRECTORY']?>/tableeditor.css" type="text/css" media="all" />
|
||||
<html class='h-screen'>
|
||||
<head><title><? //if($title && !$titletranslated) echo i18n($title); else if($title) echo $title; else echo i18n($config['fairname']); ?></title>
|
||||
<link rel='stylesheet' href='<?=$config['SFIABDIRECTORY']?>/css/output.css' />
|
||||
<link rel='stylesheet' href='<?=$config['SFIABDIRECTORY']?>/css/styles.css' />
|
||||
<!-- <link rel="stylesheet" href="<?=$config['SFIABDIRECTORY']?>/theme/<?=$config['theme']?>/jquery-ui-1.7.2.custom.css" type="text/css" media="all" />
|
||||
<link rel="stylesheet" href="<?=$config['SFIABDIRECTORY']?>/theme/<?=$config['theme']?>/sfiab.css" type="text/css" />
|
||||
<link rel="stylesheet" href="<?=$config['SFIABDIRECTORY']?>/tableeditor.css" type="text/css" media="all" /> -->
|
||||
<link href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined" rel="stylesheet" />
|
||||
|
||||
<style>
|
||||
.material-symbols-outlined {
|
||||
font-variation-settings:
|
||||
'FILL' 0,
|
||||
'wght' 400,
|
||||
'GRAD' 0,
|
||||
'opsz' 24
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<body class='h-screen'>
|
||||
<!-- <? if($title && !$titletranslated) echo i18n($title); else if($title) echo $title; else echo i18n($config['fairname']); ?> -->
|
||||
<script type="text/javascript" src="<?=$config['SFIABDIRECTORY']?>/js/jquery/1.3.2/jquery.min.js"></script>
|
||||
<script type="text/javascript" src="<?=$config['SFIABDIRECTORY']?>/js/jqueryui/1.7.2/jquery-ui.min.js"></script>
|
||||
@ -420,12 +432,12 @@ if(substr(getcwd(),-6)=="/admin" || substr(getcwd(),-7)=="/config" || substr(get
|
||||
?>
|
||||
|
||||
<div id="notice_area" class="notice_area"></div>
|
||||
<div id="header">
|
||||
<div id="header" class='hidden'>
|
||||
<?
|
||||
if(file_exists($prependdir."data/logo-100.gif"))
|
||||
echo "<img align=\"left\" height=\"50\" src=\"".$config['SFIABDIRECTORY']."/data/logo-100.gif\">";
|
||||
// if(file_exists($prependdir."data/logo-100.gif"))
|
||||
// echo "<img align=\"left\" height=\"50\" src=\"".$config['SFIABDIRECTORY']."/data/logo-100.gif\">";
|
||||
|
||||
echo "<h1>".i18n($config['fairname'])."</h1>";
|
||||
echo "<h1 class='text-lg'>".i18n($config['fairname'])."</h1>";
|
||||
echo "<div align=\"right\" style=\"font-size: 0.75em;\">";
|
||||
if(isset($_SESSION['users_type'])) {
|
||||
$types = array('volunteer' => 'Volunteer', 'judge' => 'Judge',
|
||||
@ -457,20 +469,19 @@ echo "</div>";
|
||||
?>
|
||||
<hr />
|
||||
</div>
|
||||
<table cellpadding="5" width="100%">
|
||||
<tr><td width="175">
|
||||
<table class='h-full' cellpadding="5" width="100%">
|
||||
<tr class='h-full'><td width="175">
|
||||
<?
|
||||
global $pdo;
|
||||
//if the date is greater than the date/time that the confirmed participants gets posted,
|
||||
//then we will show the registration confirmation page as a link in the menu,
|
||||
$registrationconfirmationlink="";
|
||||
|
||||
//only display it if a date is set to begin with.
|
||||
if($config['dates']['postparticipants'] && $config['dates']['postparticipants']!="0000-00-00 00:00:00")
|
||||
{
|
||||
$q= $pdo->prepare("SELECT (NOW()>'".$config['dates']['regclose']."') AS test");
|
||||
{ global $pdo;
|
||||
$q=$pdo->prepare("SELECT (NOW()>'".$config['dates']['regclose']."') AS test");
|
||||
$q->execute();
|
||||
$r=$q->fetch(PDO::FETCH_OBJ);
|
||||
$r=$q->fetch();
|
||||
if($r->test==1)
|
||||
{
|
||||
$registrationconfirmationlink="<li><a href=\"".$config['SFIABDIRECTORY']."/confirmed_participants.php\">".i18n("Confirmed Participants")."</a></li>";
|
||||
@ -478,26 +489,35 @@ echo "</div>";
|
||||
}
|
||||
?>
|
||||
|
||||
<div id="left">
|
||||
<div class='bg-purple-200 rounded-lg shadow-xl py-5 h-full' id="left">
|
||||
<?
|
||||
if(is_array($nav)) {
|
||||
$navkeys=array_keys($nav);
|
||||
if (isset($navkeys[2]) && $navkeys[2] == "Fundraising") {
|
||||
echo "<ul class=\"mainnav\">\n";
|
||||
echo "<li><h4 style=\"text-align: center;\">".i18n("Fundraising")."</h4></li>\n";
|
||||
echo "<li><a href=\"{$config['SFIABDIRECTORY']}/admin/fundraising.php\">".i18n("Fundraising Dashboard").'</a></li>';
|
||||
echo "<li><a href=\"{$config['SFIABDIRECTORY']}/admin/fundraising_setup.php\">".i18n("Fundraising Setup").'</a></li>';
|
||||
echo "<li><a href=\"{$config['SFIABDIRECTORY']}/admin/fundraising_campaigns.php\">".i18n("Manage Appeals").'</a></li>';
|
||||
echo "<li><a href=\"{$config['SFIABDIRECTORY']}/admin/donors.php\">".i18n("Manage Donors/Sponsors").'</a></li>';
|
||||
echo "<li><a href=\"{$config['SFIABDIRECTORY']}/admin/fundraising_reports.php\">".i18n("Fundraising Reports").'</a></li>';
|
||||
echo "</ul><br />\n";
|
||||
}
|
||||
switch($navkeys[2]) {
|
||||
case "Fundraising":
|
||||
echo "<ul class=\"mainnav\">\n";
|
||||
echo "<li><h4 style=\"text-align: center;\">".i18n("Fundraising")."</h4></li>\n";
|
||||
echo "<li><a href=\"{$config['SFIABDIRECTORY']}/admin/fundraising.php\">".i18n("Fundraising Dashboard").'</a></li>';
|
||||
echo "<li><a href=\"{$config['SFIABDIRECTORY']}/admin/fundraising_setup.php\">".i18n("Fundraising Setup").'</a></li>';
|
||||
echo "<li><a href=\"{$config['SFIABDIRECTORY']}/admin/fundraising_campaigns.php\">".i18n("Manage Appeals").'</a></li>';
|
||||
echo "<li><a href=\"{$config['SFIABDIRECTORY']}/admin/donors.php\">".i18n("Manage Donors/Sponsors").'</a></li>';
|
||||
echo "<li><a href=\"{$config['SFIABDIRECTORY']}/admin/fundraising_reports.php\">".i18n("Fundraising Reports").'</a></li>';
|
||||
echo "</ul><br />\n";
|
||||
break;
|
||||
default:
|
||||
//no special menu
|
||||
break;
|
||||
}
|
||||
}
|
||||
?>
|
||||
<ul class="mainnav">
|
||||
<ul class="mainnav px-3 space-y-5">
|
||||
<?
|
||||
echo "<li><a href=\"{$config['SFIABDIRECTORY']}/index.php\">".i18n("Home Page").'</a></li>';
|
||||
echo "<li><a href=\"{$config['SFIABDIRECTORY']}/important_dates.php\">".i18n("Important Dates").'</a></li>';
|
||||
echo "<li class='flex justify-start hover:bg-white hover:rounded-lg'><span class='material-symbols-outlined'>
|
||||
search
|
||||
</span><a href=\"{$config['SFIABDIRECTORY']}/index.php\">".i18n("Home Page").'</a></li>';
|
||||
echo "<li class='flex justify-start hover:bg-white hover:rounded-lg'><span class='material-symbols-outlined'>
|
||||
calendar_month
|
||||
</span><a href=\"{$config['SFIABDIRECTORY']}/important_dates.php\">".i18n("Important Dates").'</a></li>';
|
||||
|
||||
echo $registrationconfirmationlink;
|
||||
/*
|
||||
@ -507,47 +527,63 @@ if(is_array($nav)) {
|
||||
echo "<li><a href=\"{$config['SFIABDIRECTORY']}/user_login.php?type=volunteer\">".i18n("Volunteer Registration").'</a></li>';
|
||||
}
|
||||
*/
|
||||
echo "<li><a href=\"{$config['SFIABDIRECTORY']}/committees.php\">".i18n("Committee").'</a></li>';
|
||||
echo "<li><a href=\"{$config['SFIABDIRECTORY']}/winners.php\">".i18n("Winners").'</a></li>';
|
||||
echo "<li class='flex justify-start hover:bg-white hover:rounded-lg '><span class='material-symbols-outlined'>
|
||||
groups
|
||||
</span><a href=\"{$config['SFIABDIRECTORY']}/committees.php\">".i18n("Committee").'</a></li>';
|
||||
echo "<li class='flex justify-start hover:bg-white hover:rounded-lg '><span class='material-symbols-outlined'>
|
||||
trophy
|
||||
</span><a href=\"{$config['SFIABDIRECTORY']}/winners.php\">".i18n("Winners").'</a></li>';
|
||||
echo '</ul>';
|
||||
?>
|
||||
<br />
|
||||
<ul class="mainnav">
|
||||
<ul class="mainnav px-3 space-y-5">
|
||||
<?
|
||||
if(get_value_from_session('users_type') == 'committee') {
|
||||
echo "<li><a href=\"{$config['SFIABDIRECTORY']}/user_personal.php\">".i18n("My Profile").'</a></li>';
|
||||
echo "<li><a href=\"{$config['SFIABDIRECTORY']}/committee_main.php\">".i18n("Committee Home").'</a></li>';
|
||||
if($_SESSION['users_type'] == 'committee') {
|
||||
echo "<li><span class=\"material-symbols-outlined\">
|
||||
person
|
||||
</span><a href=\"{$config['SFIABDIRECTORY']}/user_personal.php\">".i18n("My Profile").'</a></li>';
|
||||
echo "<li><span class=\"material-symbols-outlined\">
|
||||
home
|
||||
</span><a href=\"{$config['SFIABDIRECTORY']}/committee_main.php\">".i18n("Committee Home").'</a></li>';
|
||||
if(committee_auth_has_access("admin")){
|
||||
echo "<li><a href=\"{$config['SFIABDIRECTORY']}/admin/\">".i18n("Fair Administration").'</a></li>';
|
||||
echo "<li><span class=\"material-symbols-outlined\">
|
||||
admin_panel_settings
|
||||
</span><a href=\"{$config['SFIABDIRECTORY']}/admin/\">".i18n("Fair Administration").'</a></li>';
|
||||
}
|
||||
if(committee_auth_has_access("config")){
|
||||
echo "<li><a href=\"{$config['SFIABDIRECTORY']}/config/\">".i18n("Configuration").'</a></li>';
|
||||
echo "<li><span class=\"material-symbols-outlined\">
|
||||
manufacturing
|
||||
</span><a href=\"{$config['SFIABDIRECTORY']}/config/\">".i18n("Configuration").'</a></li>';
|
||||
}
|
||||
echo "<li><a href=\"{$config['SFIABDIRECTORY']}/user_login.php?action=logout\">".i18n("Logout").'</a></li>';
|
||||
} else if(get_value_from_session('users_type') == "judge") {
|
||||
echo "<li><span class=\"material-symbols-outlined\">
|
||||
logout
|
||||
</span><a href=\"{$config['SFIABDIRECTORY']}/user_login.php?action=logout\">".i18n("Logout").'</a></li>';
|
||||
} else if($_SESSION['users_type']=="judge") {
|
||||
echo "<li><a href=\"{$config['SFIABDIRECTORY']}/user_personal.php\">".i18n("My Profile").'</a></li>';
|
||||
echo "<li><a href=\"{$config['SFIABDIRECTORY']}/judge_main.php\">".i18n("Judge Home").'</a></li>';
|
||||
echo "<li><a href=\"{$config['SFIABDIRECTORY']}/user_login.php?action=logout\">".i18n("Logout").'</a></li>';
|
||||
} else if(get_value_from_session('users_type') == "volunteer") {
|
||||
} else if($_SESSION['users_type']=="volunteer") {
|
||||
echo "<li><a href=\"{$config['SFIABDIRECTORY']}/user_personal.php\">".i18n("My Profile").'</a></li>';
|
||||
echo "<li><a href=\"{$config['SFIABDIRECTORY']}/volunteer_main.php\">".i18n("Volunteer Home").'</a></li>';
|
||||
echo "<li><a href=\"{$config['SFIABDIRECTORY']}/user_login.php?action=logout\">".i18n("Logout").'</a></li>';
|
||||
} else if(get_value_from_session('users_type') == "sponsor") {
|
||||
} else if($_SESSION['users_type']=="sponsor") {
|
||||
echo "<li><a href=\"{$config['SFIABDIRECTORY']}/user_personal.php\">".i18n("My Profile").'</a></li>';
|
||||
echo "<li><a href=\"{$config['SFIABDIRECTORY']}/sponsor_main.php\">".i18n("Sponsor Home").'</a></li>';
|
||||
echo "<li><a href=\"{$config['SFIABDIRECTORY']}/user_login.php?action=logout\">".i18n("Logout").'</a></li>';
|
||||
} else if(get_value_from_session('schoolid') && get_value_from_session('schoolaccesscode')) {
|
||||
} else if($_SESSION['schoolid'] && $_SESSION['schoolaccesscode']) {
|
||||
echo "<li><a href=\"{$config['SFIABDIRECTORY']}/schoolaccess.php\">".i18n("School Home").'</a></li>';
|
||||
echo "<li><a href=\"{$config['SFIABDIRECTORY']}/schoolaccess.php?action=logout\">".i18n("Logout").'</a></li>';
|
||||
}
|
||||
else if(get_value_from_session('registration_number') && get_value_from_session('registration_id')) {
|
||||
else if($_SESSION['registration_number'] && $_SESSION['registration_id']) {
|
||||
echo "<li><a href=\"{$config['SFIABDIRECTORY']}/register_participants_main.php\">".i18n("Participant Home").'</a></li>';
|
||||
echo "<li><a href=\"{$config['SFIABDIRECTORY']}/register_participants.php?action=logout\">".i18n("Logout")."</a></li>\n";
|
||||
} else {
|
||||
echo "<li><a href=\"{$config['SFIABDIRECTORY']}/login.php\">".i18n("Login/Register").'</a></li>';
|
||||
echo "<li class='flex justify-center hover:bg-white hover:rounded-lg'><span class='material-symbols-outlined'>
|
||||
login
|
||||
</span><a href=\"{$config['SFIABDIRECTORY']}/login.php\">".i18n("Login/Register").'</a></li>';
|
||||
}
|
||||
?></ul>
|
||||
<div class="aligncenter">
|
||||
<div class="aligncenter px-3 ">
|
||||
<?
|
||||
if(count($config['languages'])>1) {
|
||||
echo "<br />";
|
||||
@ -565,13 +601,15 @@ if(count($config['languages'])>1) {
|
||||
?>
|
||||
</div>
|
||||
<?
|
||||
echo "<br /><ul class=\"mainnav\">\n";
|
||||
echo "<li><a href=\"{$config["SFIABDIRECTORY"]}/contact.php\">".i18n("Contact Us")."</a></li>\n";
|
||||
echo "<br /><ul class=\"mainnav px-3 hover:bg-white hover:rounded-lg\">\n";
|
||||
echo "<li class='flex items-center'><span class='material-symbols-outlined'>
|
||||
contact_page
|
||||
</span><a href=\"{$config["SFIABDIRECTORY"]}/contact.php\">".i18n("Contact Us")."</a></li>\n";
|
||||
echo "</ul>";
|
||||
?>
|
||||
|
||||
</div>
|
||||
</td><td>
|
||||
</td><td class=''>
|
||||
<?
|
||||
|
||||
if(is_array($nav)) {
|
||||
@ -587,7 +625,7 @@ if(is_array($nav)) {
|
||||
}
|
||||
?>
|
||||
|
||||
<div id="main">
|
||||
<div id="main" class='text-center bg-slate-100 rounded-lg'>
|
||||
<?
|
||||
|
||||
if(committee_auth_has_access("config") || committee_auth_has_access("admin"))
|
||||
@ -597,7 +635,7 @@ if(committee_auth_has_access("config"))
|
||||
if(committee_auth_has_access("admin"))
|
||||
admin_warnings();
|
||||
|
||||
echo "<table cellspacing=\"0\" cellpadding=\"0\" width=\"100%\"><tr>";
|
||||
echo "<table cellspacing=\"0\" cellpadding=\"0\" width=\"100%\"><tr>";
|
||||
|
||||
if($icon && theme_icon($icon)) {
|
||||
echo "<td width=\"40\">";
|
||||
@ -615,7 +653,7 @@ else if($title)
|
||||
//if we're under /admin or /config then we want to show the ? help icon
|
||||
if(substr(getcwd(),-6)=="/admin" || substr(getcwd(),-7)=="/config" || substr(getcwd(),-6)=="\\admin" || substr(getcwd(),-7)=="\\config" )
|
||||
{
|
||||
if(get_value_from_array($_SERVER, 'REDIRECT_SCRIPT_URL'))
|
||||
if($_SERVER['REDIRECT_SCRIPT_URL'])
|
||||
$fname=substr($_SERVER['REDIRECT_SCRIPT_URL'],strlen($config['SFIABDIRECTORY'])+1);
|
||||
else
|
||||
$fname=substr($_SERVER['PHP_SELF'],strlen($config['SFIABDIRECTORY'])+1);
|
||||
@ -634,7 +672,7 @@ global $config;
|
||||
?>
|
||||
</td></tr></table>
|
||||
</div>
|
||||
<div id="footer">
|
||||
<div id="footer" class='fixed bottom-0 min-w-full hidden'>
|
||||
<?
|
||||
//we only show the debug session variables if we have an ODD numbered version.
|
||||
if(substr($config['version'], -1) % 2 != 0)
|
||||
@ -647,15 +685,13 @@ if(substr($config['version'], -1) % 2 != 0)
|
||||
$revision=exec("svn info |grep Revision");
|
||||
}
|
||||
$extra=" (Development $revision)";
|
||||
if(get_value_from_array($_SESSION, 'debug') == "true")
|
||||
if($_SESSION['debug']=="true")
|
||||
$extra.=" DEBUG: ".print_r($_SESSION,true);
|
||||
}
|
||||
|
||||
// FIX ME
|
||||
echo "<a target=\"blank\" href=\"http://www.sfiab.ca\">SFIAB Version ".$config['version']."{$extra}</a>";
|
||||
echo "<a target=\"blank\" href=\"http://www.sfiab.ca\">SFIAB Version ".$config['version']."{$extra}</a>";
|
||||
?>
|
||||
</div>
|
||||
<div id="debug" style="display:<?=(get_value_from_array($_SESSION, 'debug') == 'true')?'block':'none'?>; font-family:monospace; white-space:pre;">Debug...</div>
|
||||
<div id="debug" style="display:<?=($_SESSION['debug']=='true')?'block':'none'?>; font-family:monospace; white-space:pre; " >Debug...</div>
|
||||
<iframe id="content" src="" style="visibility:hidden; width:0px; height:0px"></iframe>
|
||||
|
||||
</body>
|
||||
@ -675,16 +711,17 @@ function send_popup_header($title="")
|
||||
|
||||
echo "<?xml version=\"1.0\" encoding=\"iso-8859-1\" ?>\n";
|
||||
?>
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="utf-8" />
|
||||
<title><?=i18n($title)?></title>
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" >
|
||||
<head><title><?=i18n($title)?></title>
|
||||
|
||||
<!--
|
||||
<link rel="stylesheet" href="<?=$config['SFIABDIRECTORY']?>/theme/<?=$config['theme']?>/jquery-ui-1.7.2.custom.css" type="text/css" media="all" />
|
||||
<link rel="stylesheet" href="<?=$config['SFIABDIRECTORY']?>/theme/<?=$config['theme']?>/sfiab.css" type="text/css" media="all" />
|
||||
<link media=all href="<?=$config['SFIABDIRECTORY']?>/tableeditor.css" type=text/css rel=stylesheet>
|
||||
<link media=all href="<?=$config['SFIABDIRECTORY']?>/tableeditor.css" type=text/css rel=stylesheet> -->
|
||||
</head>
|
||||
<body onLoad="window.focus()">
|
||||
|
||||
<script type="text/javascript" src="<?=$config['SFIABDIRECTORY']?>/js/jquery/1.3.2/jquery.min.js"></script>
|
||||
<script type="text/javascript" src="<?=$config['SFIABDIRECTORY']?>/js/jqueryui/1.7.2/jquery-ui.min.js"></script>
|
||||
<script type="text/javascript" src="<?=$config['SFIABDIRECTORY']?>/js/sfiab.js"></script>
|
||||
@ -827,8 +864,7 @@ function emit_minute_selector($name,$selected="")
|
||||
|
||||
function emit_time_selector($name,$selected="")
|
||||
{
|
||||
global $hour;
|
||||
global $minute;
|
||||
|
||||
if($selected)
|
||||
{
|
||||
list($hour,$minute,$second)=explode(":",$selected);
|
||||
@ -846,10 +882,8 @@ function emit_time_selector($name,$selected="")
|
||||
function emit_province_selector($name,$selected="",$extra="")
|
||||
{
|
||||
global $config;
|
||||
global $pdo;
|
||||
$q=$pdo->prepare("SELECT * FROM provinces WHERE countries_code='".$config['country']."' ORDER BY province");
|
||||
$q->execute();
|
||||
if($q->rowCount()==1)
|
||||
$q=("SELECT * FROM provinces WHERE countries_code='".mysql_escape_string($config['country'])."' ORDER BY province");
|
||||
if(mysql_num_rows($q)==1)
|
||||
{
|
||||
$r = $q->fetch();
|
||||
echo "<input type=\"hidden\" name=\"$name\" value=\"$r-code\">";
|
||||
@ -1092,7 +1126,7 @@ function output_page_text($textname)
|
||||
}
|
||||
|
||||
//if it looks like we have HTML content, dont do a nl2br, if there's no html, then do the nl2br
|
||||
if($r->text !== null and strlen($r->text)==strlen(strip_tags($r->text)))
|
||||
if(strlen($r->text)==strlen(strip_tags($r->text)))
|
||||
echo nl2br($r->text);
|
||||
else
|
||||
echo $r->text;
|
||||
@ -1108,16 +1142,16 @@ function output_page_cms($filename)
|
||||
if($q->rowCount())
|
||||
{
|
||||
$r = $q->fetch();
|
||||
send_header($r['title'],null,null,true);
|
||||
send_header($r->title,null,null,true);
|
||||
|
||||
if(file_exists("data/logo-200.gif") && $r->showlogo==1)
|
||||
echo "<img align=\"right\" src=\"".$config['SFIABDIRECTORY']."/data/logo-200.gif\" border=\"0\">";
|
||||
|
||||
//if it looks like we have HTML content, dont do a nl2br, if there's no html, then do the nl2br
|
||||
if($r['text'] !== null and strlen($r['text'])==strlen(strip_tags($r['text'])))
|
||||
echo nl2br($r['text']);
|
||||
if(strlen(get_value_from_array($r, 'text'))==strlen(strip_tags(get_value_from_array($r, 'text'))))
|
||||
echo nl2br(get_value_from_array($r, 'text'));
|
||||
else
|
||||
echo $r['text'];
|
||||
echo $r->text;
|
||||
}
|
||||
else {
|
||||
send_header("Error: File not found");
|
||||
@ -1165,12 +1199,11 @@ function committee_warnings()
|
||||
//properly :)
|
||||
|
||||
|
||||
|
||||
$q = $pdo->prepare("SELECT DATE_ADD('".$config['dates']['fairdate']."', INTERVAL 4 MONTH) < NOW() AS rollovercheck");
|
||||
$q->execute();
|
||||
|
||||
$r = $q->fetch(PDO::FETCH_OBJ);
|
||||
|
||||
// FIXME Clear out Important Dates as part of rollover
|
||||
$r = $q->fetch();
|
||||
if($r->rollovercheck) {
|
||||
echo error(i18n("It has been more than 4 months since your fair. In order to prepare the system for the next year's fair, you should go to the SFIAB Configuration page, and click on 'Rollover Fair Year'. Do not start updating the system with new information until the year has been properly rolled over."));
|
||||
}
|
||||
@ -1184,14 +1217,14 @@ function committee_warnings()
|
||||
/* The bug was that the external_identifier was set to the prize name.. so only display the warning
|
||||
* if we find that case for a non-sfiab external fair */
|
||||
while(($p = $q->fetch(PDO::FETCH_ASSOC) )) {
|
||||
$qq = ("SELECT * FROM award_awards $r->rollovercheck
|
||||
$qq = ("SELECT * FROM award_awards
|
||||
LEFT JOIN fairs ON fairs.id=award_awards.award_source_fairs_id
|
||||
WHERE award_awards.id='{$p['award_awards_id']}'
|
||||
AND year='{$config['FAIRYEAR']}'
|
||||
AND award_awards.award_source_fairs_id IS NOT NULL
|
||||
AND fairs.type='ysc' ");
|
||||
echo pdo->errorInfo();
|
||||
if($qq->rowCount() > 0) {
|
||||
if(mysql_num_rows($qq) > 0) {
|
||||
$warn;
|
||||
|
||||
break;
|
||||
@ -1255,7 +1288,7 @@ function format_datetime($dt) {
|
||||
}
|
||||
|
||||
function format_money($n,$decimals=true)
|
||||
{ global $neg;
|
||||
{
|
||||
if($n<0){
|
||||
$neg=true;
|
||||
$n=$n*-1;
|
||||
|
@ -127,7 +127,7 @@
|
||||
echo "<th>".i18n("Actions")."</th>\n";
|
||||
echo "</tr>";
|
||||
|
||||
if(get_value_from_array($_GET, 'action') == "edit") || get_value_from_array($_GET, 'action') == "new")
|
||||
if(get_value_from_array($_GET, 'action') == "edit" || get_value_from_array($_GET, 'action') == "new")
|
||||
{
|
||||
echo "<input type=\"hidden\" name=\"action\" value=\"".get_value_from_array($_GET,'action')."\">\n";
|
||||
if(get_value_from_array($_GET,'action') == "edit")
|
||||
@ -142,8 +142,9 @@
|
||||
{
|
||||
$buttontext="Add";
|
||||
}
|
||||
|
||||
echo "<tr>";
|
||||
echo " <td><input type=\"text\" size=\"3\" name=\"id\" value=\"$categoryr->id\"></td>";
|
||||
echo " <td><input type=\"text\" size=\"3\" name=\"id\" value=\"".get_value_property_or_default($categoryr, 'id', ' ')."\"></td>";
|
||||
echo " <td><input type=\"text\" size=\"20\" name=\"category\" value=\"$categoryr->category\"></td>";
|
||||
echo " <td><input type=\"text\" size=\"5\" name=\"category_shortform\" value=\"$categoryr->category_shortform\"></td>";
|
||||
echo " <td><input type=\"text\" size=\"3\" name=\"mingrade\" value=\"$categoryr->mingrade\"></td>";
|
||||
|
@ -126,7 +126,7 @@ if(get_value_from_array($_GET, 'action') == "edit" || get_value_from_array($_GET
|
||||
}
|
||||
}
|
||||
|
||||
if(get_value_from_array($_GET,'action') == "remove") && get_value_from_array($_GET, 'remove'))
|
||||
if(get_value_from_array($_GET,'action') == "remove" && get_value_from_array($_GET, 'remove'))
|
||||
{
|
||||
//###### Feature Specific - filtering divisions by category - not conditional, cause even if they have the filtering turned off..if any links
|
||||
//for this division exist they should be deleted
|
||||
@ -166,7 +166,7 @@ if(get_value_from_array($_GET, 'action') == "edit" || get_value_from_array($_GET
|
||||
|
||||
$buttontext="Save";
|
||||
}
|
||||
else if(get_vaue_from_array($_GET,'action',"new"))
|
||||
else if(get_value_from_array($_GET,'action') == "new")
|
||||
{
|
||||
$buttontext="Add";
|
||||
}
|
||||
@ -215,7 +215,7 @@ if(get_value_from_array($_GET, 'action') == "edit" || get_value_from_array($_GET
|
||||
AND projectcategories.year='".$config['FAIRYEAR']."'
|
||||
ORDER BY projectcategories.mingrade");
|
||||
$c->execute();
|
||||
echo $pdo->errorInfo();
|
||||
show_pdo_errors_if_any($pdo);
|
||||
if(!$c){
|
||||
$tempcat=" ";
|
||||
}else{
|
||||
|
@ -33,7 +33,7 @@
|
||||
);
|
||||
|
||||
////// FIX ME!!!!!
|
||||
if(count(get_value_from_array($_POST, 'cwsfdivision', '')))
|
||||
if(count(get_value_from_array($_POST, 'cwsfdivision', [])))
|
||||
{
|
||||
foreach($_POST['cwsfdivision'] AS $k=>$v)
|
||||
{
|
||||
|
@ -40,7 +40,8 @@
|
||||
{
|
||||
$ret=array();
|
||||
//// FIXME Replace!
|
||||
if($packs=file("http://www.sfiab.ca/languages/langpacklist.txt"))
|
||||
//if($packs=file("http://www.sfiab.ca/languages/langpacklist.txt"))
|
||||
if (false)
|
||||
{
|
||||
$num=count($packs);
|
||||
//format of each line is:
|
||||
@ -62,7 +63,7 @@
|
||||
|
||||
}
|
||||
|
||||
if(get_value_from_array($_GET,'action') == "check"))
|
||||
if(get_value_from_array($_GET,'action') == "check")
|
||||
{
|
||||
$packs=loadLanguagePacks();
|
||||
|
||||
|
@ -37,12 +37,12 @@
|
||||
,"page_texts"
|
||||
);
|
||||
|
||||
$q = $pdo->prepare("SELECT * FROM pagetext WHERE year='-1' ORDER BY textname");
|
||||
$q = $pdo->prepare("SELECT * FROM pagetext WHERE year='-1' ORDER BY textname");
|
||||
$q->execute();
|
||||
while($r=$q->fetch(PDO::FETCH_OBJ))
|
||||
{
|
||||
foreach($config['languages'] AS $lang=>$langname) {
|
||||
$q = $pdo->prepare("INSERT INTO pagetext (textname,textdescription,text,year,lang) VALUES (
|
||||
$q = $pdo->prepare("INSERT INTO pagetext (`textname`,`textdescription`,`text`,`year`,`lang`) VALUES (
|
||||
'".$r->textname."',
|
||||
'".$r->textdescription."',
|
||||
'".$r->text."',
|
||||
|
@ -107,9 +107,10 @@
|
||||
}
|
||||
if($showform)
|
||||
{
|
||||
$r = array();
|
||||
echo "<table class=\"summarytable\">";
|
||||
echo "<tr><td>".i18n("Question")."</td><td>";
|
||||
echo "<input size=\"60\" type=\"text\" name=\"question\" value=\"".htmlspecialchars(get_value_or_default($r->question, ""))."\">\n";
|
||||
echo "<input size=\"60\" type=\"text\" name=\"question\" value=\"".htmlspecialchars(get_value_from_array($r, 'question', ""))."\">\n";
|
||||
echo "</td></tr>";
|
||||
echo "<tr><td>".i18n("Type")."</td><td>";
|
||||
echo "<select name=\"type\">";
|
||||
@ -128,7 +129,7 @@
|
||||
echo "</select>";
|
||||
echo "</td>";
|
||||
echo "<tr><td>".i18n("Display Order")."</td><td>";
|
||||
echo "<input size=\"5\" type=\"text\" name=\"ord\" value=\"".htmlspecialchars(get_value_or_default($r->ord, ""))."\">\n";
|
||||
echo "<input size=\"5\" type=\"text\" name=\"ord\" value=\"".htmlspecialchars(get_value_from_array($r, 'ord', ''))."\">\n";
|
||||
echo "</td></tr>";
|
||||
echo "<tr><td colspan=\"2\" align=\"center\">";
|
||||
echo "<input type=\"submit\" value=\"".i18n($buttontext)."\" />\n";
|
||||
|
@ -103,7 +103,7 @@
|
||||
}
|
||||
}
|
||||
|
||||
if(get_value_from_array($_GET,'action') == "remove") && get_value_from_array($_GET,'remove'))
|
||||
if(get_value_from_array($_GET,'action') == "remove" && get_value_from_array($_GET,'remove'))
|
||||
{
|
||||
$stmt = $pdo->prepare("DELETE FROM projectsubdivisions WHERE id='".$_GET['remove']."'");
|
||||
$stmt->execute();
|
||||
@ -125,7 +125,8 @@
|
||||
|
||||
if(get_value_from_array($_GET,'action') == "edit" || get_value_from_array($_GET, 'action') == "new")
|
||||
{
|
||||
echo "<input type=\"hidden\" name=\"action\" value=\"".get_value_from_array($_GET,'action')."\">\n";
|
||||
echo "<input type=\"hidden\" name=\"action\" value=\"".get_value_from_array($_GET,'action')."\">\n";
|
||||
$divisionr = array();
|
||||
if(get_value_from_array($_GET,'action') == "edit")
|
||||
{
|
||||
echo "<input type=\"hidden\" name=\"saveid\" value=\"".get_value_from_array($_GET, 'edit')."\">\n";
|
||||
@ -150,8 +151,8 @@
|
||||
}
|
||||
echo "</select>";
|
||||
echo "</td>";
|
||||
echo " <td><input type=\"text\" size=\"3\" name=\"id\" value=\"$divisionr->id\"></td>";
|
||||
echo " <td><input type=\"text\" size=\"30\" name=\"subdivision\" value=\"$divisionr->subdivision\"></td>";
|
||||
echo " <td><input type=\"text\" size=\"3\" name=\"id\" value=\"".get_value_from_array($divisionr, 'id', '')."\"></td>";
|
||||
echo " <td><input type=\"text\" size=\"30\" name=\"subdivision\" value=\"".get_value_from_array($divisionr, 'subdivision', '')."\"></td>";
|
||||
echo " <td><input type=\"submit\" value=\"".i18n($buttontext)."\"></td>";
|
||||
$dq->execute();
|
||||
echo "</tr>";
|
||||
@ -171,7 +172,7 @@
|
||||
ORDER BY
|
||||
division,subdivision");
|
||||
$q->execute();
|
||||
echo $pdo->errorInfo();
|
||||
show_pdo_errors_if_any($pdo);
|
||||
while($r=$q->fetch(PDO::FETCH_OBJ))
|
||||
{
|
||||
echo "<tr>";
|
||||
|
@ -42,7 +42,8 @@
|
||||
{
|
||||
$ret=array();
|
||||
// FIXME Replace
|
||||
if($v=file("http://www.sfiab.ca/version.txt"))
|
||||
//if($v=file("http://www.sfiab.ca/version.txt"))
|
||||
if (false)
|
||||
{
|
||||
list($version,$date)=explode("\t",trim($v[0]));
|
||||
$ret['version']=$version;
|
||||
|
@ -136,6 +136,7 @@ function config_editor_handle_actions($category, $year, $array_name)
|
||||
{
|
||||
global $config;
|
||||
global $config_editor_actions_done;
|
||||
global $pdo;
|
||||
|
||||
$config_vars = config_editor_load($category, $year);
|
||||
|
||||
@ -168,7 +169,7 @@ function config_editor_handle_actions($category, $year, $array_name)
|
||||
/* Prep for MySQL update */
|
||||
$stmt = $pdo->prepare("UPDATE config SET val = ? WHERE var = ? AND year = ?");
|
||||
$stmt->execute([$val, $k, $year]);
|
||||
print pdo->errorInfo();
|
||||
show_pdo_errors_if_any($pdo);
|
||||
// echo "Saving {$v} = $val<br>";
|
||||
$config_editor_updated = true;
|
||||
$updated = true;
|
||||
@ -192,6 +193,7 @@ function config_editor($category, $year, $array_name, $self)
|
||||
{
|
||||
global $config;
|
||||
global $config_editor_actions_done, $config_editor_updated;
|
||||
global $updated;
|
||||
|
||||
if($config_editor_actions_done == false) {
|
||||
config_editor_handle_actions($category, $year, $array_name);
|
||||
|
@ -41,7 +41,7 @@
|
||||
list($d,$t)=explode(" ",$config['dates']['postparticipants']);
|
||||
echo i18n("Confirmed participants (that $signatureformpermissionform have been received for) will be posted here on %1 at %2. Please do not contact the fair to inquire about receipt of your $signatureformpermissionform until after this date (and only if you are not listed here after this date).",array($d,$t));
|
||||
}
|
||||
else https://marketplace.visualstudio.com/items?itemName=oscarotero.vento-syntax
|
||||
else
|
||||
{
|
||||
|
||||
|
||||
|
3
css/input.css
Normal file
@ -0,0 +1,3 @@
|
||||
@tailwind base;
|
||||
@tailwind components;
|
||||
@tailwind utilities;
|
691
css/output.css
Normal file
@ -0,0 +1,691 @@
|
||||
*, ::before, ::after {
|
||||
--tw-border-spacing-x: 0;
|
||||
--tw-border-spacing-y: 0;
|
||||
--tw-translate-x: 0;
|
||||
--tw-translate-y: 0;
|
||||
--tw-rotate: 0;
|
||||
--tw-skew-x: 0;
|
||||
--tw-skew-y: 0;
|
||||
--tw-scale-x: 1;
|
||||
--tw-scale-y: 1;
|
||||
--tw-pan-x: ;
|
||||
--tw-pan-y: ;
|
||||
--tw-pinch-zoom: ;
|
||||
--tw-scroll-snap-strictness: proximity;
|
||||
--tw-gradient-from-position: ;
|
||||
--tw-gradient-via-position: ;
|
||||
--tw-gradient-to-position: ;
|
||||
--tw-ordinal: ;
|
||||
--tw-slashed-zero: ;
|
||||
--tw-numeric-figure: ;
|
||||
--tw-numeric-spacing: ;
|
||||
--tw-numeric-fraction: ;
|
||||
--tw-ring-inset: ;
|
||||
--tw-ring-offset-width: 0px;
|
||||
--tw-ring-offset-color: #fff;
|
||||
--tw-ring-color: rgb(59 130 246 / 0.5);
|
||||
--tw-ring-offset-shadow: 0 0 #0000;
|
||||
--tw-ring-shadow: 0 0 #0000;
|
||||
--tw-shadow: 0 0 #0000;
|
||||
--tw-shadow-colored: 0 0 #0000;
|
||||
--tw-blur: ;
|
||||
--tw-brightness: ;
|
||||
--tw-contrast: ;
|
||||
--tw-grayscale: ;
|
||||
--tw-hue-rotate: ;
|
||||
--tw-invert: ;
|
||||
--tw-saturate: ;
|
||||
--tw-sepia: ;
|
||||
--tw-drop-shadow: ;
|
||||
--tw-backdrop-blur: ;
|
||||
--tw-backdrop-brightness: ;
|
||||
--tw-backdrop-contrast: ;
|
||||
--tw-backdrop-grayscale: ;
|
||||
--tw-backdrop-hue-rotate: ;
|
||||
--tw-backdrop-invert: ;
|
||||
--tw-backdrop-opacity: ;
|
||||
--tw-backdrop-saturate: ;
|
||||
--tw-backdrop-sepia: ;
|
||||
--tw-contain-size: ;
|
||||
--tw-contain-layout: ;
|
||||
--tw-contain-paint: ;
|
||||
--tw-contain-style: ;
|
||||
}
|
||||
|
||||
::backdrop {
|
||||
--tw-border-spacing-x: 0;
|
||||
--tw-border-spacing-y: 0;
|
||||
--tw-translate-x: 0;
|
||||
--tw-translate-y: 0;
|
||||
--tw-rotate: 0;
|
||||
--tw-skew-x: 0;
|
||||
--tw-skew-y: 0;
|
||||
--tw-scale-x: 1;
|
||||
--tw-scale-y: 1;
|
||||
--tw-pan-x: ;
|
||||
--tw-pan-y: ;
|
||||
--tw-pinch-zoom: ;
|
||||
--tw-scroll-snap-strictness: proximity;
|
||||
--tw-gradient-from-position: ;
|
||||
--tw-gradient-via-position: ;
|
||||
--tw-gradient-to-position: ;
|
||||
--tw-ordinal: ;
|
||||
--tw-slashed-zero: ;
|
||||
--tw-numeric-figure: ;
|
||||
--tw-numeric-spacing: ;
|
||||
--tw-numeric-fraction: ;
|
||||
--tw-ring-inset: ;
|
||||
--tw-ring-offset-width: 0px;
|
||||
--tw-ring-offset-color: #fff;
|
||||
--tw-ring-color: rgb(59 130 246 / 0.5);
|
||||
--tw-ring-offset-shadow: 0 0 #0000;
|
||||
--tw-ring-shadow: 0 0 #0000;
|
||||
--tw-shadow: 0 0 #0000;
|
||||
--tw-shadow-colored: 0 0 #0000;
|
||||
--tw-blur: ;
|
||||
--tw-brightness: ;
|
||||
--tw-contrast: ;
|
||||
--tw-grayscale: ;
|
||||
--tw-hue-rotate: ;
|
||||
--tw-invert: ;
|
||||
--tw-saturate: ;
|
||||
--tw-sepia: ;
|
||||
--tw-drop-shadow: ;
|
||||
--tw-backdrop-blur: ;
|
||||
--tw-backdrop-brightness: ;
|
||||
--tw-backdrop-contrast: ;
|
||||
--tw-backdrop-grayscale: ;
|
||||
--tw-backdrop-hue-rotate: ;
|
||||
--tw-backdrop-invert: ;
|
||||
--tw-backdrop-opacity: ;
|
||||
--tw-backdrop-saturate: ;
|
||||
--tw-backdrop-sepia: ;
|
||||
--tw-contain-size: ;
|
||||
--tw-contain-layout: ;
|
||||
--tw-contain-paint: ;
|
||||
--tw-contain-style: ;
|
||||
}
|
||||
|
||||
/*
|
||||
! tailwindcss v3.4.15 | MIT License | https://tailwindcss.com
|
||||
*/
|
||||
|
||||
/*
|
||||
1. Prevent padding and border from affecting element width. (https://github.com/mozdevs/cssremedy/issues/4)
|
||||
2. Allow adding a border to an element by just adding a border-width. (https://github.com/tailwindcss/tailwindcss/pull/116)
|
||||
*/
|
||||
|
||||
*,
|
||||
::before,
|
||||
::after {
|
||||
box-sizing: border-box;
|
||||
/* 1 */
|
||||
border-width: 0;
|
||||
/* 2 */
|
||||
border-style: solid;
|
||||
/* 2 */
|
||||
border-color: #e5e7eb;
|
||||
/* 2 */
|
||||
}
|
||||
|
||||
::before,
|
||||
::after {
|
||||
--tw-content: '';
|
||||
}
|
||||
|
||||
/*
|
||||
1. Use a consistent sensible line-height in all browsers.
|
||||
2. Prevent adjustments of font size after orientation changes in iOS.
|
||||
3. Use a more readable tab size.
|
||||
4. Use the user's configured `sans` font-family by default.
|
||||
5. Use the user's configured `sans` font-feature-settings by default.
|
||||
6. Use the user's configured `sans` font-variation-settings by default.
|
||||
7. Disable tap highlights on iOS
|
||||
*/
|
||||
|
||||
html,
|
||||
:host {
|
||||
line-height: 1.5;
|
||||
/* 1 */
|
||||
-webkit-text-size-adjust: 100%;
|
||||
/* 2 */
|
||||
-moz-tab-size: 4;
|
||||
/* 3 */
|
||||
-o-tab-size: 4;
|
||||
tab-size: 4;
|
||||
/* 3 */
|
||||
font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
||||
/* 4 */
|
||||
font-feature-settings: normal;
|
||||
/* 5 */
|
||||
font-variation-settings: normal;
|
||||
/* 6 */
|
||||
-webkit-tap-highlight-color: transparent;
|
||||
/* 7 */
|
||||
}
|
||||
|
||||
/*
|
||||
1. Remove the margin in all browsers.
|
||||
2. Inherit line-height from `html` so users can set them as a class directly on the `html` element.
|
||||
*/
|
||||
|
||||
body {
|
||||
margin: 0;
|
||||
/* 1 */
|
||||
line-height: inherit;
|
||||
/* 2 */
|
||||
}
|
||||
|
||||
/*
|
||||
1. Add the correct height in Firefox.
|
||||
2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655)
|
||||
3. Ensure horizontal rules are visible by default.
|
||||
*/
|
||||
|
||||
hr {
|
||||
height: 0;
|
||||
/* 1 */
|
||||
color: inherit;
|
||||
/* 2 */
|
||||
border-top-width: 1px;
|
||||
/* 3 */
|
||||
}
|
||||
|
||||
/*
|
||||
Add the correct text decoration in Chrome, Edge, and Safari.
|
||||
*/
|
||||
|
||||
abbr:where([title]) {
|
||||
-webkit-text-decoration: underline dotted;
|
||||
text-decoration: underline dotted;
|
||||
}
|
||||
|
||||
/*
|
||||
Remove the default font size and weight for headings.
|
||||
*/
|
||||
|
||||
h1,
|
||||
h2,
|
||||
h3,
|
||||
h4,
|
||||
h5,
|
||||
h6 {
|
||||
font-size: inherit;
|
||||
font-weight: inherit;
|
||||
}
|
||||
|
||||
/*
|
||||
Reset links to optimize for opt-in styling instead of opt-out.
|
||||
*/
|
||||
|
||||
a {
|
||||
color: inherit;
|
||||
text-decoration: inherit;
|
||||
}
|
||||
|
||||
/*
|
||||
Add the correct font weight in Edge and Safari.
|
||||
*/
|
||||
|
||||
b,
|
||||
strong {
|
||||
font-weight: bolder;
|
||||
}
|
||||
|
||||
/*
|
||||
1. Use the user's configured `mono` font-family by default.
|
||||
2. Use the user's configured `mono` font-feature-settings by default.
|
||||
3. Use the user's configured `mono` font-variation-settings by default.
|
||||
4. Correct the odd `em` font sizing in all browsers.
|
||||
*/
|
||||
|
||||
code,
|
||||
kbd,
|
||||
samp,
|
||||
pre {
|
||||
font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
|
||||
/* 1 */
|
||||
font-feature-settings: normal;
|
||||
/* 2 */
|
||||
font-variation-settings: normal;
|
||||
/* 3 */
|
||||
font-size: 1em;
|
||||
/* 4 */
|
||||
}
|
||||
|
||||
/*
|
||||
Add the correct font size in all browsers.
|
||||
*/
|
||||
|
||||
small {
|
||||
font-size: 80%;
|
||||
}
|
||||
|
||||
/*
|
||||
Prevent `sub` and `sup` elements from affecting the line height in all browsers.
|
||||
*/
|
||||
|
||||
sub,
|
||||
sup {
|
||||
font-size: 75%;
|
||||
line-height: 0;
|
||||
position: relative;
|
||||
vertical-align: baseline;
|
||||
}
|
||||
|
||||
sub {
|
||||
bottom: -0.25em;
|
||||
}
|
||||
|
||||
sup {
|
||||
top: -0.5em;
|
||||
}
|
||||
|
||||
/*
|
||||
1. Remove text indentation from table contents in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=999088, https://bugs.webkit.org/show_bug.cgi?id=201297)
|
||||
2. Correct table border color inheritance in all Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=935729, https://bugs.webkit.org/show_bug.cgi?id=195016)
|
||||
3. Remove gaps between table borders by default.
|
||||
*/
|
||||
|
||||
table {
|
||||
text-indent: 0;
|
||||
/* 1 */
|
||||
border-color: inherit;
|
||||
/* 2 */
|
||||
border-collapse: collapse;
|
||||
/* 3 */
|
||||
}
|
||||
|
||||
/*
|
||||
1. Change the font styles in all browsers.
|
||||
2. Remove the margin in Firefox and Safari.
|
||||
3. Remove default padding in all browsers.
|
||||
*/
|
||||
|
||||
button,
|
||||
input,
|
||||
optgroup,
|
||||
select,
|
||||
textarea {
|
||||
font-family: inherit;
|
||||
/* 1 */
|
||||
font-feature-settings: inherit;
|
||||
/* 1 */
|
||||
font-variation-settings: inherit;
|
||||
/* 1 */
|
||||
font-size: 100%;
|
||||
/* 1 */
|
||||
font-weight: inherit;
|
||||
/* 1 */
|
||||
line-height: inherit;
|
||||
/* 1 */
|
||||
letter-spacing: inherit;
|
||||
/* 1 */
|
||||
color: inherit;
|
||||
/* 1 */
|
||||
margin: 0;
|
||||
/* 2 */
|
||||
padding: 0;
|
||||
/* 3 */
|
||||
}
|
||||
|
||||
/*
|
||||
Remove the inheritance of text transform in Edge and Firefox.
|
||||
*/
|
||||
|
||||
button,
|
||||
select {
|
||||
text-transform: none;
|
||||
}
|
||||
|
||||
/*
|
||||
1. Correct the inability to style clickable types in iOS and Safari.
|
||||
2. Remove default button styles.
|
||||
*/
|
||||
|
||||
button,
|
||||
input:where([type='button']),
|
||||
input:where([type='reset']),
|
||||
input:where([type='submit']) {
|
||||
-webkit-appearance: button;
|
||||
/* 1 */
|
||||
background-color: transparent;
|
||||
/* 2 */
|
||||
background-image: none;
|
||||
/* 2 */
|
||||
}
|
||||
|
||||
/*
|
||||
Use the modern Firefox focus style for all focusable elements.
|
||||
*/
|
||||
|
||||
:-moz-focusring {
|
||||
outline: auto;
|
||||
}
|
||||
|
||||
/*
|
||||
Remove the additional `:invalid` styles in Firefox. (https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737)
|
||||
*/
|
||||
|
||||
:-moz-ui-invalid {
|
||||
box-shadow: none;
|
||||
}
|
||||
|
||||
/*
|
||||
Add the correct vertical alignment in Chrome and Firefox.
|
||||
*/
|
||||
|
||||
progress {
|
||||
vertical-align: baseline;
|
||||
}
|
||||
|
||||
/*
|
||||
Correct the cursor style of increment and decrement buttons in Safari.
|
||||
*/
|
||||
|
||||
::-webkit-inner-spin-button,
|
||||
::-webkit-outer-spin-button {
|
||||
height: auto;
|
||||
}
|
||||
|
||||
/*
|
||||
1. Correct the odd appearance in Chrome and Safari.
|
||||
2. Correct the outline style in Safari.
|
||||
*/
|
||||
|
||||
[type='search'] {
|
||||
-webkit-appearance: textfield;
|
||||
/* 1 */
|
||||
outline-offset: -2px;
|
||||
/* 2 */
|
||||
}
|
||||
|
||||
/*
|
||||
Remove the inner padding in Chrome and Safari on macOS.
|
||||
*/
|
||||
|
||||
::-webkit-search-decoration {
|
||||
-webkit-appearance: none;
|
||||
}
|
||||
|
||||
/*
|
||||
1. Correct the inability to style clickable types in iOS and Safari.
|
||||
2. Change font properties to `inherit` in Safari.
|
||||
*/
|
||||
|
||||
::-webkit-file-upload-button {
|
||||
-webkit-appearance: button;
|
||||
/* 1 */
|
||||
font: inherit;
|
||||
/* 2 */
|
||||
}
|
||||
|
||||
/*
|
||||
Add the correct display in Chrome and Safari.
|
||||
*/
|
||||
|
||||
summary {
|
||||
display: list-item;
|
||||
}
|
||||
|
||||
/*
|
||||
Removes the default spacing and border for appropriate elements.
|
||||
*/
|
||||
|
||||
blockquote,
|
||||
dl,
|
||||
dd,
|
||||
h1,
|
||||
h2,
|
||||
h3,
|
||||
h4,
|
||||
h5,
|
||||
h6,
|
||||
hr,
|
||||
figure,
|
||||
p,
|
||||
pre {
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
fieldset {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
legend {
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
ol,
|
||||
ul,
|
||||
menu {
|
||||
list-style: none;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
/*
|
||||
Reset default styling for dialogs.
|
||||
*/
|
||||
|
||||
dialog {
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
/*
|
||||
Prevent resizing textareas horizontally by default.
|
||||
*/
|
||||
|
||||
textarea {
|
||||
resize: vertical;
|
||||
}
|
||||
|
||||
/*
|
||||
1. Reset the default placeholder opacity in Firefox. (https://github.com/tailwindlabs/tailwindcss/issues/3300)
|
||||
2. Set the default placeholder color to the user's configured gray 400 color.
|
||||
*/
|
||||
|
||||
input::-moz-placeholder, textarea::-moz-placeholder {
|
||||
opacity: 1;
|
||||
/* 1 */
|
||||
color: #9ca3af;
|
||||
/* 2 */
|
||||
}
|
||||
|
||||
input::placeholder,
|
||||
textarea::placeholder {
|
||||
opacity: 1;
|
||||
/* 1 */
|
||||
color: #9ca3af;
|
||||
/* 2 */
|
||||
}
|
||||
|
||||
/*
|
||||
Set the default cursor for buttons.
|
||||
*/
|
||||
|
||||
button,
|
||||
[role="button"] {
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
/*
|
||||
Make sure disabled buttons don't get the pointer cursor.
|
||||
*/
|
||||
|
||||
:disabled {
|
||||
cursor: default;
|
||||
}
|
||||
|
||||
/*
|
||||
1. Make replaced elements `display: block` by default. (https://github.com/mozdevs/cssremedy/issues/14)
|
||||
2. Add `vertical-align: middle` to align replaced elements more sensibly by default. (https://github.com/jensimmons/cssremedy/issues/14#issuecomment-634934210)
|
||||
This can trigger a poorly considered lint error in some tools but is included by design.
|
||||
*/
|
||||
|
||||
img,
|
||||
svg,
|
||||
video,
|
||||
canvas,
|
||||
audio,
|
||||
iframe,
|
||||
embed,
|
||||
object {
|
||||
display: block;
|
||||
/* 1 */
|
||||
vertical-align: middle;
|
||||
/* 2 */
|
||||
}
|
||||
|
||||
/*
|
||||
Constrain images and videos to the parent width and preserve their intrinsic aspect ratio. (https://github.com/mozdevs/cssremedy/issues/14)
|
||||
*/
|
||||
|
||||
img,
|
||||
video {
|
||||
max-width: 100%;
|
||||
height: auto;
|
||||
}
|
||||
|
||||
/* Make elements with the HTML hidden attribute stay hidden by default */
|
||||
|
||||
[hidden]:where(:not([hidden="until-found"])) {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.visible {
|
||||
visibility: visible;
|
||||
}
|
||||
|
||||
.fixed {
|
||||
position: fixed;
|
||||
}
|
||||
|
||||
.bottom-0 {
|
||||
bottom: 0px;
|
||||
}
|
||||
|
||||
.block {
|
||||
display: block;
|
||||
}
|
||||
|
||||
.inline {
|
||||
display: inline;
|
||||
}
|
||||
|
||||
.flex {
|
||||
display: flex;
|
||||
}
|
||||
|
||||
.table {
|
||||
display: table;
|
||||
}
|
||||
|
||||
.hidden {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.h-0 {
|
||||
height: 0px;
|
||||
}
|
||||
|
||||
.h-full {
|
||||
height: 100%;
|
||||
}
|
||||
|
||||
.h-screen {
|
||||
height: 100vh;
|
||||
}
|
||||
|
||||
.min-w-full {
|
||||
min-width: 100%;
|
||||
}
|
||||
|
||||
.items-center {
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.justify-start {
|
||||
justify-content: flex-start;
|
||||
}
|
||||
|
||||
.justify-center {
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
.space-y-5 > :not([hidden]) ~ :not([hidden]) {
|
||||
--tw-space-y-reverse: 0;
|
||||
margin-top: calc(1.25rem * calc(1 - var(--tw-space-y-reverse)));
|
||||
margin-bottom: calc(1.25rem * var(--tw-space-y-reverse));
|
||||
}
|
||||
|
||||
.truncate {
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
.rounded-lg {
|
||||
border-radius: 0.5rem;
|
||||
}
|
||||
|
||||
.border {
|
||||
border-width: 1px;
|
||||
}
|
||||
|
||||
.bg-purple-200 {
|
||||
--tw-bg-opacity: 1;
|
||||
background-color: rgb(233 213 255 / var(--tw-bg-opacity, 1));
|
||||
}
|
||||
|
||||
.bg-slate-100 {
|
||||
--tw-bg-opacity: 1;
|
||||
background-color: rgb(241 245 249 / var(--tw-bg-opacity, 1));
|
||||
}
|
||||
|
||||
.px-3 {
|
||||
padding-left: 0.75rem;
|
||||
padding-right: 0.75rem;
|
||||
}
|
||||
|
||||
.py-5 {
|
||||
padding-top: 1.25rem;
|
||||
padding-bottom: 1.25rem;
|
||||
}
|
||||
|
||||
.text-center {
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.text-lg {
|
||||
font-size: 1.125rem;
|
||||
line-height: 1.75rem;
|
||||
}
|
||||
|
||||
.uppercase {
|
||||
text-transform: uppercase;
|
||||
}
|
||||
|
||||
.italic {
|
||||
font-style: italic;
|
||||
}
|
||||
|
||||
.underline {
|
||||
text-decoration-line: underline;
|
||||
}
|
||||
|
||||
.shadow-xl {
|
||||
--tw-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
|
||||
--tw-shadow-colored: 0 20px 25px -5px var(--tw-shadow-color), 0 8px 10px -6px var(--tw-shadow-color);
|
||||
box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
|
||||
}
|
||||
|
||||
.hover\:rounded-lg:hover {
|
||||
border-radius: 0.5rem;
|
||||
}
|
||||
|
||||
.hover\:bg-white:hover {
|
||||
--tw-bg-opacity: 1;
|
||||
background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
|
||||
}
|
3
css/styles.css
Normal file
@ -0,0 +1,3 @@
|
||||
a{
|
||||
color: blue;
|
||||
}
|
BIN
data/logo-100.gif
Normal file
After Width: | Height: | Size: 6.3 KiB |
BIN
data/logo-100.jpg
Normal file
After Width: | Height: | Size: 9.1 KiB |
BIN
data/logo-100.png
Normal file
After Width: | Height: | Size: 17 KiB |
BIN
data/logo-200.gif
Normal file
After Width: | Height: | Size: 19 KiB |
BIN
data/logo-200.jpg
Normal file
After Width: | Height: | Size: 26 KiB |
BIN
data/logo-200.png
Normal file
After Width: | Height: | Size: 50 KiB |
BIN
data/logo-500.gif
Normal file
After Width: | Height: | Size: 86 KiB |
BIN
data/logo-500.jpg
Normal file
After Width: | Height: | Size: 105 KiB |
BIN
data/logo-500.png
Normal file
After Width: | Height: | Size: 192 KiB |
BIN
data/logo.gif
Normal file
After Width: | Height: | Size: 49 KiB |
BIN
data/logo.jpg
Normal file
After Width: | Height: | Size: 84 KiB |
BIN
data/logo.png
Normal file
After Width: | Height: | Size: 81 KiB |
2
data/logs/.htaccess
Normal file
@ -0,0 +1,2 @@
|
||||
Order Deny,Allow
|
||||
Deny From All
|
2
data/logs/judge_scheduler_20241219024052.log
Normal file
@ -0,0 +1,2 @@
|
||||
|
||||
Parse error: syntax error, unexpected token "=>" in /var/www/html/sfiab/admin/judges_sa.php on line 398
|
2
data/logs/judge_scheduler_20241219024109.log
Normal file
@ -0,0 +1,2 @@
|
||||
|
||||
Parse error: syntax error, unexpected token "=>" in /var/www/html/sfiab/admin/judges_sa.php on line 398
|
2
data/logs/judge_scheduler_20241219030628.log
Normal file
@ -0,0 +1,2 @@
|
||||
|
||||
Parse error: syntax error, unexpected token "=>" in /var/www/html/sfiab/admin/judges_sa.php on line 398
|
@ -155,7 +155,7 @@ class FCKeditor
|
||||
*/
|
||||
public function CreateHtml()
|
||||
{
|
||||
$HtmlValue = htmlspecialchars( $this->Value ) ;
|
||||
$HtmlValue = htmlspecialchars( get_value_property_or_default($this, 'Value', 'sdf') ) ;
|
||||
|
||||
$Html = '' ;
|
||||
|
||||
|
@ -10,16 +10,33 @@ function get_value_from_array(array $ar, string $key, mixed $default = null) : m
|
||||
return isset($ar[$key]) ? $ar[$key] : $default;
|
||||
}
|
||||
|
||||
function get_value_from_2d_array(array $ar, string $key1, string $key2, mixed $default = null) : mixed
|
||||
{
|
||||
return isset($ar[$key1][$key2]) ? $ar[$key1][$key2] : $default;
|
||||
}
|
||||
|
||||
function get_value(mixed $var) : mixed
|
||||
{
|
||||
return isset($var) ? $var : null;
|
||||
}
|
||||
|
||||
|
||||
function get_value_or_default(mixed $var, mixed $default = null) : mixed {
|
||||
return isset($var) ? $var : $default;
|
||||
}
|
||||
|
||||
function show_pdo_errors_if_any($pdo) {// Check for errors after the query execution
|
||||
function get_value_or_default_boolean(mixed $var, string $key, mixed $default=null): mixed{
|
||||
if($var) return $var[$key];
|
||||
else return $default;
|
||||
}
|
||||
|
||||
function get_value_property_or_default(mixed $var, mixed $property, mixed $default = null) : mixed {
|
||||
|
||||
return $var && property_exists($var, $property) ? $var->$property : $default;
|
||||
}
|
||||
|
||||
function show_pdo_errors_if_any($pdo)
|
||||
{// Check for errors after the query execution
|
||||
$errorInfo = $pdo->errorInfo();
|
||||
if ($errorInfo[0] != '00000') {
|
||||
// If there's an error (the SQLSTATE isn't '00000', which means no error)
|
||||
@ -27,4 +44,16 @@ function show_pdo_errors_if_any($pdo) {// Check for errors after the query execu
|
||||
}
|
||||
}
|
||||
|
||||
function add_or_initialize(mixed $ar, mixed $key, mixed $increment = 1, mixed $initial = 0) : mixed {
|
||||
return isset($ar[$key]) ? ($ar[$key] += $increment) : $initial;
|
||||
}
|
||||
|
||||
function add_or_initialize_multi_2(mixed $ar, mixed $key1, mixed $key2, mixed $increment = 1, mixed $initial = 0) : mixed {
|
||||
return isset($ar[$key1][$key2]) ? ($ar[$key1][$key2] += $increment) : $initial;
|
||||
}
|
||||
|
||||
function add_or_initialize_multi_3(mixed $ar, mixed $key1, mixed $key2, mixed $key3, mixed $increment = 1, mixed $initial = 0) : mixed {
|
||||
return isset($ar[$key1][$key2][$key3]) ? ($ar[$key1][$key2][$key3] += $increment) : $initial;
|
||||
}
|
||||
|
||||
?>
|
@ -34,7 +34,7 @@ $preferencechoices=array(
|
||||
|
||||
function judge_status_expertise(&$u)
|
||||
{
|
||||
global $config;
|
||||
global $config, $pdo;
|
||||
|
||||
/* If the judging special awards are active, and the judge has
|
||||
* selected "I am a special awards judge", then disable
|
||||
@ -75,7 +75,7 @@ function judge_status_questions($u){
|
||||
- count the questions answered by the user which match those id's
|
||||
- if those counts are not the same, then the user has not answered all required questions
|
||||
*/
|
||||
global $config;
|
||||
global $config, $pdo;
|
||||
// get the questions we're looking for
|
||||
$q = $pdo->prepare("SELECT id FROM questions WHERE year=" . $config['FAIRYEAR'] . " AND required='yes'");
|
||||
$q->execute();
|
||||
|
@ -27,7 +27,7 @@
|
||||
require_once('judge.inc.php');
|
||||
|
||||
/* Sort out who we're editting */
|
||||
if($_POST['users_id'])
|
||||
if(get_value_from_array($_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 */
|
||||
@ -42,7 +42,7 @@ if($eid != $_SESSION['users_id']) {
|
||||
|
||||
$u = user_load($eid);
|
||||
|
||||
switch($_GET['action']) {
|
||||
switch(get_value_from_array($_GET, 'action')) {
|
||||
case 'save':
|
||||
if(!is_array($_POST['division']))
|
||||
$_POST['division']=array();
|
||||
@ -175,6 +175,7 @@ echo "<input type=\"hidden\" name=\"users_id\" value=\"{$u['id']}\">\n";
|
||||
$q=$pdo->prepare("SELECT * FROM projectdivisions WHERE year='{$config['FAIRYEAR']}' ORDER BY division");
|
||||
$q->execute();
|
||||
$first = true;
|
||||
$trclass = '';
|
||||
while($r=$q->fetch(PDO::FETCH_OBJ)) {
|
||||
|
||||
$trclass = ($trclass == 'odd') ? 'even' : 'odd';
|
||||
|
@ -33,7 +33,7 @@
|
||||
require_once("questions.inc.php");
|
||||
|
||||
/* Sort out who we're editting */
|
||||
if($_POST['users_id'])
|
||||
if(get_value_from_array($_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 */
|
||||
@ -48,7 +48,7 @@ if($eid != $_SESSION['users_id']) {
|
||||
|
||||
$u = user_load($eid);
|
||||
|
||||
switch($_GET['action']) {
|
||||
switch(get_value_from_array($_GET, 'action')) {
|
||||
case 'save':
|
||||
if(!is_array($_POST['languages'])) $_POST['languages']=array();
|
||||
|
||||
@ -132,7 +132,7 @@ echo "<div id=\"other_info_status\"></div>\n";
|
||||
<?
|
||||
$q=$pdo->prepare("SELECT * FROM languages WHERE active='Y' ORDER BY langname");
|
||||
$q->execute();
|
||||
echo $pdo->errorInfo();
|
||||
show_pdo_errors_if_any($pdo);
|
||||
while($r=$q->fetch(PDO::FETCH_OBJ))
|
||||
{
|
||||
$ch = (in_array($r->lang,$u['languages'])) ? 'checked="checked"' : '';
|
||||
@ -198,7 +198,7 @@ if ($_SESSION['users_type'] == 'committee' && committee_auth_has_access('admin')
|
||||
<?
|
||||
//<td><?=i18n("Private Information")? > </td><td>
|
||||
//<input onchange="fieldChanged()" type="textarea" name="private_info" size="35" value="<?=$u['private_info']? >"></td></tr>
|
||||
echo"<tr><td>".i18n("Private Information").": </td><td><textarea cols=\"110\" rows=\"8\" id=\"private_info\" name=\"private_info\">".htmlspecialchars($u['private_info'])."</textarea><br />";
|
||||
echo"<tr><td>".i18n("Private Information").": </td><td><textarea cols=\"110\" rows=\"8\" id=\"private_info\" name=\"private_info\">".htmlspecialchars(get_value_from_array($u, 'private_info', ''))."</textarea><br />";
|
||||
?>
|
||||
</table>
|
||||
<?
|
||||
|
@ -27,7 +27,7 @@
|
||||
require_once('judge.inc.php');
|
||||
|
||||
/* Sort out who we're editting */
|
||||
if($_POST['users_id'])
|
||||
if(get_value_from_array($_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 */
|
||||
@ -42,7 +42,7 @@ if($eid != $_SESSION['users_id']) {
|
||||
|
||||
$u = user_load($eid);
|
||||
|
||||
switch($_GET['action']) {
|
||||
switch(get_value_from_array($_GET, 'action')) {
|
||||
case 'save':
|
||||
//first delete all their old associations for this year..
|
||||
$stmt = $pdo->prepare("DELETE FROM judges_specialaward_sel WHERE users_id='{$u['id']}'");
|
||||
@ -131,8 +131,8 @@ if($_SESSION['embed'] != true) {
|
||||
AND award_types.year='{$config['FAIRYEAR']}'
|
||||
ORDER BY
|
||||
name");
|
||||
$q->execute();
|
||||
echo $pdo->errorInfo();
|
||||
$q->execute();
|
||||
show_pdo_errors_if_any($pdo);
|
||||
while($r=$q->fetch(PDO::FETCH_OBJ))
|
||||
{
|
||||
?>
|
||||
|
4
lcsv.php
@ -69,7 +69,7 @@ class lcsv
|
||||
}
|
||||
|
||||
//now do the data in the table
|
||||
if($table['data']) {
|
||||
if(get_value_from_array($table, 'data')) {
|
||||
foreach($table['data'] AS $dataline) {
|
||||
for($c=0;$c<$table_cols;$c++) {
|
||||
//escape a single " with ""
|
||||
@ -143,7 +143,7 @@ class lcsv
|
||||
{
|
||||
if($this->csvdata)
|
||||
{
|
||||
$filename=strtolower($this->page_subheader);
|
||||
$filename=strtolower(get_value($this->page_subheader));
|
||||
$filename=preg_replace("[^a-z0-9]","_",$filename);
|
||||
//header("Content-type: application/csv");
|
||||
header("Content-type: text/x-csv");
|
||||
|
@ -36,7 +36,7 @@ function questions_load_answers($section, $users_id)
|
||||
$q=$pdo->prepare("SELECT * FROM question_answers WHERE users_id='$users_id' AND questions_id='$id'");
|
||||
$q->execute();
|
||||
$r=$q->fetch(PDO::FETCH_OBJ);
|
||||
$ans[$id]=$r->answer;
|
||||
$ans[$id]=get_value_or_default($r, 'answer', '');
|
||||
}
|
||||
return $ans;
|
||||
}
|
||||
@ -207,7 +207,7 @@ function questions_editor($section, $year, $array_name, $self)
|
||||
{
|
||||
global $config;
|
||||
global $pdo;
|
||||
if($_POST['action']=="save") {
|
||||
if(get_value_from_array($_POST, 'action') == "save") {
|
||||
|
||||
$qs = questions_parse_from_http_headers('question');
|
||||
$qs['section'] = $section;
|
||||
@ -220,7 +220,7 @@ function questions_editor($section, $year, $array_name, $self)
|
||||
}
|
||||
}
|
||||
|
||||
if($_POST['action']=="new") {
|
||||
if(get_value_from_array($_POST, 'action') == "new") {
|
||||
$q = questions_load_questions($section, $year);
|
||||
$qs = questions_parse_from_http_headers('question');
|
||||
$qs['section'] = $section;
|
||||
@ -233,7 +233,7 @@ function questions_editor($section, $year, $array_name, $self)
|
||||
}
|
||||
}
|
||||
|
||||
if($_GET['action']=="remove" && $_GET['remove'])
|
||||
if(get_value_from_array($_GET, 'action') == "remove" && get_value_from_array($_GET, 'remove'))
|
||||
{
|
||||
$qid = $_GET['remove'];
|
||||
$qs = questions_load_questions($section, $year);
|
||||
@ -255,7 +255,7 @@ function questions_editor($section, $year, $array_name, $self)
|
||||
echo happy(i18n("Question successfully removed"));
|
||||
}
|
||||
|
||||
if($_GET['action']=="import" && $_GET['impyear'])
|
||||
if(get_value_from_array($_GET, 'action') == "import" && get_value_from_array($_GET, 'impyear'))
|
||||
{
|
||||
$x=0;
|
||||
$q = $pdo->prepare("SELECT * FROM questions WHERE year='{$_GET['impyear']}'");
|
||||
@ -301,14 +301,14 @@ function questions_editor($section, $year, $array_name, $self)
|
||||
|
||||
|
||||
$qdir = 0;
|
||||
if($_GET['action']=="up" && $_GET['up']) {
|
||||
if(get_value_from_array($_GET, 'action') == "up" && get_value_from_array($_GET, 'up')) {
|
||||
$qid = $_GET['up'];
|
||||
if($qs[$qid]['ord'] != 1) {
|
||||
$qdir = -1;
|
||||
}
|
||||
|
||||
}
|
||||
if($_GET['action']=="down" && $_GET['down']) {
|
||||
if(get_value_from_array($_GET, 'action') == "down" && get_value_from_array($_GET, 'down')) {
|
||||
$qid = $_GET['down'];
|
||||
if($qs[$qid]['ord'] != count($qs)) {
|
||||
$qdir = 1;
|
||||
@ -346,7 +346,7 @@ function questions_editor($section, $year, $array_name, $self)
|
||||
}
|
||||
|
||||
|
||||
if(($_GET['action']=="edit" && $_GET['edit']) || $_GET['action']=="new") {
|
||||
if((get_value_from_array($_GET, 'action') == "edit" && get_value_from_array($_GET, 'edit')) || get_value_from_array($_GET, 'action') == "new") {
|
||||
|
||||
$showform=true;
|
||||
echo "<form method=\"post\" action=\"$self\">";
|
||||
@ -370,7 +370,7 @@ function questions_editor($section, $year, $array_name, $self)
|
||||
}
|
||||
}
|
||||
if($showform and headers_sent())
|
||||
{
|
||||
{
|
||||
echo "<table class=\"summarytable\">";
|
||||
echo "<tr><td>".i18n("Question")."</td><td>";
|
||||
echo "<input size=\"60\" type=\"text\" name=\"{$array_name}[question]\" value=\"".htmlspecialchars($q['question'])."\">\n";
|
||||
|
@ -46,6 +46,8 @@ interface TableEditorInterface {
|
||||
//cfdc
|
||||
//$icon_path="/phpscripts/images/16";
|
||||
//sfiab
|
||||
global $icon_extension;
|
||||
|
||||
$icon_path="{$config['SFIABDIRECTORY']}/images/16";
|
||||
|
||||
if(!function_exists("i18n"))
|
||||
@ -250,7 +252,7 @@ class TableEditor
|
||||
|
||||
function sortField()
|
||||
{
|
||||
if($_SESSION["TableEditorSort{$this->table}"])
|
||||
if(get_value_from_array($_SESSION, "TableEditorSort{$this->table}"))
|
||||
return $_SESSION["TableEditorSort{$this->table}"];
|
||||
else
|
||||
return $this->sortDefault;
|
||||
@ -304,6 +306,7 @@ class TableEditor
|
||||
{
|
||||
$this->uploadPath=$p;
|
||||
}
|
||||
|
||||
function setDownloadLink($l)
|
||||
{
|
||||
$this->downloadLink=$l;
|
||||
@ -518,12 +521,12 @@ class TableEditor
|
||||
|
||||
function execute()
|
||||
{
|
||||
if($_GET['TableEditorAction']=="sort" && $_GET['sort'])
|
||||
if(get_value_from_array($_GET, 'TableEditorAction')=="sort" && $_GET['sort'])
|
||||
{
|
||||
$this->setSortField($_GET['sort']);
|
||||
}
|
||||
|
||||
if($_GET['TableEditorAction']=="delete" && $_GET['delete'])
|
||||
if(get_value_from_array($_GET, 'TableEditorAction')=="delete" && $_GET['delete'])
|
||||
{
|
||||
if($this->classname)
|
||||
$data = new $this->classname($_GET['delete']);
|
||||
@ -534,13 +537,13 @@ class TableEditor
|
||||
}
|
||||
}
|
||||
|
||||
if($_GET['TableEditorAction']=="page" && $_GET['page'])
|
||||
if(get_value_from_array($_GET, 'TableEditorAction') == "page" && get_value_from_array($_GET, 'page'))
|
||||
{
|
||||
$this->setActivePage($_GET['page']);
|
||||
}
|
||||
|
||||
if( ($_POST['TableEditorAction']=="editsave" && $_POST['editsave'])
|
||||
|| ($_POST['TableEditorAction']=="addsave") )
|
||||
if( (get_value_from_array($_POST, 'TableEditorAction') == "editsave") && get_value_from_array($_POST, 'editsave')
|
||||
|| (get_value_from_array($_POST, 'TableEditorAction') == "addsave") )
|
||||
{
|
||||
if($_POST['TableEditorAction']=="addsave") {
|
||||
if($this->classname)
|
||||
@ -705,7 +708,7 @@ class TableEditor
|
||||
}
|
||||
}
|
||||
|
||||
if($_GET['TableEditorAction']=="add" || ($_GET['TableEditorAction']=="edit" && $_GET['edit']) )
|
||||
if(get_value_from_array($_GET, 'TableEditorAction') == "add" || (get_value_from_array($_GET, 'TableEditorAction') =="edit" && get_value_from_array($_GET, 'edit')) )
|
||||
{
|
||||
if($this->uploadPath)
|
||||
echo "<form name=\"TableEditor\" enctype=\"multipart/form-data\" method=\"post\" action=\"{$_SERVER['PHP_SELF']}\">";
|
||||
@ -958,7 +961,7 @@ class TableEditor
|
||||
echo "</td></tr>";
|
||||
echo "</table>";
|
||||
}
|
||||
else if($_GET['TableEditorAction']=="export")
|
||||
else if(get_value_from_array($_GET, 'TableEditorAction') == "export")
|
||||
{
|
||||
//fixme: how to do an export? we cant send headers because its possible that output has already started!
|
||||
|
||||
@ -1012,6 +1015,7 @@ class TableEditor
|
||||
$query .= " FROM ";
|
||||
foreach($from as $f) $query .= "$f ";
|
||||
$query .= " WHERE 1 ";
|
||||
|
||||
if(is_array($where)) {
|
||||
foreach($where as $w) $query .= "AND $w ";
|
||||
}
|
||||
@ -1034,11 +1038,13 @@ class TableEditor
|
||||
{
|
||||
echo "<a href=\"{$_SERVER['PHP_SELF']}?TableEditorAction=add\">".i18n("Add new %1",array($this->recordType))."</a><br /><br />";
|
||||
}
|
||||
|
||||
if($this->DEBUG) echo $query;
|
||||
|
||||
print("query[$query]");
|
||||
echo $query;
|
||||
$q = $pdo->prepare($query);
|
||||
$q->execute();
|
||||
|
||||
if($q == false) {
|
||||
echo "Sorry, MYSQL query failed: <pre>$query</pre><br />";
|
||||
echo "Error: ".$pdo->errorInfo();
|
||||
|
11
tailwind.config.js
Normal file
@ -0,0 +1,11 @@
|
||||
/** @type {import('tailwindcss').Config} */
|
||||
module.exports = {
|
||||
content: [
|
||||
'*.php'
|
||||
],
|
||||
theme: {
|
||||
extend: {},
|
||||
},
|
||||
plugins: [],
|
||||
}
|
||||
|
@ -19857,7 +19857,7 @@ Putting 1 is equivalent to putting 0 and calling Ln() just after. Default value:
|
||||
// justify block
|
||||
if (!$this->empty_string($this->lispacer)) {
|
||||
$this->lispacer = '';
|
||||
continue;
|
||||
break;
|
||||
}
|
||||
preg_match('/([0-9\.\+\-]*)[\s]([0-9\.\+\-]*)[\s]([0-9\.\+\-]*)[\s]('.$strpiece[1][0].')[\s](re)([\s]*)/x', $pmid, $xmatches);
|
||||
$currentxpos = $xmatches[1];
|
||||
|
BIN
theme/classic copy/images/ui-bg_flat_0_aaaaaa_40x100.png
Normal file
After Width: | Height: | Size: 180 B |
BIN
theme/classic copy/images/ui-bg_flat_0_d0d0ff_40x100.png
Normal file
After Width: | Height: | Size: 180 B |
BIN
theme/classic copy/images/ui-bg_flat_0_eeeeff_40x100.png
Normal file
After Width: | Height: | Size: 180 B |
BIN
theme/classic copy/images/ui-bg_flat_0_ffffff_40x100.png
Normal file
After Width: | Height: | Size: 178 B |
BIN
theme/classic copy/images/ui-bg_flat_75_eeeeff_40x100.png
Normal file
After Width: | Height: | Size: 180 B |
BIN
theme/classic copy/images/ui-bg_glass_55_fbf9ee_1x400.png
Normal file
After Width: | Height: | Size: 120 B |
After Width: | Height: | Size: 113 B |
BIN
theme/classic copy/images/ui-bg_inset-soft_95_fef1ec_1x100.png
Normal file
After Width: | Height: | Size: 123 B |
BIN
theme/classic copy/images/ui-icons_222222_256x240.png
Normal file
After Width: | Height: | Size: 4.3 KiB |
BIN
theme/classic copy/images/ui-icons_2e83ff_256x240.png
Normal file
After Width: | Height: | Size: 4.3 KiB |
BIN
theme/classic copy/images/ui-icons_454545_256x240.png
Normal file
After Width: | Height: | Size: 4.3 KiB |
BIN
theme/classic copy/images/ui-icons_888888_256x240.png
Normal file
After Width: | Height: | Size: 4.3 KiB |
BIN
theme/classic copy/images/ui-icons_cd0a0a_256x240.png
Normal file
After Width: | Height: | Size: 4.3 KiB |
406
theme/classic copy/jquery-ui-1.7.2.custom.css
vendored
Normal file
@ -0,0 +1,406 @@
|
||||
/*
|
||||
* jQuery UI CSS Framework
|
||||
* Copyright (c) 2009 AUTHORS.txt (http://jqueryui.com/about)
|
||||
* Dual licensed under the MIT (MIT-LICENSE.txt) and GPL (GPL-LICENSE.txt) licenses.
|
||||
*/
|
||||
|
||||
/* Layout helpers
|
||||
----------------------------------*/
|
||||
.ui-helper-hidden { display: none; }
|
||||
.ui-helper-hidden-accessible { position: absolute; left: -99999999px; }
|
||||
.ui-helper-reset { margin: 0; padding: 0; border: 0; outline: 0; line-height: 1.3; text-decoration: none; font-size: 100%; list-style: none; }
|
||||
.ui-helper-clearfix:after { content: "."; display: block; height: 0; clear: both; visibility: hidden; }
|
||||
.ui-helper-clearfix { display: inline-block; }
|
||||
/* required comment for clearfix to work in Opera \*/
|
||||
* html .ui-helper-clearfix { height:1%; }
|
||||
.ui-helper-clearfix { display:block; }
|
||||
/* end clearfix */
|
||||
.ui-helper-zfix { width: 100%; height: 100%; top: 0; left: 0; position: absolute; opacity: 0; filter:Alpha(Opacity=0); }
|
||||
|
||||
|
||||
/* Interaction Cues
|
||||
----------------------------------*/
|
||||
.ui-state-disabled { cursor: default !important; }
|
||||
|
||||
|
||||
/* Icons
|
||||
----------------------------------*/
|
||||
|
||||
/* states and images */
|
||||
.ui-icon { display: block; text-indent: -99999px; overflow: hidden; background-repeat: no-repeat; }
|
||||
|
||||
|
||||
/* Misc visuals
|
||||
----------------------------------*/
|
||||
|
||||
/* Overlays */
|
||||
.ui-widget-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }
|
||||
|
||||
|
||||
|
||||
/*
|
||||
* jQuery UI CSS Framework
|
||||
* Copyright (c) 2009 AUTHORS.txt (http://jqueryui.com/about)
|
||||
* Dual licensed under the MIT (MIT-LICENSE.txt) and GPL (GPL-LICENSE.txt) licenses.
|
||||
* To view and modify this theme, visit http://jqueryui.com/themeroller/?ctl=themeroller&ffDefault=Verdana,Arial,sans-serif&fwDefault=normal&fsDefault=1.1em&cornerRadius=4px&bgColorHeader=d0d0ff&bgTextureHeader=04_highlight_hard.png&bgImgOpacityHeader=75&borderColorHeader=a5b5c6&fcHeader=222222&iconColorHeader=222222&bgColorContent=eeeeff&bgTextureContent=01_flat.png&bgImgOpacityContent=75&borderColorContent=a5b5c6&fcContent=222222&iconColorContent=222222&bgColorDefault=d0d0ff&bgTextureDefault=01_flat.png&bgImgOpacityDefault=0&borderColorDefault=a5b5c6&fcDefault=000000&iconColorDefault=888888&bgColorHover=ffffff&bgTextureHover=01_flat.png&bgImgOpacityHover=0&borderColorHover=a5b5c6&fcHover=000000&iconColorHover=454545&bgColorActive=eeeeff&bgTextureActive=01_flat.png&bgImgOpacityActive=0&borderColorActive=a5b5c6&fcActive=000000&iconColorActive=454545&bgColorHighlight=fbf9ee&bgTextureHighlight=02_glass.png&bgImgOpacityHighlight=55&borderColorHighlight=fcefa1&fcHighlight=363636&iconColorHighlight=2e83ff&bgColorError=fef1ec&bgTextureError=05_inset_soft.png&bgImgOpacityError=95&borderColorError=cd0a0a&fcError=cd0a0a&iconColorError=cd0a0a&bgColorOverlay=aaaaaa&bgTextureOverlay=01_flat.png&bgImgOpacityOverlay=0&opacityOverlay=30&bgColorShadow=aaaaaa&bgTextureShadow=01_flat.png&bgImgOpacityShadow=0&opacityShadow=30&thicknessShadow=8px&offsetTopShadow=-8px&offsetLeftShadow=-8px&cornerRadiusShadow=8px
|
||||
*/
|
||||
|
||||
|
||||
/* Component containers
|
||||
----------------------------------*/
|
||||
.ui-widget { font-family: Verdana,Arial,sans-serif; font-size: 1.1em; }
|
||||
.ui-widget input, .ui-widget select, .ui-widget textarea, .ui-widget button { font-family: Verdana,Arial,sans-serif; font-size: 1em; }
|
||||
.ui-widget-content { border: 1px solid #a5b5c6; background: #eeeeff url(images/ui-bg_flat_75_eeeeff_40x100.png) 50% 50% repeat-x; color: #222222; }
|
||||
.ui-widget-content a { color: #222222; }
|
||||
.ui-widget-header { border: 1px solid #a5b5c6; background: #d0d0ff url(images/ui-bg_highlight-hard_75_d0d0ff_1x100.png) 50% 50% repeat-x; color: #222222; font-weight: bold; }
|
||||
.ui-widget-header a { color: #222222; }
|
||||
|
||||
/* Interaction states
|
||||
----------------------------------*/
|
||||
.ui-state-default, .ui-widget-content .ui-state-default { border: 1px solid #a5b5c6; background: #d0d0ff url(images/ui-bg_flat_0_d0d0ff_40x100.png) 50% 50% repeat-x; font-weight: normal; color: #000000; outline: none; }
|
||||
.ui-state-default a, .ui-state-default a:link, .ui-state-default a:visited { color: #000000; text-decoration: none; outline: none; }
|
||||
.ui-state-hover, .ui-widget-content .ui-state-hover, .ui-state-focus, .ui-widget-content .ui-state-focus { border: 1px solid #a5b5c6; background: #ffffff url(images/ui-bg_flat_0_ffffff_40x100.png) 50% 50% repeat-x; font-weight: normal; color: #000000; outline: none; }
|
||||
.ui-state-hover a, .ui-state-hover a:hover { color: #000000; text-decoration: none; outline: none; }
|
||||
.ui-state-active, .ui-widget-content .ui-state-active { border: 1px solid #a5b5c6; background: #eeeeff url(images/ui-bg_flat_0_eeeeff_40x100.png) 50% 50% repeat-x; font-weight: normal; color: #000000; outline: none; }
|
||||
.ui-state-active a, .ui-state-active a:link, .ui-state-active a:visited { color: #000000; outline: none; text-decoration: none; }
|
||||
|
||||
/* Interaction Cues
|
||||
----------------------------------*/
|
||||
.ui-state-highlight, .ui-widget-content .ui-state-highlight {border: 1px solid #fcefa1; background: #fbf9ee url(images/ui-bg_glass_55_fbf9ee_1x400.png) 50% 50% repeat-x; color: #363636; }
|
||||
.ui-state-highlight a, .ui-widget-content .ui-state-highlight a { color: #363636; }
|
||||
.ui-state-error, .ui-widget-content .ui-state-error {border: 1px solid #cd0a0a; background: #fef1ec url(images/ui-bg_inset-soft_95_fef1ec_1x100.png) 50% bottom repeat-x; color: #cd0a0a; }
|
||||
.ui-state-error a, .ui-widget-content .ui-state-error a { color: #cd0a0a; }
|
||||
.ui-state-error-text, .ui-widget-content .ui-state-error-text { color: #cd0a0a; }
|
||||
.ui-state-disabled, .ui-widget-content .ui-state-disabled { opacity: .35; filter:Alpha(Opacity=35); background-image: none; }
|
||||
.ui-priority-primary, .ui-widget-content .ui-priority-primary { font-weight: bold; }
|
||||
.ui-priority-secondary, .ui-widget-content .ui-priority-secondary { opacity: .7; filter:Alpha(Opacity=70); font-weight: normal; }
|
||||
|
||||
/* Icons
|
||||
----------------------------------*/
|
||||
|
||||
/* states and images */
|
||||
.ui-icon { width: 16px; height: 16px; background-image: url(images/ui-icons_222222_256x240.png); }
|
||||
.ui-widget-content .ui-icon {background-image: url(images/ui-icons_222222_256x240.png); }
|
||||
.ui-widget-header .ui-icon {background-image: url(images/ui-icons_222222_256x240.png); }
|
||||
.ui-state-default .ui-icon { background-image: url(images/ui-icons_888888_256x240.png); }
|
||||
.ui-state-hover .ui-icon, .ui-state-focus .ui-icon {background-image: url(images/ui-icons_454545_256x240.png); }
|
||||
.ui-state-active .ui-icon {background-image: url(images/ui-icons_454545_256x240.png); }
|
||||
.ui-state-highlight .ui-icon {background-image: url(images/ui-icons_2e83ff_256x240.png); }
|
||||
.ui-state-error .ui-icon, .ui-state-error-text .ui-icon {background-image: url(images/ui-icons_cd0a0a_256x240.png); }
|
||||
|
||||
/* positioning */
|
||||
.ui-icon-carat-1-n { background-position: 0 0; }
|
||||
.ui-icon-carat-1-ne { background-position: -16px 0; }
|
||||
.ui-icon-carat-1-e { background-position: -32px 0; }
|
||||
.ui-icon-carat-1-se { background-position: -48px 0; }
|
||||
.ui-icon-carat-1-s { background-position: -64px 0; }
|
||||
.ui-icon-carat-1-sw { background-position: -80px 0; }
|
||||
.ui-icon-carat-1-w { background-position: -96px 0; }
|
||||
.ui-icon-carat-1-nw { background-position: -112px 0; }
|
||||
.ui-icon-carat-2-n-s { background-position: -128px 0; }
|
||||
.ui-icon-carat-2-e-w { background-position: -144px 0; }
|
||||
.ui-icon-triangle-1-n { background-position: 0 -16px; }
|
||||
.ui-icon-triangle-1-ne { background-position: -16px -16px; }
|
||||
.ui-icon-triangle-1-e { background-position: -32px -16px; }
|
||||
.ui-icon-triangle-1-se { background-position: -48px -16px; }
|
||||
.ui-icon-triangle-1-s { background-position: -64px -16px; }
|
||||
.ui-icon-triangle-1-sw { background-position: -80px -16px; }
|
||||
.ui-icon-triangle-1-w { background-position: -96px -16px; }
|
||||
.ui-icon-triangle-1-nw { background-position: -112px -16px; }
|
||||
.ui-icon-triangle-2-n-s { background-position: -128px -16px; }
|
||||
.ui-icon-triangle-2-e-w { background-position: -144px -16px; }
|
||||
.ui-icon-arrow-1-n { background-position: 0 -32px; }
|
||||
.ui-icon-arrow-1-ne { background-position: -16px -32px; }
|
||||
.ui-icon-arrow-1-e { background-position: -32px -32px; }
|
||||
.ui-icon-arrow-1-se { background-position: -48px -32px; }
|
||||
.ui-icon-arrow-1-s { background-position: -64px -32px; }
|
||||
.ui-icon-arrow-1-sw { background-position: -80px -32px; }
|
||||
.ui-icon-arrow-1-w { background-position: -96px -32px; }
|
||||
.ui-icon-arrow-1-nw { background-position: -112px -32px; }
|
||||
.ui-icon-arrow-2-n-s { background-position: -128px -32px; }
|
||||
.ui-icon-arrow-2-ne-sw { background-position: -144px -32px; }
|
||||
.ui-icon-arrow-2-e-w { background-position: -160px -32px; }
|
||||
.ui-icon-arrow-2-se-nw { background-position: -176px -32px; }
|
||||
.ui-icon-arrowstop-1-n { background-position: -192px -32px; }
|
||||
.ui-icon-arrowstop-1-e { background-position: -208px -32px; }
|
||||
.ui-icon-arrowstop-1-s { background-position: -224px -32px; }
|
||||
.ui-icon-arrowstop-1-w { background-position: -240px -32px; }
|
||||
.ui-icon-arrowthick-1-n { background-position: 0 -48px; }
|
||||
.ui-icon-arrowthick-1-ne { background-position: -16px -48px; }
|
||||
.ui-icon-arrowthick-1-e { background-position: -32px -48px; }
|
||||
.ui-icon-arrowthick-1-se { background-position: -48px -48px; }
|
||||
.ui-icon-arrowthick-1-s { background-position: -64px -48px; }
|
||||
.ui-icon-arrowthick-1-sw { background-position: -80px -48px; }
|
||||
.ui-icon-arrowthick-1-w { background-position: -96px -48px; }
|
||||
.ui-icon-arrowthick-1-nw { background-position: -112px -48px; }
|
||||
.ui-icon-arrowthick-2-n-s { background-position: -128px -48px; }
|
||||
.ui-icon-arrowthick-2-ne-sw { background-position: -144px -48px; }
|
||||
.ui-icon-arrowthick-2-e-w { background-position: -160px -48px; }
|
||||
.ui-icon-arrowthick-2-se-nw { background-position: -176px -48px; }
|
||||
.ui-icon-arrowthickstop-1-n { background-position: -192px -48px; }
|
||||
.ui-icon-arrowthickstop-1-e { background-position: -208px -48px; }
|
||||
.ui-icon-arrowthickstop-1-s { background-position: -224px -48px; }
|
||||
.ui-icon-arrowthickstop-1-w { background-position: -240px -48px; }
|
||||
.ui-icon-arrowreturnthick-1-w { background-position: 0 -64px; }
|
||||
.ui-icon-arrowreturnthick-1-n { background-position: -16px -64px; }
|
||||
.ui-icon-arrowreturnthick-1-e { background-position: -32px -64px; }
|
||||
.ui-icon-arrowreturnthick-1-s { background-position: -48px -64px; }
|
||||
.ui-icon-arrowreturn-1-w { background-position: -64px -64px; }
|
||||
.ui-icon-arrowreturn-1-n { background-position: -80px -64px; }
|
||||
.ui-icon-arrowreturn-1-e { background-position: -96px -64px; }
|
||||
.ui-icon-arrowreturn-1-s { background-position: -112px -64px; }
|
||||
.ui-icon-arrowrefresh-1-w { background-position: -128px -64px; }
|
||||
.ui-icon-arrowrefresh-1-n { background-position: -144px -64px; }
|
||||
.ui-icon-arrowrefresh-1-e { background-position: -160px -64px; }
|
||||
.ui-icon-arrowrefresh-1-s { background-position: -176px -64px; }
|
||||
.ui-icon-arrow-4 { background-position: 0 -80px; }
|
||||
.ui-icon-arrow-4-diag { background-position: -16px -80px; }
|
||||
.ui-icon-extlink { background-position: -32px -80px; }
|
||||
.ui-icon-newwin { background-position: -48px -80px; }
|
||||
.ui-icon-refresh { background-position: -64px -80px; }
|
||||
.ui-icon-shuffle { background-position: -80px -80px; }
|
||||
.ui-icon-transfer-e-w { background-position: -96px -80px; }
|
||||
.ui-icon-transferthick-e-w { background-position: -112px -80px; }
|
||||
.ui-icon-folder-collapsed { background-position: 0 -96px; }
|
||||
.ui-icon-folder-open { background-position: -16px -96px; }
|
||||
.ui-icon-document { background-position: -32px -96px; }
|
||||
.ui-icon-document-b { background-position: -48px -96px; }
|
||||
.ui-icon-note { background-position: -64px -96px; }
|
||||
.ui-icon-mail-closed { background-position: -80px -96px; }
|
||||
.ui-icon-mail-open { background-position: -96px -96px; }
|
||||
.ui-icon-suitcase { background-position: -112px -96px; }
|
||||
.ui-icon-comment { background-position: -128px -96px; }
|
||||
.ui-icon-person { background-position: -144px -96px; }
|
||||
.ui-icon-print { background-position: -160px -96px; }
|
||||
.ui-icon-trash { background-position: -176px -96px; }
|
||||
.ui-icon-locked { background-position: -192px -96px; }
|
||||
.ui-icon-unlocked { background-position: -208px -96px; }
|
||||
.ui-icon-bookmark { background-position: -224px -96px; }
|
||||
.ui-icon-tag { background-position: -240px -96px; }
|
||||
.ui-icon-home { background-position: 0 -112px; }
|
||||
.ui-icon-flag { background-position: -16px -112px; }
|
||||
.ui-icon-calendar { background-position: -32px -112px; }
|
||||
.ui-icon-cart { background-position: -48px -112px; }
|
||||
.ui-icon-pencil { background-position: -64px -112px; }
|
||||
.ui-icon-clock { background-position: -80px -112px; }
|
||||
.ui-icon-disk { background-position: -96px -112px; }
|
||||
.ui-icon-calculator { background-position: -112px -112px; }
|
||||
.ui-icon-zoomin { background-position: -128px -112px; }
|
||||
.ui-icon-zoomout { background-position: -144px -112px; }
|
||||
.ui-icon-search { background-position: -160px -112px; }
|
||||
.ui-icon-wrench { background-position: -176px -112px; }
|
||||
.ui-icon-gear { background-position: -192px -112px; }
|
||||
.ui-icon-heart { background-position: -208px -112px; }
|
||||
.ui-icon-star { background-position: -224px -112px; }
|
||||
.ui-icon-link { background-position: -240px -112px; }
|
||||
.ui-icon-cancel { background-position: 0 -128px; }
|
||||
.ui-icon-plus { background-position: -16px -128px; }
|
||||
.ui-icon-plusthick { background-position: -32px -128px; }
|
||||
.ui-icon-minus { background-position: -48px -128px; }
|
||||
.ui-icon-minusthick { background-position: -64px -128px; }
|
||||
.ui-icon-close { background-position: -80px -128px; }
|
||||
.ui-icon-closethick { background-position: -96px -128px; }
|
||||
.ui-icon-key { background-position: -112px -128px; }
|
||||
.ui-icon-lightbulb { background-position: -128px -128px; }
|
||||
.ui-icon-scissors { background-position: -144px -128px; }
|
||||
.ui-icon-clipboard { background-position: -160px -128px; }
|
||||
.ui-icon-copy { background-position: -176px -128px; }
|
||||
.ui-icon-contact { background-position: -192px -128px; }
|
||||
.ui-icon-image { background-position: -208px -128px; }
|
||||
.ui-icon-video { background-position: -224px -128px; }
|
||||
.ui-icon-script { background-position: -240px -128px; }
|
||||
.ui-icon-alert { background-position: 0 -144px; }
|
||||
.ui-icon-info { background-position: -16px -144px; }
|
||||
.ui-icon-notice { background-position: -32px -144px; }
|
||||
.ui-icon-help { background-position: -48px -144px; }
|
||||
.ui-icon-check { background-position: -64px -144px; }
|
||||
.ui-icon-bullet { background-position: -80px -144px; }
|
||||
.ui-icon-radio-off { background-position: -96px -144px; }
|
||||
.ui-icon-radio-on { background-position: -112px -144px; }
|
||||
.ui-icon-pin-w { background-position: -128px -144px; }
|
||||
.ui-icon-pin-s { background-position: -144px -144px; }
|
||||
.ui-icon-play { background-position: 0 -160px; }
|
||||
.ui-icon-pause { background-position: -16px -160px; }
|
||||
.ui-icon-seek-next { background-position: -32px -160px; }
|
||||
.ui-icon-seek-prev { background-position: -48px -160px; }
|
||||
.ui-icon-seek-end { background-position: -64px -160px; }
|
||||
.ui-icon-seek-first { background-position: -80px -160px; }
|
||||
.ui-icon-stop { background-position: -96px -160px; }
|
||||
.ui-icon-eject { background-position: -112px -160px; }
|
||||
.ui-icon-volume-off { background-position: -128px -160px; }
|
||||
.ui-icon-volume-on { background-position: -144px -160px; }
|
||||
.ui-icon-power { background-position: 0 -176px; }
|
||||
.ui-icon-signal-diag { background-position: -16px -176px; }
|
||||
.ui-icon-signal { background-position: -32px -176px; }
|
||||
.ui-icon-battery-0 { background-position: -48px -176px; }
|
||||
.ui-icon-battery-1 { background-position: -64px -176px; }
|
||||
.ui-icon-battery-2 { background-position: -80px -176px; }
|
||||
.ui-icon-battery-3 { background-position: -96px -176px; }
|
||||
.ui-icon-circle-plus { background-position: 0 -192px; }
|
||||
.ui-icon-circle-minus { background-position: -16px -192px; }
|
||||
.ui-icon-circle-close { background-position: -32px -192px; }
|
||||
.ui-icon-circle-triangle-e { background-position: -48px -192px; }
|
||||
.ui-icon-circle-triangle-s { background-position: -64px -192px; }
|
||||
.ui-icon-circle-triangle-w { background-position: -80px -192px; }
|
||||
.ui-icon-circle-triangle-n { background-position: -96px -192px; }
|
||||
.ui-icon-circle-arrow-e { background-position: -112px -192px; }
|
||||
.ui-icon-circle-arrow-s { background-position: -128px -192px; }
|
||||
.ui-icon-circle-arrow-w { background-position: -144px -192px; }
|
||||
.ui-icon-circle-arrow-n { background-position: -160px -192px; }
|
||||
.ui-icon-circle-zoomin { background-position: -176px -192px; }
|
||||
.ui-icon-circle-zoomout { background-position: -192px -192px; }
|
||||
.ui-icon-circle-check { background-position: -208px -192px; }
|
||||
.ui-icon-circlesmall-plus { background-position: 0 -208px; }
|
||||
.ui-icon-circlesmall-minus { background-position: -16px -208px; }
|
||||
.ui-icon-circlesmall-close { background-position: -32px -208px; }
|
||||
.ui-icon-squaresmall-plus { background-position: -48px -208px; }
|
||||
.ui-icon-squaresmall-minus { background-position: -64px -208px; }
|
||||
.ui-icon-squaresmall-close { background-position: -80px -208px; }
|
||||
.ui-icon-grip-dotted-vertical { background-position: 0 -224px; }
|
||||
.ui-icon-grip-dotted-horizontal { background-position: -16px -224px; }
|
||||
.ui-icon-grip-solid-vertical { background-position: -32px -224px; }
|
||||
.ui-icon-grip-solid-horizontal { background-position: -48px -224px; }
|
||||
.ui-icon-gripsmall-diagonal-se { background-position: -64px -224px; }
|
||||
.ui-icon-grip-diagonal-se { background-position: -80px -224px; }
|
||||
|
||||
|
||||
/* Misc visuals
|
||||
----------------------------------*/
|
||||
|
||||
/* Corner radius */
|
||||
.ui-corner-tl { -moz-border-radius-topleft: 4px; -webkit-border-top-left-radius: 4px; }
|
||||
.ui-corner-tr { -moz-border-radius-topright: 4px; -webkit-border-top-right-radius: 4px; }
|
||||
.ui-corner-bl { -moz-border-radius-bottomleft: 4px; -webkit-border-bottom-left-radius: 4px; }
|
||||
.ui-corner-br { -moz-border-radius-bottomright: 4px; -webkit-border-bottom-right-radius: 4px; }
|
||||
.ui-corner-top { -moz-border-radius-topleft: 4px; -webkit-border-top-left-radius: 4px; -moz-border-radius-topright: 4px; -webkit-border-top-right-radius: 4px; }
|
||||
.ui-corner-bottom { -moz-border-radius-bottomleft: 4px; -webkit-border-bottom-left-radius: 4px; -moz-border-radius-bottomright: 4px; -webkit-border-bottom-right-radius: 4px; }
|
||||
.ui-corner-right { -moz-border-radius-topright: 4px; -webkit-border-top-right-radius: 4px; -moz-border-radius-bottomright: 4px; -webkit-border-bottom-right-radius: 4px; }
|
||||
.ui-corner-left { -moz-border-radius-topleft: 4px; -webkit-border-top-left-radius: 4px; -moz-border-radius-bottomleft: 4px; -webkit-border-bottom-left-radius: 4px; }
|
||||
.ui-corner-all { -moz-border-radius: 4px; -webkit-border-radius: 4px; }
|
||||
|
||||
/* Overlays */
|
||||
.ui-widget-overlay { background: #aaaaaa url(images/ui-bg_flat_0_aaaaaa_40x100.png) 50% 50% repeat-x; opacity: .30;filter:Alpha(Opacity=30); }
|
||||
.ui-widget-shadow { margin: -8px 0 0 -8px; padding: 8px; background: #aaaaaa url(images/ui-bg_flat_0_aaaaaa_40x100.png) 50% 50% repeat-x; opacity: .30;filter:Alpha(Opacity=30); -moz-border-radius: 8px; -webkit-border-radius: 8px; }/* Accordion
|
||||
----------------------------------*/
|
||||
.ui-accordion .ui-accordion-header { cursor: pointer; position: relative; margin-top: 1px; zoom: 1; }
|
||||
.ui-accordion .ui-accordion-li-fix { display: inline; }
|
||||
.ui-accordion .ui-accordion-header-active { border-bottom: 0 !important; }
|
||||
.ui-accordion .ui-accordion-header a { display: block; font-size: 1em; padding: .5em .5em .5em 2.2em; }
|
||||
.ui-accordion .ui-accordion-header .ui-icon { position: absolute; left: .5em; top: 50%; margin-top: -8px; }
|
||||
.ui-accordion .ui-accordion-content { padding: 1em 2.2em; border-top: 0; margin-top: -2px; position: relative; top: 1px; margin-bottom: 2px; overflow: auto; display: none; }
|
||||
.ui-accordion .ui-accordion-content-active { display: block; }/* Datepicker
|
||||
----------------------------------*/
|
||||
.ui-datepicker { width: 17em; padding: .2em .2em 0; }
|
||||
.ui-datepicker .ui-datepicker-header { position:relative; padding:.2em 0; }
|
||||
.ui-datepicker .ui-datepicker-prev, .ui-datepicker .ui-datepicker-next { position:absolute; top: 2px; width: 1.8em; height: 1.8em; }
|
||||
.ui-datepicker .ui-datepicker-prev-hover, .ui-datepicker .ui-datepicker-next-hover { top: 1px; }
|
||||
.ui-datepicker .ui-datepicker-prev { left:2px; }
|
||||
.ui-datepicker .ui-datepicker-next { right:2px; }
|
||||
.ui-datepicker .ui-datepicker-prev-hover { left:1px; }
|
||||
.ui-datepicker .ui-datepicker-next-hover { right:1px; }
|
||||
.ui-datepicker .ui-datepicker-prev span, .ui-datepicker .ui-datepicker-next span { display: block; position: absolute; left: 50%; margin-left: -8px; top: 50%; margin-top: -8px; }
|
||||
.ui-datepicker .ui-datepicker-title { margin: 0 2.3em; line-height: 1.8em; text-align: center; }
|
||||
.ui-datepicker .ui-datepicker-title select { float:left; font-size:1em; margin:1px 0; }
|
||||
.ui-datepicker select.ui-datepicker-month-year {width: 100%;}
|
||||
.ui-datepicker select.ui-datepicker-month,
|
||||
.ui-datepicker select.ui-datepicker-year { width: 49%;}
|
||||
.ui-datepicker .ui-datepicker-title select.ui-datepicker-year { float: right; }
|
||||
.ui-datepicker table {width: 100%; font-size: .9em; border-collapse: collapse; margin:0 0 .4em; }
|
||||
.ui-datepicker th { padding: .7em .3em; text-align: center; font-weight: bold; border: 0; }
|
||||
.ui-datepicker td { border: 0; padding: 1px; }
|
||||
.ui-datepicker td span, .ui-datepicker td a { display: block; padding: .2em; text-align: right; text-decoration: none; }
|
||||
.ui-datepicker .ui-datepicker-buttonpane { background-image: none; margin: .7em 0 0 0; padding:0 .2em; border-left: 0; border-right: 0; border-bottom: 0; }
|
||||
.ui-datepicker .ui-datepicker-buttonpane button { float: right; margin: .5em .2em .4em; cursor: pointer; padding: .2em .6em .3em .6em; width:auto; overflow:visible; }
|
||||
.ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current { float:left; }
|
||||
|
||||
/* with multiple calendars */
|
||||
.ui-datepicker.ui-datepicker-multi { width:auto; }
|
||||
.ui-datepicker-multi .ui-datepicker-group { float:left; }
|
||||
.ui-datepicker-multi .ui-datepicker-group table { width:95%; margin:0 auto .4em; }
|
||||
.ui-datepicker-multi-2 .ui-datepicker-group { width:50%; }
|
||||
.ui-datepicker-multi-3 .ui-datepicker-group { width:33.3%; }
|
||||
.ui-datepicker-multi-4 .ui-datepicker-group { width:25%; }
|
||||
.ui-datepicker-multi .ui-datepicker-group-last .ui-datepicker-header { border-left-width:0; }
|
||||
.ui-datepicker-multi .ui-datepicker-group-middle .ui-datepicker-header { border-left-width:0; }
|
||||
.ui-datepicker-multi .ui-datepicker-buttonpane { clear:left; }
|
||||
.ui-datepicker-row-break { clear:both; width:100%; }
|
||||
|
||||
/* RTL support */
|
||||
.ui-datepicker-rtl { direction: rtl; }
|
||||
.ui-datepicker-rtl .ui-datepicker-prev { right: 2px; left: auto; }
|
||||
.ui-datepicker-rtl .ui-datepicker-next { left: 2px; right: auto; }
|
||||
.ui-datepicker-rtl .ui-datepicker-prev:hover { right: 1px; left: auto; }
|
||||
.ui-datepicker-rtl .ui-datepicker-next:hover { left: 1px; right: auto; }
|
||||
.ui-datepicker-rtl .ui-datepicker-buttonpane { clear:right; }
|
||||
.ui-datepicker-rtl .ui-datepicker-buttonpane button { float: left; }
|
||||
.ui-datepicker-rtl .ui-datepicker-buttonpane button.ui-datepicker-current { float:right; }
|
||||
.ui-datepicker-rtl .ui-datepicker-group { float:right; }
|
||||
.ui-datepicker-rtl .ui-datepicker-group-last .ui-datepicker-header { border-right-width:0; border-left-width:1px; }
|
||||
.ui-datepicker-rtl .ui-datepicker-group-middle .ui-datepicker-header { border-right-width:0; border-left-width:1px; }
|
||||
|
||||
/* IE6 IFRAME FIX (taken from datepicker 1.5.3 */
|
||||
.ui-datepicker-cover {
|
||||
display: none; /*sorry for IE5*/
|
||||
display/**/: block; /*sorry for IE5*/
|
||||
position: absolute; /*must have*/
|
||||
z-index: -1; /*must have*/
|
||||
filter: mask(); /*must have*/
|
||||
top: -4px; /*must have*/
|
||||
left: -4px; /*must have*/
|
||||
width: 200px; /*must have*/
|
||||
height: 200px; /*must have*/
|
||||
}/* Dialog
|
||||
----------------------------------*/
|
||||
.ui-dialog { position: relative; padding: .2em; width: 300px; }
|
||||
.ui-dialog .ui-dialog-titlebar { padding: .5em .3em .3em 1em; position: relative; }
|
||||
.ui-dialog .ui-dialog-title { float: left; margin: .1em 0 .2em; }
|
||||
.ui-dialog .ui-dialog-titlebar-close { position: absolute; right: .3em; top: 50%; width: 19px; margin: -10px 0 0 0; padding: 1px; height: 18px; }
|
||||
.ui-dialog .ui-dialog-titlebar-close span { display: block; margin: 1px; }
|
||||
.ui-dialog .ui-dialog-titlebar-close:hover, .ui-dialog .ui-dialog-titlebar-close:focus { padding: 0; }
|
||||
.ui-dialog .ui-dialog-content { border: 0; padding: .5em 1em; background: none; overflow: auto; zoom: 1; }
|
||||
.ui-dialog .ui-dialog-buttonpane { text-align: left; border-width: 1px 0 0 0; background-image: none; margin: .5em 0 0 0; padding: .3em 1em .5em .4em; }
|
||||
.ui-dialog .ui-dialog-buttonpane button { float: right; margin: .5em .4em .5em 0; cursor: pointer; padding: .2em .6em .3em .6em; line-height: 1.4em; width:auto; overflow:visible; }
|
||||
.ui-dialog .ui-resizable-se { width: 14px; height: 14px; right: 3px; bottom: 3px; }
|
||||
.ui-draggable .ui-dialog-titlebar { cursor: move; }
|
||||
/* Progressbar
|
||||
----------------------------------*/
|
||||
.ui-progressbar { height:2em; text-align: left; }
|
||||
.ui-progressbar .ui-progressbar-value {margin: -1px; height:100%; }/* Resizable
|
||||
----------------------------------*/
|
||||
.ui-resizable { position: relative;}
|
||||
.ui-resizable-handle { position: absolute;font-size: 0.1px;z-index: 99999; display: block;}
|
||||
.ui-resizable-disabled .ui-resizable-handle, .ui-resizable-autohide .ui-resizable-handle { display: none; }
|
||||
.ui-resizable-n { cursor: n-resize; height: 7px; width: 100%; top: -5px; left: 0px; }
|
||||
.ui-resizable-s { cursor: s-resize; height: 7px; width: 100%; bottom: -5px; left: 0px; }
|
||||
.ui-resizable-e { cursor: e-resize; width: 7px; right: -5px; top: 0px; height: 100%; }
|
||||
.ui-resizable-w { cursor: w-resize; width: 7px; left: -5px; top: 0px; height: 100%; }
|
||||
.ui-resizable-se { cursor: se-resize; width: 12px; height: 12px; right: 1px; bottom: 1px; }
|
||||
.ui-resizable-sw { cursor: sw-resize; width: 9px; height: 9px; left: -5px; bottom: -5px; }
|
||||
.ui-resizable-nw { cursor: nw-resize; width: 9px; height: 9px; left: -5px; top: -5px; }
|
||||
.ui-resizable-ne { cursor: ne-resize; width: 9px; height: 9px; right: -5px; top: -5px;}/* Slider
|
||||
----------------------------------*/
|
||||
.ui-slider { position: relative; text-align: left; }
|
||||
.ui-slider .ui-slider-handle { position: absolute; z-index: 2; width: 1.2em; height: 1.2em; cursor: default; }
|
||||
.ui-slider .ui-slider-range { position: absolute; z-index: 1; font-size: .7em; display: block; border: 0; }
|
||||
|
||||
.ui-slider-horizontal { height: .8em; }
|
||||
.ui-slider-horizontal .ui-slider-handle { top: -.3em; margin-left: -.6em; }
|
||||
.ui-slider-horizontal .ui-slider-range { top: 0; height: 100%; }
|
||||
.ui-slider-horizontal .ui-slider-range-min { left: 0; }
|
||||
.ui-slider-horizontal .ui-slider-range-max { right: 0; }
|
||||
|
||||
.ui-slider-vertical { width: .8em; height: 100px; }
|
||||
.ui-slider-vertical .ui-slider-handle { left: -.3em; margin-left: 0; margin-bottom: -.6em; }
|
||||
.ui-slider-vertical .ui-slider-range { left: 0; width: 100%; }
|
||||
.ui-slider-vertical .ui-slider-range-min { bottom: 0; }
|
||||
.ui-slider-vertical .ui-slider-range-max { top: 0; }/* Tabs
|
||||
----------------------------------*/
|
||||
.ui-tabs { padding: .2em; zoom: 1; }
|
||||
.ui-tabs .ui-tabs-nav { list-style: none; position: relative; padding: .2em .2em 0; }
|
||||
.ui-tabs .ui-tabs-nav li { position: relative; float: left; border-bottom-width: 0 !important; margin: 0 .2em -1px 0; padding: 0; }
|
||||
.ui-tabs .ui-tabs-nav li a { float: left; text-decoration: none; padding: .5em 1em; }
|
||||
.ui-tabs .ui-tabs-nav li.ui-tabs-selected { padding-bottom: 1px; border-bottom-width: 0; }
|
||||
.ui-tabs .ui-tabs-nav li.ui-tabs-selected a, .ui-tabs .ui-tabs-nav li.ui-state-disabled a, .ui-tabs .ui-tabs-nav li.ui-state-processing a { cursor: text; }
|
||||
.ui-tabs .ui-tabs-nav li a, .ui-tabs.ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-selected a { cursor: pointer; } /* first selector in group seems obsolete, but required to overcome bug in Opera applying cursor: text overall if defined elsewhere... */
|
||||
.ui-tabs .ui-tabs-panel { padding: 1em 1.4em; display: block; border-width: 0; background: none; }
|
||||
.ui-tabs .ui-tabs-hide { display: none !important; }
|
444
theme/classic copy/sfiab.css
Normal file
@ -0,0 +1,444 @@
|
||||
body
|
||||
{
|
||||
font-family: Verdana, Arial, Sans-Serif;
|
||||
font-size: small;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
background: #E0E0FF;
|
||||
height:100%;
|
||||
}
|
||||
|
||||
input, textarea, select
|
||||
{
|
||||
font-family: Verdana, Arial, Sans-Serif;
|
||||
font-size: small;
|
||||
}
|
||||
|
||||
td {
|
||||
vertical-align: top;
|
||||
}
|
||||
|
||||
|
||||
table tr.even {
|
||||
background: #EEEEFF;
|
||||
}
|
||||
|
||||
table tr.odd {
|
||||
background: #E0E0F8;
|
||||
}
|
||||
|
||||
#header {
|
||||
height: 50px;
|
||||
text-align: center;
|
||||
background: #E0E0FF;
|
||||
padding: 10px;
|
||||
}
|
||||
|
||||
#footer {
|
||||
width: 100%;
|
||||
text-align: center;
|
||||
background-color : #5C6F90;
|
||||
font-size: 0.8em;
|
||||
}
|
||||
|
||||
#footer a {
|
||||
text-decoration: none;
|
||||
font-size: 1em;
|
||||
color: #FFFFFF;
|
||||
}
|
||||
|
||||
#left {
|
||||
width: 165px;
|
||||
background: #EEEEFF;
|
||||
border: 2px solid Silver;
|
||||
padding: 5px;
|
||||
font-size: 1.0em;
|
||||
}
|
||||
|
||||
|
||||
#main {
|
||||
margin-right: 10px;
|
||||
background: #FFFFFF;
|
||||
padding: 3px;
|
||||
border: 2px solid Silver;
|
||||
min-height: 600px;
|
||||
width: 99%;
|
||||
}
|
||||
|
||||
#mainwhere {
|
||||
margin-right: 10px;
|
||||
background: #EEEEFF;
|
||||
padding: 3px;
|
||||
border-top: 2px solid Silver;
|
||||
border-left: 2px solid Silver;
|
||||
border-right: 2px solid Silver;
|
||||
font-size: 0.85em;
|
||||
width: 99%;
|
||||
}
|
||||
|
||||
|
||||
#emptypopup {
|
||||
padding: 30px;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
h1 {
|
||||
font-size: 2.0em;
|
||||
font-weight: bold;
|
||||
margin-top: 0;
|
||||
margin-bottom: 0;
|
||||
}
|
||||
h2 {
|
||||
font-size: 1.6em;
|
||||
font-weight: bold;
|
||||
margin-top: 0;
|
||||
margin-bottom: .3em;
|
||||
}
|
||||
h3 {
|
||||
font-size: 1.4em;
|
||||
font-weight: bold;
|
||||
margin-top: 0;
|
||||
margin-bottom: .2em;
|
||||
}
|
||||
h4 {
|
||||
font-size: 1.2em;
|
||||
font-weight: bold;
|
||||
margin-top: 0;
|
||||
margin-bottom: .1em;
|
||||
}
|
||||
|
||||
ul.mainnav {
|
||||
list-style : none;
|
||||
margin : 0;
|
||||
padding : 0;
|
||||
background-color : #d6d6d6;
|
||||
width: 165px;
|
||||
}
|
||||
|
||||
ul.mainnav li {
|
||||
display : block;
|
||||
border-top : 1px solid #a5b5c6;
|
||||
}
|
||||
|
||||
ul.mainnav li a {
|
||||
display : block;
|
||||
margin : 0;
|
||||
padding : 6px;
|
||||
background-color : #5C6F90;
|
||||
font : bold 0.9em/1.5em Arial, sans-serif;
|
||||
color : #fff;
|
||||
text-decoration : none;
|
||||
}
|
||||
|
||||
ul.mainnav li a:hover {
|
||||
background-color : #63616b;
|
||||
color : #eee;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
.aligncenter {
|
||||
width: 100%;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
a {
|
||||
text-decoration: none;
|
||||
font-size: 1em;
|
||||
color: #5C6F90;
|
||||
}
|
||||
|
||||
a:hover {
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
.summarytable {
|
||||
border-collapse: collapse;
|
||||
border-spacing: 0px;
|
||||
border: 2px solid black;
|
||||
margin: 0px;
|
||||
padding: 0px;
|
||||
margin-left: 30px;
|
||||
margin-right: 30px;
|
||||
|
||||
}
|
||||
|
||||
.summarytable th {
|
||||
border: 2px solid black;
|
||||
background-color: #5C6F90;
|
||||
padding: 5px;
|
||||
margin: 0px;
|
||||
font-size: 1.0em;
|
||||
color: white;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
.summarytable th a{
|
||||
font-size: 1.0em;
|
||||
color: white;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
.summarytable td {
|
||||
border: 2px solid black;
|
||||
margin: 0px;
|
||||
padding: 2px;
|
||||
|
||||
}
|
||||
|
||||
.complete {
|
||||
color: green;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
.incomplete {
|
||||
color: red;
|
||||
font-weight: bold;
|
||||
|
||||
}
|
||||
|
||||
.error {
|
||||
color: red;
|
||||
font-weight: bold;
|
||||
border: 1px solid red;
|
||||
background: #F0DCDC;
|
||||
}
|
||||
|
||||
|
||||
.notice {
|
||||
font-weight: bold;
|
||||
border: 1px solid Silver;
|
||||
/*background: #E0E0FF; */
|
||||
background: #FFFFE0;
|
||||
font-size: 1em;
|
||||
}
|
||||
|
||||
.happy {
|
||||
color: green;
|
||||
font-weight: bold;
|
||||
border: 1px solid Silver;
|
||||
background: #D0EED0;
|
||||
font-size: 1em;
|
||||
}
|
||||
|
||||
.caution {
|
||||
text-decoration: none;
|
||||
font-weight: bold;
|
||||
font-size: 1em;
|
||||
color: red;
|
||||
}
|
||||
|
||||
a.caution:hover {
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
.requiredfield {
|
||||
font-weight: bold;
|
||||
font-size: 0.8em;
|
||||
color: #FF0000;
|
||||
}
|
||||
|
||||
.headertable td {
|
||||
vertical-align: baseline;
|
||||
}
|
||||
|
||||
hr {
|
||||
margin-top: 2px;
|
||||
}
|
||||
|
||||
tr.externalaward {
|
||||
font-style: italic;
|
||||
color: #0000AA;
|
||||
}
|
||||
|
||||
.adminconfigtable {
|
||||
border-collapse: collapse;
|
||||
}
|
||||
|
||||
.adminconfigtable td {
|
||||
text-align: center;
|
||||
padding: 5px;
|
||||
width: 128px;
|
||||
color: #999999;
|
||||
}
|
||||
|
||||
.fundraisingpending {
|
||||
color: black;
|
||||
border: 1px solid #FFAAAA;
|
||||
background: #FFAAAA;
|
||||
}
|
||||
|
||||
.fundraisingconfirmed {
|
||||
color: black;
|
||||
border: 1px solid #FFFFAA;
|
||||
background: #FFFFAA;
|
||||
}
|
||||
|
||||
|
||||
.fundraisingreceived {
|
||||
color: black;
|
||||
border: 1px solid #AAFFAA;
|
||||
background: #AAFFAA;
|
||||
}
|
||||
|
||||
.fundraisingtable {
|
||||
border-collapse: collapse;
|
||||
border-spacing: 0px;
|
||||
border: 0px;
|
||||
margin: 0px;
|
||||
padding: 0px;
|
||||
margin-left: 30px;
|
||||
margin-right: 30px;
|
||||
font-size: 0.8em;
|
||||
|
||||
}
|
||||
|
||||
.fundraisingtable th {
|
||||
border: 1px solid black;
|
||||
background-color: #5C6F90;
|
||||
padding: 2px;
|
||||
margin: 0px;
|
||||
font-size: 1.0em;
|
||||
color: white;
|
||||
font-weight: bold;
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
.fundraisingtable th a{
|
||||
color: white;
|
||||
font-weight: normal;
|
||||
}
|
||||
|
||||
.fundraisingtable td {
|
||||
border: 1px solid black;
|
||||
margin: 0px;
|
||||
padding: 1px;
|
||||
|
||||
}
|
||||
|
||||
/* Notice area floating along the top of the page */
|
||||
div.notice_area {
|
||||
left: 0;
|
||||
top: 0;
|
||||
width: 100%;
|
||||
position: fixed;
|
||||
z-index: 9999;
|
||||
}
|
||||
|
||||
div.notice_area div {
|
||||
padding: 0.1em 0;
|
||||
border: 0;
|
||||
text-align: center;
|
||||
position: relative;
|
||||
font-size: 1.5em;
|
||||
background-color: #FFFFE0;
|
||||
}
|
||||
|
||||
div.notice_area div.notice {
|
||||
border: 3px solid yellow;
|
||||
color: black;
|
||||
background-color: #FFFFE0;
|
||||
}
|
||||
|
||||
div.notice_area div.error {
|
||||
border: 3px solid red;
|
||||
color: red;
|
||||
background-color: #FF9999;
|
||||
}
|
||||
|
||||
div.notice_area div.happy {
|
||||
/* border: 2px solid white;
|
||||
color: green;
|
||||
background-color: #99FF99;*/
|
||||
color: white;
|
||||
background-color: green;
|
||||
}
|
||||
|
||||
.date {
|
||||
width: 80px;
|
||||
|
||||
}
|
||||
|
||||
/* The popup windows created with jquery-ui use the following classes:
|
||||
* div.ui-dialog
|
||||
* div.ui-dialog-titlebar - includes the next 2 items in the div
|
||||
* span.ui-dialog-title-dialog - Title text
|
||||
* a.ui-dialog-titlebar-close
|
||||
* ui-dialog-content */
|
||||
|
||||
/* Override the background colour */
|
||||
.ui-dialog {
|
||||
background: #e0e0ff;
|
||||
}
|
||||
|
||||
.ui-widget {
|
||||
font-size: 1em;
|
||||
}
|
||||
|
||||
/* Override the titlebar padding, it's too big, make the font
|
||||
* a happy size */
|
||||
.ui-dialog .ui-dialog-titlebar {
|
||||
padding: 0.2em 0.5em 0.2em .5em ;
|
||||
font-size: 1.2em;
|
||||
font-weight: bold;
|
||||
text-align: center;
|
||||
|
||||
}
|
||||
|
||||
/* Required for tabs to work */
|
||||
.ui-tabs .ui-tabs-hide {
|
||||
display: none;
|
||||
}
|
||||
|
||||
/* Rework the tabs, the default layout with a separate div
|
||||
behind only the tabs is silly, and it looks stupid. */
|
||||
div.ui-tabs {
|
||||
background: none;
|
||||
border: none;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
div.ui-tabs div.ui-tabs-panel {
|
||||
border: 1px solid #A5B5C6;
|
||||
background: #eeeeff;
|
||||
}
|
||||
|
||||
div.ui-tabs ul.ui-tabs-nav {
|
||||
border: 0;
|
||||
background: none;
|
||||
}
|
||||
|
||||
/* Dump the HUGE tab border and change the font. We need to
|
||||
* rework the fonts for ALL of sfiab. "1em" in here is about 20pt*/
|
||||
.ui-tabs .ui-tabs-nav li a {
|
||||
padding: 0.1em 0.3em 0.1em 0.3em;
|
||||
font-size: 1em;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
.ui-datepicker {
|
||||
z-index: 1003;
|
||||
}
|
||||
|
||||
.text-link {
|
||||
cursor: pointer;
|
||||
color: #5C6F90;
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
.text-link-selected {
|
||||
font-weight: bold;
|
||||
cursor: default;
|
||||
text-decoration: none;
|
||||
color: #000000;
|
||||
}
|
||||
|
||||
.text-link-disabled {
|
||||
font-weight: none;
|
||||
cursor: default;
|
||||
text-decoration: none;
|
||||
color: #c0c0c0;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
27
theme/classic copy/theme.php
Normal file
@ -0,0 +1,27 @@
|
||||
<?
|
||||
/*
|
||||
This file is part of the 'Science Fair In A Box' project
|
||||
SFIAB Website: http://www.sfiab.ca
|
||||
|
||||
Copyright (C) 2008 James Grant <james@lightbox.org>
|
||||
|
||||
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.
|
||||
*/
|
||||
|
||||
$theme['name']="Classic";
|
||||
$theme['description']="A classic colour scheme";
|
||||
$theme['author']="James Grant <james@lightbox.org>";
|
||||
|
||||
?>
|
@ -47,14 +47,6 @@ table tr.odd {
|
||||
color: #FFFFFF;
|
||||
}
|
||||
|
||||
#left {
|
||||
width: 165px;
|
||||
background: #EEEEFF;
|
||||
border: 2px solid Silver;
|
||||
padding: 5px;
|
||||
font-size: 1.0em;
|
||||
}
|
||||
|
||||
|
||||
#main {
|
||||
margin-right: 10px;
|
||||
@ -107,34 +99,6 @@ h4 {
|
||||
margin-bottom: .1em;
|
||||
}
|
||||
|
||||
ul.mainnav {
|
||||
list-style : none;
|
||||
margin : 0;
|
||||
padding : 0;
|
||||
background-color : #d6d6d6;
|
||||
width: 165px;
|
||||
}
|
||||
|
||||
ul.mainnav li {
|
||||
display : block;
|
||||
border-top : 1px solid #a5b5c6;
|
||||
}
|
||||
|
||||
ul.mainnav li a {
|
||||
display : block;
|
||||
margin : 0;
|
||||
padding : 6px;
|
||||
background-color : #5C6F90;
|
||||
font : bold 0.9em/1.5em Arial, sans-serif;
|
||||
color : #fff;
|
||||
text-decoration : none;
|
||||
}
|
||||
|
||||
ul.mainnav li a:hover {
|
||||
background-color : #63616b;
|
||||
color : #eee;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
.aligncenter {
|
||||
width: 100%;
|
||||
|
1
theme/dropped text.txt
Normal file
@ -0,0 +1 @@
|
||||
/home/dev/Repositories/sfiab/theme/icons_default
|
@ -25,53 +25,53 @@
|
||||
$theme_icons['author']="James Grant <james@lightbox.org>";
|
||||
|
||||
//COMMITTEE MAIN ICONS (that are not used in admin/config already)
|
||||
$theme_icons['icons']['change_password']="encrypted.png";
|
||||
$theme_icons['icons']['edit_profile']="edit_user.png";
|
||||
$theme_icons['icons']['manage_roles']="agt_forum.png";
|
||||
$theme_icons['icons']['change_password']="../material_icons/encrypted.png";
|
||||
$theme_icons['icons']['edit_profile']="../material_icons/edit_user.png";
|
||||
$theme_icons['icons']['manage_roles']="../material_icons/agt_forum.png";
|
||||
|
||||
//ADMIN ICONS
|
||||
$theme_icons['icons']['administration']="gear.png";
|
||||
$theme_icons['icons']['participant_registration']="accessories-text-editor.png";
|
||||
$theme_icons['icons']['print/export_reports']="application-pdf.png";
|
||||
$theme_icons['icons']['print_awards_ceremony_scripts']="application-pdf.png";
|
||||
$theme_icons['icons']['committee_management']="system-users.png";
|
||||
$theme_icons['icons']['awards_management']="plasmagik.png";
|
||||
$theme_icons['icons']['schools_management']="applications-education.png";
|
||||
$theme_icons['icons']['judging_management']="klipper.png";
|
||||
$theme_icons['icons']['sciencefair_management']="folder.png";
|
||||
$theme_icons['icons']['translations_management']="kwordquiz.png";
|
||||
$theme_icons['icons']['report_management']="document-multiple.png";
|
||||
$theme_icons['icons']['volunteer_management']="user-group-new.png";
|
||||
$theme_icons['icons']['tour_management']="preferences-system-performance.png";
|
||||
$theme_icons['icons']['internal_document_management']="application-vnd.oasis.opendocument.text.png";
|
||||
$theme_icons['icons']['registration_fee_items_management']="transfers_list.png";
|
||||
$theme_icons['icons']['judging_score_entry']="transfers_list.png";
|
||||
$theme_icons['icons']['enter_winning_projects']="legalmoves.png";
|
||||
$theme_icons['icons']['one-click_cwsf_registration']="flag-blue.png";
|
||||
$theme_icons['icons']['one-click_ysf_affiliation_stats']="flag-green.png";
|
||||
$theme_icons['icons']['fair_stats']="view_sort_descending.png";
|
||||
$theme_icons['icons']['communication']="mail-mark-unread.png";
|
||||
$theme_icons['icons']['website_content_management']="toggle_log.png";
|
||||
$theme_icons['icons']['fundraising']="Coins-32x32.png";
|
||||
$theme_icons['icons']['administration']="../material_icons/gear.png";
|
||||
$theme_icons['icons']['participant_registration']="../material_icons/accessories-text-editor.png";
|
||||
$theme_icons['icons']['print/export_reports']="../material_icons/application-pdf.png";
|
||||
$theme_icons['icons']['print_awards_ceremony_scripts']="../material_icons/application-pdf.png";
|
||||
$theme_icons['icons']['committee_management']="../material_icons/system-users.png";
|
||||
$theme_icons['icons']['awards_management']="../material_icons/plasmagik.png";
|
||||
$theme_icons['icons']['schools_management']="../material_icons/applications-education.png";
|
||||
$theme_icons['icons']['judging_management']="../material_icons/klipper.png";
|
||||
$theme_icons['icons']['sciencefair_management']="../material_icons/folder.png";
|
||||
$theme_icons['icons']['translations_management']="../material_icons/kwordquiz.png";
|
||||
$theme_icons['icons']['report_management']="../material_icons/document-multiple.png";
|
||||
$theme_icons['icons']['volunteer_management']="../material_icons/user-group-new.png";
|
||||
$theme_icons['icons']['tour_management']="../material_icons/preferences-system-performance.png";
|
||||
$theme_icons['icons']['internal_document_management']="../material_icons/application-vnd.oasis.opendocument.text.png";
|
||||
$theme_icons['icons']['registration_fee_items_management']="../material_icons/transfers_list.png";
|
||||
$theme_icons['icons']['judging_score_entry']="../material_icons/transfers_list.png";
|
||||
$theme_icons['icons']['enter_winning_projects']="../material_icons/legalmoves.png";
|
||||
$theme_icons['icons']['one-click_cwsf_registration']="../material_icons/flag-blue.png";
|
||||
$theme_icons['icons']['one-click_ysf_affiliation_stats']="../material_icons/flag-green.png";
|
||||
$theme_icons['icons']['fair_stats']="../material_icons/view_sort_descending.png";
|
||||
$theme_icons['icons']['communication']="../material_icons/mail-mark-unread.png";
|
||||
$theme_icons['icons']['website_content_management']="../material_icons/toggle_log.png";
|
||||
$theme_icons['icons']['fundraising']="../material_icons/Coins-32x32.png";
|
||||
|
||||
//CONFIG ICONS
|
||||
$theme_icons['icons']['configuration']="package_utilities.png";
|
||||
$theme_icons['icons']['configuration_variables']="configure.png";
|
||||
$theme_icons['icons']['important_dates']="date.png";
|
||||
$theme_icons['icons']['project_age_categories']="kdmconfig.png";
|
||||
$theme_icons['icons']['project_divisions']="edu_science.png";
|
||||
$theme_icons['icons']['cwsf_project_divisions']="edu_science_canada.png";
|
||||
$theme_icons['icons']['project_sub_divisions']="chemical.png";
|
||||
$theme_icons['icons']['page_texts']="kwrite.png";
|
||||
$theme_icons['icons']['exhibitor_signature_page']="signature.png";
|
||||
$theme_icons['icons']['judge_registration_questions']="vcs_status.png";
|
||||
$theme_icons['icons']['project_safety_questions']="help-contents.png";
|
||||
$theme_icons['icons']['images']="elempic.png";
|
||||
$theme_icons['icons']['external_award_sources']="ark.png";
|
||||
$theme_icons['icons']['language_pack_installer']="kanagram.png";
|
||||
$theme_icons['icons']['new_version_checker']="numbers.png";
|
||||
$theme_icons['icons']['rollover_fair_year']="svn_switch.png";
|
||||
$theme_icons['icons']['rollover_fiscal_year']="rollover_fiscal.png";
|
||||
$theme_icons['icons']['backup_restore']="rebuild.png";
|
||||
$theme_icons['icons']['configuration']="../material_icons/../material_icons/package_utilities.png";
|
||||
$theme_icons['icons']['configuration_variables']="../material_icons/configure.png";
|
||||
$theme_icons['icons']['important_dates']="../material_icons/date.png";
|
||||
$theme_icons['icons']['project_age_categories']="../material_icons/kdmconfig.png";
|
||||
$theme_icons['icons']['project_divisions']="../material_icons/edu_science.png";
|
||||
$theme_icons['icons']['cwsf_project_divisions']="../material_icons/edu_science_canada.png";
|
||||
$theme_icons['icons']['project_sub_divisions']="../material_icons/chemical.png";
|
||||
$theme_icons['icons']['page_texts']="../material_icons/kwrite.png";
|
||||
$theme_icons['icons']['exhibitor_signature_page']="../material_icons/signature.png";
|
||||
$theme_icons['icons']['judge_registration_questions']="../material_icons/vcs_status.png";
|
||||
$theme_icons['icons']['project_safety_questions']="../material_icons/help-contents.png";
|
||||
$theme_icons['icons']['images']="../material_icons/elempic.png";
|
||||
$theme_icons['icons']['external_award_sources']="../material_icons/ark.png";
|
||||
$theme_icons['icons']['language_pack_installer']="../material_icons/kanagram.png";
|
||||
$theme_icons['icons']['new_version_checker']="../material_icons/numbers.png";
|
||||
$theme_icons['icons']['rollover_fair_year']="../material_icons/svn_switch.png";
|
||||
$theme_icons['icons']['rollover_fiscal_year']="../material_icons/rollover_fiscal.png";
|
||||
$theme_icons['icons']['backup_restore']="../material_icons/rebuild.png";
|
||||
|
||||
?>
|
||||
|
BIN
theme/material_icons/Coins-32x32.png
Normal file
After Width: | Height: | Size: 3.2 KiB |
BIN
theme/material_icons/accessories-text-editor.png
Normal file
After Width: | Height: | Size: 1.7 KiB |
BIN
theme/material_icons/agt_forum.png
Normal file
After Width: | Height: | Size: 1.9 KiB |
BIN
theme/material_icons/application-pdf.png
Normal file
After Width: | Height: | Size: 1.0 KiB |