From df38d87b404f02cdb292d7f9c82ce2bd8ea1b156 Mon Sep 17 00:00:00 2001 From: dave Date: Wed, 23 Jan 2008 19:30:05 +0000 Subject: [PATCH] - Columns for school report --- admin/reports_schools.inc.php | 34 ++++++++++++++++++++++++++++++++-- 1 file changed, 32 insertions(+), 2 deletions(-) diff --git a/admin/reports_schools.inc.php b/admin/reports_schools.inc.php index 7079a84..c27d054 100644 --- a/admin/reports_schools.inc.php +++ b/admin/reports_schools.inc.php @@ -82,12 +82,30 @@ $report_schools_fields = array( 'width' => 0.75, 'table' => 'schools.postalcode' ), + 'school_lang' => array( + 'name' => 'School -- Language Code', + 'header' => 'Lang', + 'width' => 0.5, + 'table' => 'schools.schoollang' ), + + 'school_level' => array( + 'name' => 'School -- Grade Levels', + 'header' => 'Level', + 'width' => 1.0, + 'table' => 'schools.schoollevel' ), + 'school_board' => array( - 'name' => 'School -- Board ID', - 'header' => 'School Board', + 'name' => 'School -- Board', + 'header' => 'Board', 'width' => 1.0, 'table' => 'schools.board' ), + 'school_district' => array( + 'name' => 'School -- District', + 'header' => 'District', + 'width' => 1.0, + 'table' => 'schools.district' ), + 'school_principal' => array( 'name' => 'School -- Principal', 'header' => 'Principal', @@ -145,6 +163,18 @@ $report_schools_fields = array( 'width' => 0.75, 'table' => 'schools.registration_password' ), + 'school_project_limit' => array( + 'name' => 'School -- Project Limit', + 'header' => 'Limit', + 'width' => 0.75, + 'table' => 'schools.projectlimit' ), + + 'school_project_limit_per' => array( + 'name' => 'School -- Project Limit Per', + 'header' => 'Limit Per', + 'width' => 1.0, + 'table' => 'schools.projectlimitper' ), + ); function report_schools_fromwhere($report, $components)