- Columns for school report

This commit is contained in:
dave 2008-01-23 19:30:05 +00:00
parent 98d6c7b493
commit df38d87b40

View File

@ -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)