Example #1
0
 /**
  * Returns an array containing, for each field, the arary key used for that
  * field in self::$_fields.
  *
  * @access public
  * @return array
  */
 static function &fieldKeys()
 {
     if (!self::$_fieldKeys) {
         self::$_fieldKeys = array('id' => 'id', 'job_id' => 'job_id', 'provider' => 'hrjob_health_provider', 'plan_type' => 'hrjob_health_plan_type', 'description' => 'description', 'dependents' => 'dependents', 'provider_life_insurance' => 'hrjob_health_provider_life_insurance', 'plan_type_life_insurance' => 'hrjob_life_insurance_plan_type', 'description_life_insurance' => 'description_life_insurance', 'dependents_life_insurance' => 'dependents_life_insurance');
     }
     return self::$_fieldKeys;
 }