public static function get_parents($username)
 {
     global $CFG, $DB;
     $params = self::validate_parameters(self::get_parents_parameters(), array('username' => $username));
     $auth = new auth_plugin_joomdle();
     $id = $auth->get_parents($username);
     return $id;
 }