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


PHP CRM_Contribute_DAO_Product::save方法代碼示例

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


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

示例1: add

 /**
  * function to add the contribution types
  *
  * @param array $params reference array contains the values submitted by the form
  * @param array $ids    reference array contains the id
  *
  * @access public
  * @static
  *
  * @return object
  */
 static function add(&$params, &$ids)
 {
     $params['is_active'] = CRM_Utils_Array::value('is_active', $params, FALSE);
     $params['is_deductible'] = CRM_Utils_Array::value('is_deductible', $params, FALSE);
     // action is taken depending upon the mode
     $premium = new CRM_Contribute_DAO_Product();
     $premium->copyValues($params);
     $premium->id = CRM_Utils_Array::value('premium', $ids);
     // set currency for CRM-1496
     if (!isset($premium->currency)) {
         $config = CRM_Core_Config::singleton();
         $premium->currency = $config->defaultCurrency;
     }
     $premium->save();
     return $premium;
 }
開發者ID:peteainsworth,項目名稱:civicrm-4.2.9-drupal,代碼行數:27,代碼來源:ManagePremiums.php

示例2: add

 /**
  * add the financial types.
  *
  * @param array $params
  *   Reference array contains the values submitted by the form.
  * @param array $ids
  *   Reference array contains the id.
  *
  *
  * @return object
  */
 public static function add(&$params, &$ids)
 {
     // CRM-14283 - strip protocol and domain from image URLs
     $image_type = array('image', 'thumbnail');
     foreach ($image_type as $key) {
         if (isset($params[$key])) {
             $parsedURL = explode('/', $params[$key]);
             $pathComponents = array_slice($parsedURL, 3);
             $params[$key] = '/' . implode('/', $pathComponents);
         }
     }
     $params['is_active'] = CRM_Utils_Array::value('is_active', $params, FALSE);
     $params['is_deductible'] = CRM_Utils_Array::value('is_deductible', $params, FALSE);
     // action is taken depending upon the mode
     $premium = new CRM_Contribute_DAO_Product();
     $premium->copyValues($params);
     $premium->id = CRM_Utils_Array::value('premium', $ids);
     // set currency for CRM-1496
     if (!isset($premium->currency)) {
         $config = CRM_Core_Config::singleton();
         $premium->currency = $config->defaultCurrency;
     }
     $premium->save();
     return $premium;
 }
開發者ID:kidaa30,項目名稱:yes,代碼行數:36,代碼來源:ManagePremiums.php


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