local_record = freemed::get_link_rec ( $insco, "insco" ); // Cache it $GLOBALS['__freemed']['cache']['insco'][$insco] = $this->local_record; } else { // Retrieve from the cache $this->local_record = $GLOBALS['__freemed']['cache']['insco'][$insco]; } $this->id = $this->local_record["id" ]; $this->insconame = $this->local_record["insconame" ]; $this->inscoalias = $this->local_record["inscoalias"]; $this->modifiers = fm_split_into_array ( $this->local_record["inscomod"] ); } // end constructor InsuranceCompany // Method: get_name // // Form name of insurance company / payer. // // Returns: // // Common name of insurance company / payer. // function get_name ( ) { return $this->local_record['insconame'].' ('. $this->local_record['inscocity'].', '. $this->local_record['inscostate'].')'; } // end method get_name } // end class InsuranceCompany ?>