Changed icons to Material Icons
@ -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;
|
||||
|
||||
|
@ -395,12 +395,13 @@ function send_header($title="", $nav=null, $icon=null, $titletranslated=false)
|
||||
echo "<?xml version=\"1.0\" encoding=\"iso-8859-1\" ?>\n";
|
||||
?>
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<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']?>/theme/<?=$config['theme']?>/jquery-ui-1.7.2.custom.css" type="text/css" media="all" />
|
||||
<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 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>
|
||||
@ -413,7 +414,7 @@ function send_header($title="", $nav=null, $icon=null, $titletranslated=false)
|
||||
}
|
||||
</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>
|
||||
@ -431,10 +432,10 @@ 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 class='text-lg'>".i18n($config['fairname'])."</h1>";
|
||||
echo "<div align=\"right\" style=\"font-size: 0.75em;\">";
|
||||
@ -468,8 +469,8 @@ 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">
|
||||
<?
|
||||
//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,
|
||||
@ -477,8 +478,9 @@ echo "</div>";
|
||||
|
||||
//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=("SELECT (NOW()>'".$config['dates']['regclose']."') AS test");
|
||||
{ global $pdo;
|
||||
$q=$pdo->prepare("SELECT (NOW()>'".$config['dates']['regclose']."') AS test");
|
||||
$q->execute();
|
||||
$r=$q->fetch();
|
||||
if($r->test==1)
|
||||
{
|
||||
@ -487,7 +489,7 @@ echo "</div>";
|
||||
}
|
||||
?>
|
||||
|
||||
<div class='bg-white rounded-lg shadow-xl p-3' 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);
|
||||
@ -508,12 +510,12 @@ if(is_array($nav)) {
|
||||
}
|
||||
}
|
||||
?>
|
||||
<ul class="mainnav">
|
||||
<ul class="mainnav px-3 space-y-5">
|
||||
<?
|
||||
echo "<li class='flex items-center'><span class='material-symbols-outlined'>
|
||||
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 items-center px-3'><span class='material-symbols-outlined'>
|
||||
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>';
|
||||
|
||||
@ -525,27 +527,37 @@ calendar_month
|
||||
echo "<li><a href=\"{$config['SFIABDIRECTORY']}/user_login.php?type=volunteer\">".i18n("Volunteer Registration").'</a></li>';
|
||||
}
|
||||
*/
|
||||
echo "<li class='flex items-center px-3'><span class='material-symbols-outlined'>
|
||||
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 items-center px-3'><span class='material-symbols-outlined'>
|
||||
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($_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>';
|
||||
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>';
|
||||
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>';
|
||||
@ -566,12 +578,12 @@ 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 class='flex items-center'><span class='material-symbols-outlined'>
|
||||
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 />";
|
||||
@ -589,7 +601,7 @@ if(count($config['languages'])>1) {
|
||||
?>
|
||||
</div>
|
||||
<?
|
||||
echo "<br /><ul class=\"mainnav\">\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";
|
||||
@ -597,7 +609,7 @@ echo "</ul>";
|
||||
?>
|
||||
|
||||
</div>
|
||||
</td><td>
|
||||
</td><td class=''>
|
||||
<?
|
||||
|
||||
if(is_array($nav)) {
|
||||
@ -613,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"))
|
||||
@ -623,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\">";
|
||||
@ -660,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)
|
||||
@ -703,10 +715,10 @@ function send_popup_header($title="")
|
||||
<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()">
|
||||
|
||||
@ -1136,8 +1148,8 @@ function output_page_cms($filename)
|
||||
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(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;
|
||||
}
|
||||
|
@ -562,12 +562,8 @@ video {
|
||||
position: fixed;
|
||||
}
|
||||
|
||||
.m-10 {
|
||||
margin: 2.5rem;
|
||||
}
|
||||
|
||||
.ml-3 {
|
||||
margin-left: 0.75rem;
|
||||
.bottom-0 {
|
||||
bottom: 0px;
|
||||
}
|
||||
|
||||
.block {
|
||||
@ -594,14 +590,36 @@ video {
|
||||
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;
|
||||
@ -616,17 +634,14 @@ video {
|
||||
border-width: 1px;
|
||||
}
|
||||
|
||||
.bg-white {
|
||||
.bg-purple-200 {
|
||||
--tw-bg-opacity: 1;
|
||||
background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
|
||||
background-color: rgb(233 213 255 / var(--tw-bg-opacity, 1));
|
||||
}
|
||||
|
||||
.p-10 {
|
||||
padding: 2.5rem;
|
||||
}
|
||||
|
||||
.p-3 {
|
||||
padding: 0.75rem;
|
||||
.bg-slate-100 {
|
||||
--tw-bg-opacity: 1;
|
||||
background-color: rgb(241 245 249 / var(--tw-bg-opacity, 1));
|
||||
}
|
||||
|
||||
.px-3 {
|
||||
@ -634,13 +649,9 @@ video {
|
||||
padding-right: 0.75rem;
|
||||
}
|
||||
|
||||
.py-8 {
|
||||
padding-top: 2rem;
|
||||
padding-bottom: 2rem;
|
||||
}
|
||||
|
||||
.pl-3 {
|
||||
padding-left: 0.75rem;
|
||||
.py-5 {
|
||||
padding-top: 1.25rem;
|
||||
padding-bottom: 1.25rem;
|
||||
}
|
||||
|
||||
.text-center {
|
||||
@ -660,16 +671,6 @@ video {
|
||||
font-style: italic;
|
||||
}
|
||||
|
||||
.text-red-700 {
|
||||
--tw-text-opacity: 1;
|
||||
color: rgb(185 28 28 / var(--tw-text-opacity, 1));
|
||||
}
|
||||
|
||||
.text-blue-700 {
|
||||
--tw-text-opacity: 1;
|
||||
color: rgb(29 78 216 / var(--tw-text-opacity, 1));
|
||||
}
|
||||
|
||||
.underline {
|
||||
text-decoration-line: underline;
|
||||
}
|
||||
@ -678,4 +679,13 @@ video {
|
||||
--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;
|
||||
}
|
@ -25,6 +25,11 @@ function get_value_or_default(mixed $var, mixed $default = null) : mixed {
|
||||
return isset($var) ? $var : $default;
|
||||
}
|
||||
|
||||
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;
|
||||
|
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 |
BIN
theme/material_icons/application-vnd.oasis.opendocument.text.png
Normal file
After Width: | Height: | Size: 973 B |
BIN
theme/material_icons/applications-education.png
Normal file
After Width: | Height: | Size: 1.4 KiB |
BIN
theme/material_icons/chemical.png
Normal file
After Width: | Height: | Size: 1.9 KiB |
BIN
theme/material_icons/configure.png
Normal file
After Width: | Height: | Size: 2.3 KiB |
BIN
theme/material_icons/date.png
Normal file
After Width: | Height: | Size: 1.0 KiB |
BIN
theme/material_icons/document-multiple.png
Normal file
After Width: | Height: | Size: 820 B |
BIN
theme/material_icons/edit_user.png
Normal file
After Width: | Height: | Size: 2.0 KiB |
BIN
theme/material_icons/edu_science.png
Normal file
After Width: | Height: | Size: 1.7 KiB |
BIN
theme/material_icons/edu_science_canada.png
Normal file
After Width: | Height: | Size: 1.9 KiB |
BIN
theme/material_icons/elempic.png
Normal file
After Width: | Height: | Size: 1.1 KiB |
BIN
theme/material_icons/encrypted.png
Normal file
After Width: | Height: | Size: 1.4 KiB |
BIN
theme/material_icons/flag-blue.png
Normal file
After Width: | Height: | Size: 637 B |
BIN
theme/material_icons/flag-green.png
Normal file
After Width: | Height: | Size: 637 B |
BIN
theme/material_icons/folder.png
Normal file
After Width: | Height: | Size: 644 B |
BIN
theme/material_icons/gear.png
Normal file
After Width: | Height: | Size: 1.7 KiB |
BIN
theme/material_icons/help-contents.png
Normal file
After Width: | Height: | Size: 2.6 KiB |
BIN
theme/material_icons/kanagram.png
Normal file
After Width: | Height: | Size: 2.9 KiB |
BIN
theme/material_icons/kdmconfig.png
Normal file
After Width: | Height: | Size: 1.1 KiB |
BIN
theme/material_icons/klipper.png
Normal file
After Width: | Height: | Size: 816 B |
BIN
theme/material_icons/kwordquiz.png
Normal file
After Width: | Height: | Size: 1.1 KiB |
BIN
theme/material_icons/kwrite.png
Normal file
After Width: | Height: | Size: 975 B |
BIN
theme/material_icons/legalmoves.png
Normal file
After Width: | Height: | Size: 1.6 KiB |
BIN
theme/material_icons/mail-mark-unread.png
Normal file
After Width: | Height: | Size: 1.2 KiB |
BIN
theme/material_icons/numbers.png
Normal file
After Width: | Height: | Size: 2.9 KiB |
BIN
theme/material_icons/package_utilities.png
Normal file
After Width: | Height: | Size: 1.6 KiB |
BIN
theme/material_icons/plasmagik.png
Normal file
After Width: | Height: | Size: 2.4 KiB |
BIN
theme/material_icons/rebuild.png
Normal file
After Width: | Height: | Size: 2.3 KiB |
BIN
theme/material_icons/rollover_fiscal.png
Normal file
After Width: | Height: | Size: 1.5 KiB |
BIN
theme/material_icons/signature.png
Normal file
After Width: | Height: | Size: 2.6 KiB |
BIN
theme/material_icons/svn_switch.png
Normal file
After Width: | Height: | Size: 1.5 KiB |
BIN
theme/material_icons/system-users.png
Normal file
After Width: | Height: | Size: 1.5 KiB |
BIN
theme/material_icons/toggle_log.png
Normal file
After Width: | Height: | Size: 1.8 KiB |
BIN
theme/material_icons/transfers_list.png
Normal file
After Width: | Height: | Size: 1.1 KiB |
BIN
theme/material_icons/user-group-new.png
Normal file
After Width: | Height: | Size: 1.5 KiB |
BIN
theme/material_icons/vcs_status.png
Normal file
After Width: | Height: | Size: 1.9 KiB |
BIN
theme/material_icons/view_sort_descending.png
Normal file
After Width: | Height: | Size: 877 B |