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


PHP CEventMessage::GetSite方法代碼示例

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


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

示例1: getSitesByMessage

 function getSitesByMessage($ID)
 {
     $sites = array();
     $eventMessage = new CEventMessage();
     $getSites = $eventMessage->GetSite($ID);
     while ($site = $getSites->Fetch()) {
         $sites[] = $site['WIZARD_SITE_ID'];
     }
     return $sites;
 }
開發者ID:ASDAFF,項目名稱:bitrix_marketplace_module,代碼行數:10,代碼來源:import.class.php

示例2: GetLang

 function GetLang($event_message_id)
 {
     return CEventMessage::GetSite($event_message_id);
 }
開發者ID:ASDAFF,項目名稱:bitrix-5,代碼行數:4,代碼來源:event.php

示例3: CEventMessage

 if (!$res) {
     $bVarsFromForm = true;
 } else {
     $em = new CEventMessage();
     if ($_POST["SITE_MESSAGE_LINK"] == "C" && $_POST["SITE_MESSAGE_LINK_C_SITE"] != '') {
         $db_msg = CEventMessage::GetList($o = "", $b = "", array("SITE_ID" => $_POST["SITE_MESSAGE_LINK_C_SITE"]));
         while ($ar_msg = $db_msg->Fetch()) {
             unset($ar_msg["TIMESTAMP_X"]);
             $ar_msg["LID"] = $LID;
             $em->Add($ar_msg);
         }
     } elseif ($_POST["SITE_MESSAGE_LINK"] == "E" && $_POST["SITE_MESSAGE_LINK_E_SITE"] != '') {
         $db_msg = CEventMessage::GetList($o = "", $b = "", array("SITE_ID" => $_POST["SITE_MESSAGE_LINK_E_SITE"]));
         while ($ar_msg = $db_msg->Fetch()) {
             $msg_id = $ar_msg["ID"];
             $db_msg_sites = CEventMessage::GetSite($ar_msg["ID"]);
             $ar_msg = array("NAME" => $ar_msg["NAME"], "LID" => array($LID));
             while ($ar_msg_sites = $db_msg_sites->Fetch()) {
                 $ar_msg["LID"][] = $ar_msg_sites["SITE_ID"];
             }
             $em->Update($msg_id, $ar_msg);
         }
     }
     if ($bNew && $_POST["START_SITE_WIZARD"] == "Y") {
         $rsSite = CSite::GetList($by = "sort", $order = "asc", array("ID" => $LID));
         $arSite = $rsSite->GetNext();
         $siteDir = "/" . ltrim(rtrim($arSite["DIR"], "/") . "/", "/");
         $p = CSite::GetSiteDocRoot($LID) . $siteDir;
         CheckDirPath($p);
         $indexContent = '<' . '?' . 'define("B_PROLOG_INCLUDED", true);' . 'define("WIZARD_DEFAULT_SITE_ID", "' . $LID . '");' . 'define("WIZARD_DEFAULT_TONLY", true);' . 'define("PRE_LANGUAGE_ID","' . $arSite["LANGUAGE_ID"] . '");' . 'define("PRE_INSTALL_CHARSET","' . $arSite["CHARSET"] . '");' . 'include_once($_SERVER["DOCUMENT_ROOT"]."/bitrix/modules/main/install/wizard/wizard.php");' . '?' . '>';
         $handler = fopen($p . "index.php", "wb");
開發者ID:DarneoStudio,項目名稱:bitrix,代碼行數:31,代碼來源:site_edit.php


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