identifier = $_identifier; if($this->identifier) { $this->record = ExecMethod('resources.resources_bo.read', $this->identifier); } } /** * magic method to set attributes of record * * @param string $_attribute_name */ public function __get($_attribute_name) { return $this->record[$_attribute_name]; } /** * magig method to set attributes of record * * @param string $_attribute_name * @param data $data */ public function __set($_attribute_name, $data) { $this->record[$_attribute_name] = $data; } /** * converts this object to array. * @abstract We need such a function cause PHP5 * dosn't allow objects do define it's own casts :-( * once PHP can deal with object casts we will change to them! * * @return array complete record as associative array */ public function get_record_array() { return $this->record; } /** * gets title of record * *@return string tiltle */ public function get_title() { if (empty($this->record)) { $this->get_record(); } return $this->record['name']; } /** * sets complete record from associative array * * @todo add some checks * @return void */ public function set_record(array $_record){ $this->record = $_record; } /** * gets identifier of this record * * @return string identifier of current record */ public function get_identifier() { return $this->identifier; } /** * saves record into backend * * @return string identifier */ public function save ( $_dst_identifier ) { } /** * copys current record to record identified by $_dst_identifier * * @param string $_dst_identifier * @return string dst_identifier */ public function copy ( $_dst_identifier ) { } /** * moves current record to record identified by $_dst_identifier * $this will become moved record * * @param string $_dst_identifier * @return string dst_identifier */ public function move ( $_dst_identifier ) { } /** * delets current record from backend * */ public function delete () { } /** * destructor * */ public function __destruct() { } } // end of egw_addressbook_record ?>