science-ation/admin/stats.inc.php
dave 0f450e4426 - Remove the XML print from the stats upload, we can add that back in later as
something like "view/edit xml".
- Add a master list of all the stats we understand
- Map stats into YSF stats, so this file can be used as the YSF uploader too
  (going to need to convert the $config options into a fair user entry)
- Enable downloading manual entry stats, so it all appears seamless.  (note, we
  don't download auto-generated stats, like the number of students, well, we
  do, but we just overwrite it with what's in the local SFIAB, it would be a lot of work
  to keep it separate if it changes).
2009-05-03 06:31:03 +00:00

63 lines
1.7 KiB
PHP

<?
$stats_data = array(
'start_date' => array(),
'end_date' => array(),
'address' => array(),
'budget' => array(),
'ysf_affiliation_complete' => array(),
'charity' => array(),
'male_1' => array(),
'male_4' => array(),
'male_7' => array(),
'male_9' => array(),
'male_11' => array(),
'female_1' => array(),
'female_4' => array(),
'female_7' => array(),
'female_9' => array(),
'female_11' => array(),
'projects_1' => array(),
'projects_4' => array(),
'projects_7' => array(),
'projects_9' => array(),
'projects_11' => array(),
'students_total' => array(),
'schools_total' => array(),
'schools_active' => array(),
'students_public' => array(),
'schools_public' => array(),
'students_private' => array(),
'schools_private' => array(),
'schools_districts' => array(),
'studentsvisiting' => array('manual' => true),
'publicvisiting' => array('manual' => true),
'firstnations' => array('manual' => true),
'students_atrisk' => array(),
'schools_atrisk' => array(),
'teacherssupporting' => array('manual' => true),
'increasedinterest' => array('manual' => true),
'consideringcareer' => array('manual' => true),
'committee_members' => array(),
'judges' => array(),
'next_chair_name' => array(),
'next_chairemail' => array(),
'next_chair_hphone' => array(),
'next_chair_bphone' => array(),
'next_chair_fax' => array(),
'scholarships' => array(),
'delegate1' => array(),
'delegate2' => array(),
'delegate3' => array(),
'delegate4' => array(),
'delegate1_email' => array(),
'delegate2_email' => array(),
'delegate3_email' => array(),
'delegate4_email' => array(),
'delegate1_size' => array(),
'delegate2_size' => array(),
'delegate3_size' => array(),
'delegate4_size' => array(),
);
?>