From 71166d3e6bb1f0a6deedd88b33c66a4cc299c571 Mon Sep 17 00:00:00 2001 From: dave Date: Thu, 20 Dec 2007 09:51:08 +0000 Subject: [PATCH] - Add the easyparse student names option --- admin/reports_students.inc.php | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/admin/reports_students.inc.php b/admin/reports_students.inc.php index 03312bf9..1f0b85e9 100644 --- a/admin/reports_students.inc.php +++ b/admin/reports_students.inc.php @@ -434,6 +434,13 @@ $report_students_fields = array( 'table' => "CAST(projects.projectnumber AS UNSIGNED) AS GVRSFTBL, CONCAT(projectcategories.category_shortform, ' ', projects.projectnumber, ' ', projectdivisions.division_shortform)", 'table_sort' => 'GVRSFTBL'), + 'easyparse_allnames' => array( + 'name' => "Easy Parse -- All Student Names (REQUIRES MYSQL 5.0) ", + 'header' => 'Student(s)', + 'width' => 3.0, + 'table' => "GROUP_CONCAT(students.lastname, ',', students.firstname ORDER BY students.lastname SEPARATOR ':')", + 'group_by' => array('students.registrations_id')), + );