当前位置: 首页>>代码示例>>PHP>>正文


PHP Braintree_TransparentRedirect::confirm方法代码示例

本文整理汇总了PHP中Braintree_TransparentRedirect::confirm方法的典型用法代码示例。如果您正苦于以下问题:PHP Braintree_TransparentRedirect::confirm方法的具体用法?PHP Braintree_TransparentRedirect::confirm怎么用?PHP Braintree_TransparentRedirect::confirm使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Braintree_TransparentRedirect的用法示例。


在下文中一共展示了Braintree_TransparentRedirect::confirm方法的8个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: updateAction

 public function updateAction()
 {
     $this->form = $this->createUpdateForm();
     if ($this->getParam('http_status') && $this->getParam('hash')) {
         $res = Braintree_TransparentRedirect::confirm($_SERVER['QUERY_STRING']);
         if ($res instanceof Braintree_Result_Error) {
             $this->form->getElementById('credit_card__number-0')->setError($res->message);
         } else {
             return $this->redirectLocation(REL_ROOT_URL . '/member');
         }
     }
     $this->view->form = $this->form;
     $this->view->invoice = null;
     $this->view->display_receipt = false;
     $this->view->display('cc/info.phtml');
 }
开发者ID:alexanderTsig,项目名称:arabic,代码行数:16,代码来源:braintree.php

示例2: form

    public function form()
    {
        $result = Braintree_Transaction::sale(array("amount" => "1000.00", "creditCard" => array("number" => $_POST["number"], "cvv" => $_POST["cvv"], "expirationMonth" => $_POST["month"], "expirationYear" => $_POST["year"]), "options" => array("submitForSettlement" => true)));
        if ($result->success) {
            echo "Success! Transaction ID: " . $result->transaction->id;
        } else {
            if ($result->transaction) {
                echo "Error: " . $result->message;
                echo "<br/>";
                echo "Code: " . $result->transaction->processorResponseCode;
            } else {
                echo "Validation errors:<br/>";
                foreach ($result->errors->deepAll() as $error) {
                    echo "- " . $error->message . "<br/>";
                }
            }
        }
        pr($result);
        die;
        ?>
        <html>
            <head>
                <title>Braintree Transparent Redirect</title>
            </head>
            <body>
                <?php 
        if (isset($_GET["id"])) {
            echo "id: " . $_GET["id"];
            $result = Braintree_TransparentRedirect::confirm($_SERVER['QUERY_STRING']);
            pr($result);
        }
        if (isset($result) && $result->success) {
            ?>
                    <h1>Braintree Transparent Redirect Response</h1>
                    <?php 
            $transaction = $result->transaction;
            ?>
                    <table>
                        <tr><td>transaction id</td><td><?php 
            echo htmlentities($transaction->id);
            ?>
</td></tr>
                        <tr><td>transaction status</td><td><?php 
            echo htmlentities($transaction->status);
            ?>
</td></tr>
                        <tr><td>transaction amount</td><td><?php 
            echo htmlentities($transaction->amount);
            ?>
</td></tr>
                        <tr><td>customer first name</td><td><?php 
            echo htmlentities($transaction->customerDetails->firstName);
            ?>
</td></tr>
                        <tr><td>customer last name</td><td><?php 
            echo htmlentities($transaction->customerDetails->lastName);
            ?>
</td></tr>
                        <tr><td>customer email</td><td><?php 
            echo htmlentities($transaction->customerDetails->email);
            ?>
</td></tr>
                        <tr><td>credit card number</td><td><?php 
            echo htmlentities($transaction->creditCardDetails->maskedNumber);
            ?>
</td></tr>
                        <tr><td>expiration date</td><td><?php 
            echo htmlentities($transaction->creditCardDetails->expirationDate);
            ?>
</td></tr>
                    </table>
                    <?php 
        } else {
            if (!isset($result)) {
                echo "gagal";
                $result = null;
            }
            ?>
                    <h1>Braintree Transparent Redirect Example</h1>
                    <?php 
            if (isset($result)) {
                ?>
                        <div style="color: red;"><?php 
                echo $result->errors->deepSize();
                ?>
 error(s)</div>
                    <?php 
            }
            ?>
                    <form method="POST" action="<?php 
            echo Braintree_TransparentRedirect::url();
            ?>
" autocomplete="off">
                        <fieldset>
                            <legend>Customer</legend>
                            <?php 
            $this->braintree_text_field('First Name', 'transaction[customer][first_name]', $result);
            ?>
                            <?php 
            $this->braintree_text_field('Last Name', 'transaction[customer][last_name]', $result);
//.........这里部分代码省略.........
开发者ID:CapsuleCorpIndonesia,项目名称:martabak_revolution,代码行数:101,代码来源:single_transactions.php

示例3:

<?php

$queryString = $_SERVER['QUERY_STRING'];
$result = Braintree_TransparentRedirect::confirm($queryString);
if ($result->success) {
    $message = "Customer Created with ID: " . $result->customer->email;
} else {
    $message = print_r($result->errors->deepAll(), True);
}
?>

<html>
  <body>
    <h1>Transaction Response</h1>
    <ul>
      <li>Status - <?php 
echo $message;
?>
</li>
    </ul>
  </body>
</html>
开发者ID:Justin-Leung,项目名称:braintree_php_guide,代码行数:22,代码来源:response.php

示例4: isset

    echo '<div><input type="text" name="' . $name . '" value="' . $fieldValue . '" /></div>';
    $errors = isset($result) ? $result->errors->onHtmlField($name) : array();
    foreach ($errors as $error) {
        echo '<div style="color: red;">' . $error->message . '</div>';
    }
    echo "\n";
}
?>
<html>
<head>
    <title>Braintree Transparent Redirect</title>
</head>
<body>
<?php 
if (isset($_GET["id"])) {
    $result = Braintree_TransparentRedirect::confirm($_SERVER['QUERY_STRING']);
}
if (isset($result) && $result->success) {
    ?>
<h1>Braintree Transparent Redirect Response</h1>
    <?php 
    $transaction = $result->transaction;
    ?>
<table>
    <tr><td>transaction id</td><td><?php 
    echo htmlentities($transaction->id);
    ?>
</td></tr>
    <tr><td>transaction status</td><td><?php 
    echo htmlentities($transaction->status);
    ?>
开发者ID:nstungxd,项目名称:F2CA5,代码行数:31,代码来源:index.php

示例5: testUpdateCreditCardFromTransparentRedirect

 function testUpdateCreditCardFromTransparentRedirect()
 {
     $customer = Braintree_Customer::create(array('firstName' => 'Mike', 'lastName' => 'Jonez'))->customer;
     $creditCard = Braintree_CreditCard::create(array('customerId' => $customer->id, 'number' => Braintree_Test_CreditCardNumbers::$masterCard, 'expirationMonth' => '10', 'expirationYear' => '10'))->creditCard;
     $params = array('credit_card' => array('number' => Braintree_Test_CreditCardNumbers::$visa));
     $trParams = array('paymentMethodToken' => $creditCard->token, 'creditCard' => array('expirationMonth' => '11', 'expirationYear' => '11'));
     $trData = Braintree_TransparentRedirect::updateCreditCardData(array_merge($trParams, array("redirectUrl" => "http://www.example.com")));
     $queryString = Braintree_TestHelper::submitTrRequest(Braintree_TransparentRedirect::url(), $params, $trData);
     Braintree_TransparentRedirect::confirm($queryString);
     $creditCard = Braintree_CreditCard::find($creditCard->token);
     $this->assertequals('401288', $creditCard->bin);
     $this->assertequals('1881', $creditCard->last4);
     $this->assertequals('11/2011', $creditCard->expirationDate);
 }
开发者ID:buga1234,项目名称:buga_segforours,代码行数:14,代码来源:TransparentRedirectTest.php

示例6: confirm

 public function confirm()
 {
     try {
         return Braintree_TransparentRedirect::confirm($_SERVER['QUERY_STRING']);
     } catch (Braintree_Exception $e) {
         Mage::logException($e);
         $result = stdClass;
         $result->success = false;
         return $result;
     }
 }
开发者ID:technomagegithub,项目名称:inmed-magento,代码行数:11,代码来源:Paymentmethod.php

示例7: startup

 /**
  * Startup
  *
  * @param   object  $controller
  * @return  void
  */
 public function startup(Controller $controller)
 {
     if (in_array($this->controller->params['action'], $this->_callback_actions) || array_key_exists($this->controller->params['action'], $this->_callback_actions)) {
         $this->action_settings = array();
         if (!empty($this->_callback_actions[$this->controller->params['action']]) && is_array($this->_callback_actions[$this->controller->params['action']])) {
             $this->action_settings = $this->_callback_actions[$this->controller->params['action']];
         }
         $continue = true;
         $parameters = array();
         foreach ($this->_callback_parameters as $parameter) {
             if (empty($this->controller->params['url'][$parameter])) {
                 $continue = false;
                 break;
             } else {
                 $parameters[$parameter] = $this->controller->params['url'][$parameter];
             }
         }
         if ($continue) {
             App::import('Vendor', 'Braintree.Braintree');
             $query_string = http_build_query($parameters, '', '&');
             foreach (array('BraintreeAddress', 'BraintreeCreditCard', 'BraintreeCreditCardRelation') as $model_name) {
                 if (!isset($this->{$model_name})) {
                     $this->{$model_name} = ClassRegistry::init('Braintree.' . $model_name);
                 }
             }
             if (!$this->beforeConfirmation()) {
                 return false;
             }
             try {
                 $result = Braintree_TransparentRedirect::confirm($query_string);
             } catch (Exception $e) {
                 $result = false;
             }
             if (empty($result) || !$result->success) {
                 $this->onFailure($result);
                 return true;
             } else {
                 if (!$this->onSuccess($result)) {
                     return true;
                 }
             }
             if (!$this->afterProcessing()) {
                 return false;
             }
         }
     }
 }
开发者ID:sime,项目名称:cakephp-braintree-plugin,代码行数:53,代码来源:BraintreeCallbackComponent.php

示例8: do_process


//.........这里部分代码省略.........
                    } else {
                        if ($what == 'bundle' || $what == 'post') {
                            // post or bundle purchase
                            if ($what == 'post') {
                                $cost = get_post_meta($pack_id, '_ym_post_purchasable_cost', true);
                            } else {
                                $bundle = ym_get_bundle($pack_id);
                                if (!$bundle) {
                                    $r = array('ok' => false, 'message' => __('Bundle Error', 'ym'));
                                } else {
                                    $cost = $bundle->cost;
                                }
                            }
                            if ($cost) {
                                $result = Braintree_Transaction::sale(array('amount' => $cost, 'options' => array('submitForSettlement' => true), 'customerId' => $result->customer->id, 'paymentMethodToken' => $result->customer->creditCards[0]->token));
                                $amount = $result->transaction->amount;
                                if ($result->success) {
                                    // common
                                    $this->common_process($code, $amount, true, false);
                                    // thanks
                                    if ($what == 'subscription') {
                                        $url = $this->redirectlogic($pack);
                                    } else {
                                        if ($what == 'post') {
                                            $url = $this->redirectlogic(array('ppp' => true, 'post_id' => $pack_id));
                                        } else {
                                            $url = $this->redirectlogic(array('ppp' => true, 'ppp_pack_id' => $pack_id));
                                        }
                                    }
                                    $r = array('ok' => true, 'url' => $url, 'message' => __('Payment Complete', 'ym'));
                                } else {
                                    $r = $this->_failedBraintree($result, true);
                                }
                            }
                        } else {
                            // unhandled purchase
                            $r = $this->_failedBraintree($result, true);
                        }
                    }
                } else {
                    $r = $this->_failedBraintree($result, true);
                }
                ob_clean();
                echo json_encode($r);
                // bugger
                exit;
                // non ajax/primary js failed
                // transparent redirect handlers
            } else {
                if ($action == 'process') {
                    $this->_braintree();
                    $queryString = $_SERVER['QUERY_STRING'];
                    try {
                        $result = Braintree_TransparentRedirect::confirm($queryString);
                    } catch (Exception $e) {
                        if (get_class($e) == 'Braintree_Exception_NotFound') {
                            echo 'not found';
                        } else {
                            echo '<pre>';
                            print_r($e);
                            echo $e->getMessage();
                        }
                        exit;
                    }
                    if ($result->success) {
                        $code = ym_request('code');
                        // grab token and subscribe
                        list($buy, $what, $pack_id, $user_id) = explode('_', $code);
                        $pack = ym_get_pack_by_id($pack_id);
                        $planId = isset($pack['braintree_plan_id']) ? $pack['braintree_plan_id'] : false;
                        if ($pack['num_cycles'] == 1 || $planId) {
                            // initiate charge against just added credit card
                            if ($planId) {
                                $result = Braintree_Subscription::create(array('planId' => $planId, 'paymentMethodToken' => $result->customer->creditCards[0]->token));
                                $amount = $result->subscription->transactions[0]->amount;
                            } else {
                                $result = Braintree_Transaction::sale(array('amount' => $pack['cost'], 'options' => array('submitForSettlement' => true), 'customerId' => $result->customer->id, 'paymentMethodToken' => $result->customer->creditCards[0]->token));
                                $amount = $result->transaction->amount;
                            }
                            if ($result->success) {
                                // common
                                $this->common_process($code, $amount, true, false);
                                // thanks
                                $this->redirectlogic($pack, true);
                                exit;
                            } else {
                                $this->_failedBraintree($result);
                            }
                        } else {
                            $this->_failedBraintree($result);
                        }
                        exit;
                    }
                    $this->_failedBraintree($result);
                } else {
                    $this->_failedBraintree();
                }
            }
        }
    }
开发者ID:AdultStack,项目名称:ap-members,代码行数:101,代码来源:ym_braintree.php


注:本文中的Braintree_TransparentRedirect::confirm方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。