/*****************************************************************************/
/**
* Handling of the configuration file
- * @todo document
*/
class mod_roomReservationConfig {
/**
* Determine if the current user has admin rights. This function tests
* if the user is in a group which has the privilege of admin rights.
- * @todo test
* @return bool
*/
public function userIsAdmin() {
* Determine if the current user can book rooms. This function tests
* if the user is in a group which has the privilege to book rooms.
* If no group has this privilege, all users can book.
- * @todo test
* @return bool
*/
public function userCanBook() {
* if the user is in a group which has been configured as a group who
* can view bookings. If no groups are configured, any user can view the
* bookings table.
- * @todo test
* @return bool
*/
public function userCanView() {