2011-02-23 16:45:00 +00:00
|
|
|
<?
|
|
|
|
$tabs = array(
|
|
|
|
'fairinfo' => array(
|
|
|
|
'label' => 'Fair Information',
|
|
|
|
'types' => array('fair'),
|
|
|
|
'file' => 'fair_info.php',
|
|
|
|
'enabled' => true,
|
|
|
|
),
|
|
|
|
'fairstatsgathering' => array(
|
|
|
|
'label' => 'Fair Stats Gathering',
|
|
|
|
'types' => array('fair'),
|
|
|
|
'file' => 'fair_stats_select.php',
|
|
|
|
'enabled' => true,
|
|
|
|
),
|
|
|
|
'personal' => array(
|
|
|
|
'label' => 'Personal',
|
|
|
|
'name' => 'Personal Information',
|
|
|
|
'types' => array('teacher','participant','judge','committee','volunteer','sponsor','fair','admin','config'),
|
|
|
|
'file' => 'user_personal.php',
|
|
|
|
'status_func' => 'user_personal_info_status',
|
|
|
|
'enabled' => true,
|
|
|
|
),
|
|
|
|
'organization' => array(
|
|
|
|
'label' => 'Organization',
|
|
|
|
'name' => 'Organization Information',
|
|
|
|
'types' => array('judge','volunteer','sponsor'),
|
|
|
|
'file' => 'user_organization.php',
|
|
|
|
'status_func' => 'user_organization_status',
|
|
|
|
'enabled' => true,
|
|
|
|
),
|
|
|
|
'judge' => array(
|
|
|
|
'label' => 'Judge',
|
|
|
|
'types' => array('judge'),
|
|
|
|
'file' => 'judge_other.php',
|
|
|
|
'status_func' => 'judge_status_other',
|
|
|
|
'conference_types' => array('sciencefair'),
|
|
|
|
'enabled' => true,
|
|
|
|
),
|
|
|
|
'activities' => array(
|
|
|
|
'label' => 'Activities',
|
|
|
|
'types' => array('judge', 'volunteer'),
|
|
|
|
'file' => 'activities.php',
|
|
|
|
'status_func' => 'activities_status',
|
|
|
|
'conference_types' => array('scienceolympics'),
|
|
|
|
'enabled' => true,
|
|
|
|
),
|
|
|
|
'judgeexpertise' => array(
|
|
|
|
'label' => 'Expertise',
|
|
|
|
'types' => array('judge'),
|
|
|
|
'file' => 'judge_expertise.php',
|
|
|
|
'enabled' => true,
|
|
|
|
),
|
|
|
|
'judgeavailability' => array(
|
|
|
|
'label' => 'Time Avail.',
|
|
|
|
'types' => array('judge'),
|
|
|
|
'file' => 'judge_availability.php',
|
|
|
|
'disabled' => 'true'
|
|
|
|
),
|
|
|
|
'judgesa' => array(
|
|
|
|
'label' => 'Special Awards',
|
|
|
|
'types' => array('judge'),
|
|
|
|
'file' => 'judge_special_awards.php',
|
|
|
|
'enabled' => true,
|
|
|
|
),
|
|
|
|
'volunteerpos' => array(
|
|
|
|
'label' => 'Volunteer Positions',
|
|
|
|
'types' => array('volunteer'),
|
|
|
|
'file' => 'volunteer_position.php',
|
|
|
|
'status_func' => 'volunteer_status_position',
|
|
|
|
'enabled' => true,
|
|
|
|
),
|
|
|
|
'fairstats' => array(
|
|
|
|
'label' => 'Fair Statistics and Information',
|
|
|
|
'types' => array('fair'),
|
|
|
|
'file' => 'fair_stats.php',
|
|
|
|
'disabled' => true,
|
|
|
|
),
|
|
|
|
'account' => array(
|
|
|
|
'label' => 'Account/Login',
|
|
|
|
'name' => 'Change Username/Email/Password',
|
|
|
|
'types' => array('teacher','participant','judge','committee','volunteer','sponsor','fair'),
|
|
|
|
'file' => 'user_account.php',
|
|
|
|
'status_func' => false,
|
|
|
|
'enabled' => true,
|
|
|
|
),
|
|
|
|
'roles' => array(
|
|
|
|
'label' => 'Roles',
|
|
|
|
'name' => 'Add/Remove Roles',
|
|
|
|
'types' => array('teacher','participant','judge','committee','volunteer','sponsor','fair','admin','config'),
|
|
|
|
'file' => 'user_roles.php',
|
|
|
|
'status_func' => false,
|
2011-02-23 18:50:46 +00:00
|
|
|
'enabled' => true,
|
2011-02-23 16:45:00 +00:00
|
|
|
),
|
|
|
|
'school' => array(
|
|
|
|
'label' => 'School',
|
|
|
|
'name' => 'Select School Information',
|
|
|
|
'types' => array('teacher','participant','principal','parent'),
|
|
|
|
'file' => 'user_school.php',
|
|
|
|
'status_func' => false,
|
|
|
|
'enabled' => true,
|
|
|
|
)
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
|
|
?>
|