_user = $user; $this->_mode = $mode; } function getUserID() { return $this->_user->getID(); } function getMode() { return $this->_mode; } function getUser() { return $this->_user; } } class LetoDMS_GroupAccess { var $_group; var $_mode; function LetoDMS_GroupAccess($group, $mode) { $this->_group = $group; $this->_mode = $mode; } function getGroupID() { return $this->_group->getID(); } function getMode() { return $this->_mode; } function getGroup() { return $this->_group; } } ?>