File manager - Edit - /home/jardides/www/Jardi-design/plugins/j2store/payment_paymill/library/Paymill/Models/Request/Preauthorization.php
Back
<?php /** * -------------------------------------------------------------------------------- * Payment Plugin - Paymill * -------------------------------------------------------------------------------- * @package Joomla 2.5 - 3.x * @subpackage J2Store * @author Paymill * @copyright Copyright (c) Paymill * @license GNU/GPL license: http://www.gnu.org/licenses/gpl-2.0.html * -------------------------------------------------------------------------------- * * */ namespace Paymill\Models\Request; // No direct access defined('_JEXEC') or die('Restricted access'); /** * Preauthorization Model * If you’d like to reserve some money from the client’s credit card but you’d also like to execute the transaction * itself a bit later, then use preauthorizations. This is NOT possible with direct debit. * A preauthorization is valid for 7 days. */ class Preauthorization extends Base { /** * @var string */ private $_amount; /** * @var string */ private $_currency; /** * @var string */ private $_payment; /** * @var string */ private $_token; /** * @var string */ private $_description; /** * Creates an instance of the preauthorization request model */ function __construct() { $this->_serviceResource = 'Preauthorizations/'; } /** * Returns the amount * @return string */ public function getAmount() { return $this->_amount; } /** * Sets the amount * @param string $amount * @return \Paymill\Models\Request\Preauthorization */ public function setAmount($amount) { $this->_amount = $amount; return $this; } /** * Returns the currency * @return string */ public function getCurrency() { return $this->_currency; } /** * Sets the currency * @param string $currency * @return \Paymill\Models\Request\Preauthorization */ public function setCurrency($currency) { $this->_currency = $currency; return $this; } /** * Returns the identifier of a payment * @return string */ public function getPayment() { return $this->_payment; } /** * Sets the identifier of a payment * @param string $payment * @return \Paymill\Models\Request\Preauthorization */ public function setPayment($payment) { $this->_payment = $payment; return $this; } /** * Returns the token required for the creation of preAuths * @return string */ public function getToken() { return $this->_token; } /** * Sets the token required for the creation of preAuths * @param string $token * @return \Paymill\Models\Request\Preauthorization */ public function setToken($token) { $this->_token = $token; return $this; } /** * Returns the description * @return string */ public function getDescription() { return $this->_description; } /** * Sets the description * @param string $description * @return \Paymill\Models\Request\Preauthorization */ public function setDescription($description) { $this->_description = $description; return $this; } /** * Returns an array of parameters customized for the argumented methodname * @param string $method * @return array */ public function parameterize($method) { $parameterArray = array(); switch ($method) { case 'create': if (!is_null($this->getPayment())) { $parameterArray['payment'] = $this->getPayment(); } else { $parameterArray['token'] = $this->getToken(); } $parameterArray['amount'] = $this->getAmount(); $parameterArray['currency'] = $this->getCurrency(); $parameterArray['description'] = $this->getDescription(); break; case 'getOne': $parameterArray['count'] = 1; $parameterArray['offset'] = 0; break; case 'getAll': $parameterArray = $this->getFilter(); break; case 'delete': break; } return $parameterArray; } }
| ver. 1.4 |
Github
|
.
| PHP 7.4.33 | Generation time: 0.04 |
proxy
|
phpinfo
|
Settings