當前位置: 首頁>>代碼示例>>PHP>>正文


PHP CSocServAuthDB::Delete方法代碼示例

本文整理匯總了PHP中CSocServAuthDB::Delete方法的典型用法代碼示例。如果您正苦於以下問題:PHP CSocServAuthDB::Delete方法的具體用法?PHP CSocServAuthDB::Delete怎麽用?PHP CSocServAuthDB::Delete使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在CSocServAuthDB的用法示例。


在下文中一共展示了CSocServAuthDB::Delete方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: deleteStorageTokens

 protected function deleteStorageTokens()
 {
     global $USER;
     if (is_object($USER) && $USER->IsAuthorized()) {
         $dbSocservUser = CSocServAuthDB::GetList(array(), array('USER_ID' => $USER->GetID(), "EXTERNAL_AUTH_ID" => static::SERVICE_ID), false, false, array("ID"));
         while ($accessToken = $dbSocservUser->Fetch()) {
             CSocServAuthDB::Delete($accessToken['ID']);
         }
     }
 }
開發者ID:Satariall,項目名稱:izurit,代碼行數:10,代碼來源:oauthtransport.php

示例2: foreach

}
if (is_array($arResult["DB_SOCSERV_USER"])) {
    foreach ($arResult["DB_SOCSERV_USER"] as $key => $value) {
        if ($value["EXTERNAL_AUTH_ID"] == 'Twitter') {
            $arResult["DB_SOCSERV_USER"][$twitNum] = $arResult["DB_SOCSERV_USER"][$key];
            unset($arResult["DB_SOCSERV_USER"][$key]);
            $twitNum++;
        }
    }
}
$arParamsToDelete = array("openid_assoc_handle", "openid_identity", "openid_sreg_email", "openid_sreg_fullname", "openid_sreg_gender", "openid_mode", "openid_op_endpoint", "openid_response_nonce", "openid_return_to", "openid_signed", "openid_sig", "current_fieldset");
$add = CModule::IncludeModule("socialnetwork") && $_REQUEST["auth_service_id"] != '' && $componentTemplate == 'twitpost' ? "current_fieldset=SOCSERV" : "";
if ($_SERVER["REQUEST_METHOD"] == "GET" && $_REQUEST["action"] == "delete" && isset($_REQUEST["user_id"]) && intval($_REQUEST["user_id"] > 0) && check_bitrix_sessid()) {
    $userId = intval($_REQUEST["user_id"]);
    if (in_array($userId, $arResult["ALLOW_DELETE_ID"])) {
        if (!CSocServAuthDB::Delete($userId)) {
            $_SESSION["LAST_ERROR"] = GetMessage("DELETE_ERROR");
        }
    }
    $backurl = '';
    if ($arResult['BACKURL'] != '') {
        $backurl = $arResult['BACKURL'];
        if ($componentTemplate == 'twitpost') {
            $backurl .= (strpos($arResult['BACKURL'], '?') > 0 ? "&" : "?") . "current_fieldset=SOCSERV";
        }
    } else {
        $backurl = $APPLICATION->GetCurPageParam($componentTemplate == 'twitpost' ? "current_fieldset=SOCSERV" : "", array("sessid", "user_id", "action"));
    }
    LocalRedirect($backurl);
}
if ($componentTemplate == 'twitpost') {
開發者ID:Satariall,項目名稱:izurit,代碼行數:31,代碼來源:component.php


注:本文中的CSocServAuthDB::Delete方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。