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


PHP CRM_Core_BAO_Domain::find方法代碼示例

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


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

示例1:

 /**
  * Get the domain BAO
  *
  * @return null|object CRM_Core_BAO_Domain
  * @access public
  * @static
  */
 static function &getDomain($reset = null)
 {
     static $domain = NULL;
     if (!$domain || $reset) {
         $domain = new CRM_Core_BAO_Domain();
         $domain->id = CRM_Core_Config::domainID();
         if (!$domain->find(TRUE)) {
             CRM_Core_Error::fatal();
         }
     }
     return $domain;
 }
開發者ID:TheCraftyCanvas,項目名稱:aegir-platforms,代碼行數:19,代碼來源:Domain.php

示例2:

 /**
  * Get the domain BAO 
  *
  * @return null|object CRM_Core_BAO_Domain
  * @access public
  * @static
  */
 static function &getDomain()
 {
     static $domain = null;
     if (!$domain) {
         $domain = new CRM_Core_BAO_Domain();
         $domain->id = CRM_Core_Config::domainID();
         if (!$domain->find(true)) {
             CRM_Core_Error::fatal();
         }
     }
     return $domain;
 }
開發者ID:hampelm,項目名稱:Ginsberg-CiviDemo,代碼行數:19,代碼來源:Domain.php

示例3: contactDelete

 /**
  * Delete contact, ensuring it is not the domain contact
  *
  * @param int $contactID
  *   Contact ID to delete
  */
 public function contactDelete($contactID)
 {
     $domain = new CRM_Core_BAO_Domain();
     $domain->contact_id = $contactID;
     if (!$domain->find(TRUE)) {
         $this->callAPISuccess('contact', 'delete', array('id' => $contactID, 'skip_undelete' => 1));
     }
 }
開發者ID:nielosz,項目名稱:civicrm-core,代碼行數:14,代碼來源:CiviUnitTestCase.php

示例4: contactDelete

 /**
  * @param $contactID
  *
  * @return array|int
  */
 function contactDelete($contactID)
 {
     $params = array('id' => $contactID, 'skip_undelete' => 1, 'debug' => 1);
     $domain = new CRM_Core_BAO_Domain();
     $domain->contact_id = $contactID;
     if ($domain->find(TRUE)) {
         // we are finding tests trying to delete the domain contact in cleanup
         //since this is mainly for cleanup lets put a safeguard here
         return;
     }
     $result = $this->callAPISuccess('contact', 'delete', $params);
     return $result;
 }
開發者ID:prashantgajare,項目名稱:civicrm-core,代碼行數:18,代碼來源:CiviUnitTestCase.php


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