Implement get & set

This commit is contained in:
Nathan Gray 2011-02-04 20:02:35 +00:00
parent 146ff34de1
commit 99adf832a7

View File

@ -42,7 +42,7 @@ class timesheet_egw_record implements importexport_iface_egw_record
* @param string $_attribute_name
*/
public function __get($_attribute_name) {
return $this->timesheetentry[$_attribute_name];
}
/**
@ -52,7 +52,7 @@ class timesheet_egw_record implements importexport_iface_egw_record
* @param data $data
*/
public function __set($_attribute_name, $data) {
$this->timesheetentry[$_attribute_name] = $data;
}
/**