From 5c19a3d0f0729d1d025ec981bd8dd47f5b1e3946 Mon Sep 17 00:00:00 2001 From: dave Date: Mon, 16 Oct 2006 16:54:29 +0000 Subject: [PATCH] - Added all the fields in the judges table to the judges class, all that's left now is doing all the cross referencing. --- judge.class.php | 53 ++++++++++++++++++++++++++----------------------- 1 file changed, 28 insertions(+), 25 deletions(-) diff --git a/judge.class.php b/judge.class.php index c8a1d276..81b6fb10 100644 --- a/judge.class.php +++ b/judge.class.php @@ -1,6 +1,29 @@ 'First Name', + 'lastname' => 'Last Name', + 'email' => 'Email Address', + 'password' => 'Password', + 'passwordexpiry' => 'Password Expiry', + 'phonehome' => 'Phone (Home)', + 'phonecell' => 'Phone (Cell)', + 'phonework' => 'Phone (Work)', + 'phoneworkext' => 'Phone Ext. (Work)', + 'organization' => 'Organization', + 'created' => 'Created', + 'lastlogin' => 'Last Login', + 'address' =>"Address 1", + 'address2' =>"Address 2", + 'city' => 'City', + 'province' => 'Province', + 'postalcode' => 'Postal Code', + 'deleted' => 'Deleted', + 'deleteddatetime' => 'Deleted Date/Time', + 'expertise_other' => 'Other Expertise/Notes', + 'complete' => "Complete"); + + class person { var $id; @@ -38,19 +61,10 @@ function tableEditorSetup($editor) /* Most of these should be moved to the base class, as they * will be the same for all person groups */ - $e = array( 'firstname' => 'First Name', - 'lastname' => 'Last Name', - 'email' => 'Email Address', - 'address' =>"Address 1", - 'address2' =>"Address 2", - 'city' => 'City', - 'province' => 'Province', - 'postalcode' => 'Postal Code', - 'phonework' => 'Phone (Work)', - 'phonecell' => 'Phone (Cell)', - 'organization' => 'Organization', - 'language' => 'Language(s)', - 'complete' => "Complete" ); + $e = array_merge($judges_fields, + array( 'language' => 'Language(s)', + + )); $editor->setTable('judges'); $editor->setListFields($l); @@ -109,18 +123,7 @@ function tableEditorLoad() function tableEditorSave($data) { - $judges_fields = array( 'firstname' => 'First Name', - 'lastname' => 'Last Name', - 'email' => 'Email Address', - 'address' =>"Address 1", - 'address2' =>"Address 2", - 'city' => 'City', - 'province' => 'Province', - 'postalcode' => 'Postal Code', - 'phonework' => 'Phone (Work)', - 'phonecell' => 'Phone (Cell)', - 'organization' => 'Organization', - 'complete' => "Complete" ); + global $judges_fields; $query = "";