File Manager / wp-content Search Upload New Item Settings File "db5.php" Full path: /home1/epichome/public_html/wp-content/db5.php File size: 60.67 B (60.67 KB bytes) MIME-type: text/x-php Charset: utf-8 Download Open Edit Advanced Editor Back
/home/pharmacy/www/wp-content/plugins/simple-membership/lib/braintree/lib/Braintree/PlanGateway.php
<?php
namespace Braintree;

class PlanGateway
{
    private $_gateway;
    private $_config;
    private $_http;

    public function __construct($gateway)
    {
        $this->_gateway = $gateway;
        $this->_config = $gateway->config;
        $this->_config->assertHasAccessTokenOrKeys();
        $this->_http = new Http($gateway->config);
    }

    public function all()
    {
        $path = $this->_config->merchantPath() . '/plans';
        $response = $this->_http->get($path);
        if (key_exists('plans', $response)){
            $plans = ["plan" => $response['plans']];
        } else {
            $plans = ["plan" => []];
        }

        return Util::extractAttributeAsArray(
            $plans,
            'plan'
        );
    }
}
class_alias('Braintree\PlanGateway', 'Braintree_PlanGateway');