first_name . " " . $this->last_name; } function bean_implements($interface) { switch ($interface) { case 'ACL': return true; } return false; } function save($check_notify = FALSE) { $this->name = $this->first_name . " " . $this->last_name; parent::save($check_notify); } function get_summary_text() { return $this->first_name . " " . $this->last_name; } function fill_in_additional_detail_fields() { parent::fill_in_additional_detail_fields(); // $worker_name = $this->first_name; // $worker_id = $this->id; } }