X-Git-Url: https://vcs.fsf.org/?a=blobdiff_plain;f=CRM%2FCore%2FBAO%2FUFMatch.php;h=b7dd9b2c80187275e9022d123fe3c6f4d9038b07;hb=52d6c87ba373867ec4854e773707b7a81244cdbd;hp=58996fd30aeac685df495a15bcb7613598803466;hpb=5790edc8b91deb7688c188460ed8cc7755e0345d;p=civicrm-core.git diff --git a/CRM/Core/BAO/UFMatch.php b/CRM/Core/BAO/UFMatch.php index 58996fd30a..b7dd9b2c80 100644 --- a/CRM/Core/BAO/UFMatch.php +++ b/CRM/Core/BAO/UFMatch.php @@ -57,12 +57,14 @@ class CRM_Core_BAO_UFMatch extends CRM_Core_DAO_UFMatch { * * @param $ctype * @param bool $isLogin + * + * @throws CRM_Core_Exception */ public static function synchronize(&$user, $update, $uf, $ctype, $isLogin = FALSE) { $userSystem = CRM_Core_Config::singleton()->userSystem; $session = CRM_Core_Session::singleton(); if (!is_object($session)) { - CRM_Core_Error::fatal('wow, session is not an object?'); + throw new CRM_Core_Exception('wow, session is not an object?'); return; } @@ -519,9 +521,11 @@ AND domain_id = %4 } /** + * @deprecated * @return bool */ public static function isEmptyTable() { + CRM_Core_Error::deprecatedFunctionWarning('unused function to be removed'); $sql = "SELECT count(id) FROM civicrm_uf_match"; return CRM_Core_DAO::singleValueQuery($sql) > 0 ? FALSE : TRUE; } @@ -529,11 +533,12 @@ AND domain_id = %4 /** * Get the list of contact_id. * - * + * @deprecated * @return int * contact_id on success, null otherwise */ public static function getContactIDs() { + CRM_Core_Error::deprecatedFunctionWarning('unused function to be removed'); $id = []; $dao = new CRM_Core_DAO_UFMatch(); $dao->find(); @@ -546,13 +551,14 @@ AND domain_id = %4 /** * See if this user exists, and if so, if they're allowed to login * - * + * @deprecated * @param int $openId * * @return bool * true if allowed to login, false otherwise */ public static function getAllowedToLogin($openId) { + CRM_Core_Error::deprecatedFunctionWarning('unused function to be removed'); $ufmatch = new CRM_Core_DAO_UFMatch(); $ufmatch->uf_name = $openId; $ufmatch->allowed_to_login = 1; @@ -566,11 +572,12 @@ AND domain_id = %4 * Get the next unused uf_id value, since the standalone UF doesn't * have id's (it uses OpenIDs, which go in a different field) * - * + * @deprecated * @return int * next highest unused value for uf_id */ public static function getNextUfIdValue() { + CRM_Core_Error::deprecatedFunctionWarning('unused function to be removed'); $query = "SELECT MAX(uf_id)+1 AS next_uf_id FROM civicrm_uf_match"; $dao = CRM_Core_DAO::executeQuery($query); if ($dao->fetch()) { @@ -585,10 +592,11 @@ AND domain_id = %4 /** * @param $email - * + * @deprecated * @return bool */ public static function isDuplicateUser($email) { + CRM_Core_Error::deprecatedFunctionWarning('unused function to be removed'); $session = CRM_Core_Session::singleton(); $contactID = $session->get('userID'); if (!empty($email) && isset($contactID)) {