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


PHP Braintree_Configuration::merchantPath方法代碼示例

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


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

示例1: all

 /**
  * 
  * @return Braintree_AddOn[]
  */
 public function all()
 {
     $path = $this->_config->merchantPath() . '/add_ons';
     $response = $this->_http->get($path);
     $addOns = array("addOn" => $response['addOns']);
     return Braintree_Util::extractAttributeAsArray($addOns, 'addOn');
 }
開發者ID:buga1234,項目名稱:buga_segforours,代碼行數:11,代碼來源:AddOnGateway.php

示例2: generate

 /**
  * 
  * @param string $settlement_date
  * @param string $groupByCustomField
  * @return Braintree_SettlementBatchSummary|Braintree_Result_Error
  */
 public function generate($settlement_date, $groupByCustomField = NULL)
 {
     $criteria = array('settlement_date' => $settlement_date);
     if (isset($groupByCustomField)) {
         $criteria['group_by_custom_field'] = $groupByCustomField;
     }
     $params = array('settlement_batch_summary' => $criteria);
     $path = $this->_config->merchantPath() . '/settlement_batch_summary';
     $response = $this->_http->post($path, $params);
     if (isset($groupByCustomField)) {
         $response['settlementBatchSummary']['records'] = $this->_underscoreCustomField($groupByCustomField, $response['settlementBatchSummary']['records']);
     }
     return $this->_verifyGatewayResponse($response);
 }
開發者ID:buga1234,項目名稱:buga_segforours,代碼行數:20,代碼來源:SettlementBatchSummaryGateway.php

示例3: testMerchantPath

 function testMerchantPath()
 {
     Braintree_Configuration::merchantId('abc123');
     $mp = Braintree_Configuration::merchantPath();
     $this->assertEquals('/merchants/abc123', $mp);
     Braintree_Configuration::reset();
 }
開發者ID:kingsolmn,項目名稱:CakePHP-Braintree-Plugin,代碼行數:7,代碼來源:ConfigurationTest.php

示例4: _doGenerate

 /**
  * sends the generate request to the gateway
  *
  * @ignore
  * @param var $url
  * @param array $params
  * @return mixed
  */
 public function _doGenerate($subPath, $params)
 {
     $fullPath = $this->_config->merchantPath() . $subPath;
     $response = $this->_http->post($fullPath, $params);
     return $this->_verifyGatewayResponse($response);
 }
開發者ID:oscarsmartwave,項目名稱:l45fbl45t,代碼行數:14,代碼來源:ClientTokenGateway.php


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