/**
  * Method to get the valid enum values for the given field name
  */
 public static function get_allowed_values($field)
 {
     Logger::log("Enter: Group::get_allowed_values()");
     Logger::log("Exit: Group::get_allowed_values() ");
     return Dal::get_enum_values('groups', $field);
 }