Version Notes
Resolve Payment Flow Process
Now it will do Authorization-Capture Model
Download this release
Release Info
| Developer | faisal |
| Extension | prismpay123456 |
| Version | 1.1.4 |
| Comparing to | |
| See all releases | |
Code changes from version 1.1.3 to 1.1.4
- app/code/local/PrismPayTech/.DS_Store +0 -0
- app/code/local/PrismPayTech/PrismAch/.DS_Store +0 -0
- app/code/local/PrismPayTech/PrismAch/Model/PaymentMethod.php +19 -15
- app/code/local/PrismPayTech/PrismAch/etc/config.xml +1 -1
- app/code/local/PrismPayTech/PrismPay/Model/PaymentMethod.php +20 -16
- app/code/local/PrismPayTech/PrismPay/etc/config.xml +1 -1
- app/code/local/PrismPayTech/PrismProfile/Model/PaymentMethod.php +19 -16
- app/code/local/PrismPayTech/PrismProfile/etc/config.xml +1 -1
- package.xml +6 -5
app/code/local/PrismPayTech/.DS_Store
CHANGED
|
Binary file
|
app/code/local/PrismPayTech/PrismAch/.DS_Store
CHANGED
|
Binary file
|
app/code/local/PrismPayTech/PrismAch/Model/PaymentMethod.php
CHANGED
|
@@ -40,10 +40,19 @@ class PrismPayTech_PrismAch_Model_PaymentMethod extends PrismPayTech_PrismPay_Mo
|
|
| 40 |
Mage::log("Payment Method assignData ");
|
| 41 |
return $this;
|
| 42 |
}
|
| 43 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 44 |
$order = $payment->getOrder();
|
| 45 |
try {
|
| 46 |
-
Mage::log('PrismAch
|
| 47 |
|
| 48 |
$ckname=$_REQUEST["payment"]["ckname"];
|
| 49 |
$ckaba=$_REQUEST["payment"]["ckaba"];
|
|
@@ -91,7 +100,7 @@ class PrismPayTech_PrismAch_Model_PaymentMethod extends PrismPayTech_PrismPay_Mo
|
|
| 91 |
|
| 92 |
$payment->setStatus(self::STATUS_ERROR);
|
| 93 |
$payment->setAmount($amount);
|
| 94 |
-
$payment->setLastTransId($
|
| 95 |
$this->setStore($payment->getOrder()->getStoreId());
|
| 96 |
Mage::throwException($e->getMessage());
|
| 97 |
}
|
|
@@ -106,7 +115,7 @@ class PrismPayTech_PrismAch_Model_PaymentMethod extends PrismPayTech_PrismPay_Mo
|
|
| 106 |
$this->setStore($payment->getOrder()->getStoreId());
|
| 107 |
$payment->setStatus(self::STATUS_APPROVED);
|
| 108 |
$payment->setAmount($amount);
|
| 109 |
-
$payment->setLastTransId($
|
| 110 |
|
| 111 |
$payment->setTransactionId($transactionId);
|
| 112 |
$payment->setIsTransactionClosed(0);
|
|
@@ -146,12 +155,7 @@ class PrismPayTech_PrismAch_Model_PaymentMethod extends PrismPayTech_PrismPay_Mo
|
|
| 146 |
return $this;
|
| 147 |
}
|
| 148 |
|
| 149 |
-
|
| 150 |
-
|
| 151 |
-
// this function is not in used /////
|
| 152 |
-
|
| 153 |
-
|
| 154 |
-
}
|
| 155 |
public function validate()
|
| 156 |
{
|
| 157 |
/*
|
|
@@ -178,7 +182,7 @@ class PrismPayTech_PrismAch_Model_PaymentMethod extends PrismPayTech_PrismPay_Mo
|
|
| 178 |
Mage::log('PrismPay Profile Refund!');
|
| 179 |
|
| 180 |
|
| 181 |
-
$temp_transaction_id=$payment->getLastTransId();
|
| 182 |
$dash_pos = strpos($temp_transaction_id, "-");
|
| 183 |
$transaction_id=substr($temp_transaction_id,0,$dash_pos);
|
| 184 |
if($transaction_id=="")
|
|
@@ -277,19 +281,19 @@ class PrismPayTech_PrismAch_Model_PaymentMethod extends PrismPayTech_PrismPay_Mo
|
|
| 277 |
return $this;
|
| 278 |
}
|
| 279 |
|
| 280 |
-
|
| 281 |
|
| 282 |
// void the order if canceled
|
|
|
|
| 283 |
Mage::log('Order: cancel!');
|
| 284 |
-
|
| 285 |
-
return $this;
|
| 286 |
}
|
| 287 |
|
| 288 |
public function void(Varien_Object $payment) {
|
| 289 |
|
| 290 |
|
| 291 |
Mage::log('Order: void!');
|
| 292 |
-
|
| 293 |
/* Whatever you call to void a payment in your gateway */
|
| 294 |
}
|
| 295 |
|
| 40 |
Mage::log("Payment Method assignData ");
|
| 41 |
return $this;
|
| 42 |
}
|
| 43 |
+
|
| 44 |
+
public function authorize(Varien_Object $payment, $amount) {
|
| 45 |
+
|
| 46 |
+
// this function is not in used /////
|
| 47 |
+
|
| 48 |
+
Mage::log('PrismAch Authorize!');
|
| 49 |
+
}
|
| 50 |
+
|
| 51 |
+
|
| 52 |
+
public function capture(Varien_Object $payment, $amount) {
|
| 53 |
$order = $payment->getOrder();
|
| 54 |
try {
|
| 55 |
+
Mage::log('PrismAch Capture!');
|
| 56 |
|
| 57 |
$ckname=$_REQUEST["payment"]["ckname"];
|
| 58 |
$ckaba=$_REQUEST["payment"]["ckaba"];
|
| 100 |
|
| 101 |
$payment->setStatus(self::STATUS_ERROR);
|
| 102 |
$payment->setAmount($amount);
|
| 103 |
+
$payment->setLastTransId($transactionId);
|
| 104 |
$this->setStore($payment->getOrder()->getStoreId());
|
| 105 |
Mage::throwException($e->getMessage());
|
| 106 |
}
|
| 115 |
$this->setStore($payment->getOrder()->getStoreId());
|
| 116 |
$payment->setStatus(self::STATUS_APPROVED);
|
| 117 |
$payment->setAmount($amount);
|
| 118 |
+
$payment->setLastTransId($transactionId);
|
| 119 |
|
| 120 |
$payment->setTransactionId($transactionId);
|
| 121 |
$payment->setIsTransactionClosed(0);
|
| 155 |
return $this;
|
| 156 |
}
|
| 157 |
|
| 158 |
+
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 159 |
public function validate()
|
| 160 |
{
|
| 161 |
/*
|
| 182 |
Mage::log('PrismPay Profile Refund!');
|
| 183 |
|
| 184 |
|
| 185 |
+
$temp_transaction_id=$payment->getLastTransId()."-";
|
| 186 |
$dash_pos = strpos($temp_transaction_id, "-");
|
| 187 |
$transaction_id=substr($temp_transaction_id,0,$dash_pos);
|
| 188 |
if($transaction_id=="")
|
| 281 |
return $this;
|
| 282 |
}
|
| 283 |
|
| 284 |
+
public function cancel(Varien_Object $payment) {
|
| 285 |
|
| 286 |
// void the order if canceled
|
| 287 |
+
|
| 288 |
Mage::log('Order: cancel!');
|
| 289 |
+
Mage::throwException("Payment Could not be refund, Kindly use Refund Process Using CreditMemo");
|
|
|
|
| 290 |
}
|
| 291 |
|
| 292 |
public function void(Varien_Object $payment) {
|
| 293 |
|
| 294 |
|
| 295 |
Mage::log('Order: void!');
|
| 296 |
+
Mage::throwException("Payment Could not be refund, Kindly use Refund Process Using CreditMemo");
|
| 297 |
/* Whatever you call to void a payment in your gateway */
|
| 298 |
}
|
| 299 |
|
app/code/local/PrismPayTech/PrismAch/etc/config.xml
CHANGED
|
@@ -74,7 +74,7 @@
|
|
| 74 |
<title>PrismPay ACH</title>
|
| 75 |
|
| 76 |
<cctypes>AE,VI,MC,DI</cctypes>
|
| 77 |
-
<payment_action>
|
| 78 |
<allowspecific>0</allowspecific>
|
| 79 |
</prismach>
|
| 80 |
</payment>
|
| 74 |
<title>PrismPay ACH</title>
|
| 75 |
|
| 76 |
<cctypes>AE,VI,MC,DI</cctypes>
|
| 77 |
+
<payment_action>authorize_capture</payment_action>
|
| 78 |
<allowspecific>0</allowspecific>
|
| 79 |
</prismach>
|
| 80 |
</payment>
|
app/code/local/PrismPayTech/PrismPay/Model/PaymentMethod.php
CHANGED
|
@@ -32,14 +32,24 @@ class PrismPayTech_PrismPay_Model_PaymentMethod extends PrismPayTech_PrismPay_Mo
|
|
| 32 |
*
|
| 33 |
* In this function i charge credit card and mark order as completed
|
| 34 |
*/
|
| 35 |
-
|
| 36 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 37 |
$order = $payment->getOrder();
|
| 38 |
try {
|
| 39 |
-
Mage::log('PrismPay CC
|
| 40 |
|
| 41 |
|
| 42 |
-
$is_applyForProfileAdd
|
| 43 |
|
| 44 |
|
| 45 |
|
|
@@ -119,7 +129,7 @@ class PrismPayTech_PrismPay_Model_PaymentMethod extends PrismPayTech_PrismPay_Mo
|
|
| 119 |
$this->setStore($payment->getOrder()->getStoreId());
|
| 120 |
$payment->setStatus(self::STATUS_APPROVED);
|
| 121 |
$payment->setAmount($amount);
|
| 122 |
-
$payment->setLastTransId($
|
| 123 |
|
| 124 |
//save profile id of customer in to database
|
| 125 |
$transactionData=array(
|
|
@@ -191,12 +201,6 @@ class PrismPayTech_PrismPay_Model_PaymentMethod extends PrismPayTech_PrismPay_Mo
|
|
| 191 |
return $this;
|
| 192 |
}
|
| 193 |
|
| 194 |
-
public function capture(Varien_Object $payment, $amount) {
|
| 195 |
-
|
| 196 |
-
// this function is not in used we charged customer credit card in authoriza function/////
|
| 197 |
-
|
| 198 |
-
|
| 199 |
-
}
|
| 200 |
|
| 201 |
/**
|
| 202 |
* Payment refund
|
|
@@ -214,7 +218,7 @@ class PrismPayTech_PrismPay_Model_PaymentMethod extends PrismPayTech_PrismPay_Mo
|
|
| 214 |
|
| 215 |
|
| 216 |
|
| 217 |
-
$temp_transaction_id=$payment->getLastTransId();
|
| 218 |
$dash_pos = strpos($temp_transaction_id, "-");
|
| 219 |
$transaction_id=substr($temp_transaction_id,0,$dash_pos);
|
| 220 |
if($transaction_id=="")
|
|
@@ -311,19 +315,19 @@ Mage::log('Data '.$fields_string);
|
|
| 311 |
return $this;
|
| 312 |
}
|
| 313 |
|
| 314 |
-
|
| 315 |
|
| 316 |
// void the order if canceled
|
|
|
|
| 317 |
Mage::log('Order: cancel!');
|
| 318 |
-
|
| 319 |
-
return $this;
|
| 320 |
}
|
| 321 |
|
| 322 |
public function void(Varien_Object $payment) {
|
| 323 |
|
| 324 |
|
| 325 |
Mage::log('Order: void!');
|
| 326 |
-
|
| 327 |
/* Whatever you call to void a payment in your gateway */
|
| 328 |
}
|
| 329 |
|
| 32 |
*
|
| 33 |
* In this function i charge credit card and mark order as completed
|
| 34 |
*/
|
| 35 |
+
public function authorize(Varien_Object $payment, $amount) {
|
| 36 |
+
|
| 37 |
+
// this function is not in used we charged customer credit card in authoriza function/////
|
| 38 |
+
|
| 39 |
+
Mage::log('PrismPay CC authorize!');
|
| 40 |
+
return $this;
|
| 41 |
+
|
| 42 |
+
}
|
| 43 |
+
|
| 44 |
+
|
| 45 |
+
|
| 46 |
+
public function capture(Varien_Object $payment, $amount) {
|
| 47 |
$order = $payment->getOrder();
|
| 48 |
try {
|
| 49 |
+
Mage::log('PrismPay CC Capture!');
|
| 50 |
|
| 51 |
|
| 52 |
+
$is_applyForProfileAdd=@$_REQUEST["payment"]["add_profile"];
|
| 53 |
|
| 54 |
|
| 55 |
|
| 129 |
$this->setStore($payment->getOrder()->getStoreId());
|
| 130 |
$payment->setStatus(self::STATUS_APPROVED);
|
| 131 |
$payment->setAmount($amount);
|
| 132 |
+
$payment->setLastTransId($transactionId);
|
| 133 |
|
| 134 |
//save profile id of customer in to database
|
| 135 |
$transactionData=array(
|
| 201 |
return $this;
|
| 202 |
}
|
| 203 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 204 |
|
| 205 |
/**
|
| 206 |
* Payment refund
|
| 218 |
|
| 219 |
|
| 220 |
|
| 221 |
+
$temp_transaction_id=$payment->getLastTransId()."-";
|
| 222 |
$dash_pos = strpos($temp_transaction_id, "-");
|
| 223 |
$transaction_id=substr($temp_transaction_id,0,$dash_pos);
|
| 224 |
if($transaction_id=="")
|
| 315 |
return $this;
|
| 316 |
}
|
| 317 |
|
| 318 |
+
public function cancel(Varien_Object $payment) {
|
| 319 |
|
| 320 |
// void the order if canceled
|
| 321 |
+
|
| 322 |
Mage::log('Order: cancel!');
|
| 323 |
+
Mage::throwException("Payment Could not be refund, Kindly use Refund Process Using CreditMemo");
|
|
|
|
| 324 |
}
|
| 325 |
|
| 326 |
public function void(Varien_Object $payment) {
|
| 327 |
|
| 328 |
|
| 329 |
Mage::log('Order: void!');
|
| 330 |
+
Mage::throwException("Payment Could not be refund, Kindly use Refund Process Using CreditMemo");
|
| 331 |
/* Whatever you call to void a payment in your gateway */
|
| 332 |
}
|
| 333 |
|
app/code/local/PrismPayTech/PrismPay/etc/config.xml
CHANGED
|
@@ -68,7 +68,7 @@
|
|
| 68 |
<title>Credit Card (prismpay)</title>
|
| 69 |
|
| 70 |
<cctypes>AE,VI,MC,DI</cctypes>
|
| 71 |
-
<payment_action>
|
| 72 |
<allowspecific>0</allowspecific>
|
| 73 |
</prismpay>
|
| 74 |
</payment>
|
| 68 |
<title>Credit Card (prismpay)</title>
|
| 69 |
|
| 70 |
<cctypes>AE,VI,MC,DI</cctypes>
|
| 71 |
+
<payment_action>authorize_capture</payment_action>
|
| 72 |
<allowspecific>0</allowspecific>
|
| 73 |
</prismpay>
|
| 74 |
</payment>
|
app/code/local/PrismPayTech/PrismProfile/Model/PaymentMethod.php
CHANGED
|
@@ -24,10 +24,19 @@ class PrismPayTech_PrismProfile_Model_PaymentMethod extends PrismPayTech_PrismPa
|
|
| 24 |
* In this function i charge credit card and mark order as completed
|
| 25 |
*/
|
| 26 |
|
| 27 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 28 |
$order = $payment->getOrder();
|
| 29 |
try {
|
| 30 |
-
Mage::log('PrismProfile
|
| 31 |
|
| 32 |
$temp_profile_id=explode("-",$_REQUEST["payment"]["profile_id"]);
|
| 33 |
$profile_id=$temp_profile_id[0];
|
|
@@ -80,7 +89,7 @@ class PrismPayTech_PrismProfile_Model_PaymentMethod extends PrismPayTech_PrismPa
|
|
| 80 |
$this->setStore($payment->getOrder()->getStoreId());
|
| 81 |
$payment->setStatus(self::STATUS_APPROVED);
|
| 82 |
$payment->setAmount($amount);
|
| 83 |
-
$payment->setLastTransId($
|
| 84 |
|
| 85 |
$payment->setTransactionId($transactionId);
|
| 86 |
$payment->setIsTransactionClosed(0);
|
|
@@ -104,7 +113,7 @@ class PrismPayTech_PrismProfile_Model_PaymentMethod extends PrismPayTech_PrismPa
|
|
| 104 |
} else {
|
| 105 |
$payment->setStatus(self::STATUS_ERROR);
|
| 106 |
$payment->setAmount($amount);
|
| 107 |
-
$payment->setLastTransId($
|
| 108 |
$this->setStore($payment->getOrder()->getStoreId());
|
| 109 |
if ($this->__debugMode == 1) {
|
| 110 |
Mage::throwException("XMl=" . $fields_string . "\n\nAccount=" . $this->__accountID . "\n\nSub Account=" . $this->__subAccountID . "\n\nTest Mode=" . $this->__testMode . "\n\nDebuge Mode=" . $this->__debugMode);
|
|
@@ -115,12 +124,7 @@ class PrismPayTech_PrismProfile_Model_PaymentMethod extends PrismPayTech_PrismPa
|
|
| 115 |
return $this;
|
| 116 |
}
|
| 117 |
|
| 118 |
-
|
| 119 |
-
|
| 120 |
-
// this function is not in used /////
|
| 121 |
-
|
| 122 |
-
|
| 123 |
-
}
|
| 124 |
public function validate()
|
| 125 |
{
|
| 126 |
/*
|
|
@@ -147,7 +151,7 @@ class PrismPayTech_PrismProfile_Model_PaymentMethod extends PrismPayTech_PrismPa
|
|
| 147 |
Mage::log('PrismPay Profile Refund!');
|
| 148 |
|
| 149 |
|
| 150 |
-
$temp_transaction_id=$payment->getLastTransId();
|
| 151 |
$dash_pos = strpos($temp_transaction_id, "-");
|
| 152 |
$transaction_id=substr($temp_transaction_id,0,$dash_pos);
|
| 153 |
if($transaction_id=="")
|
|
@@ -246,22 +250,21 @@ class PrismPayTech_PrismProfile_Model_PaymentMethod extends PrismPayTech_PrismPa
|
|
| 246 |
return $this;
|
| 247 |
}
|
| 248 |
|
| 249 |
-
|
| 250 |
|
| 251 |
// void the order if canceled
|
|
|
|
| 252 |
Mage::log('Order: cancel!');
|
| 253 |
-
|
| 254 |
-
return $this;
|
| 255 |
}
|
| 256 |
|
| 257 |
public function void(Varien_Object $payment) {
|
| 258 |
|
| 259 |
|
| 260 |
Mage::log('Order: void!');
|
| 261 |
-
|
| 262 |
/* Whatever you call to void a payment in your gateway */
|
| 263 |
}
|
| 264 |
-
|
| 265 |
}
|
| 266 |
|
| 267 |
?>
|
| 24 |
* In this function i charge credit card and mark order as completed
|
| 25 |
*/
|
| 26 |
|
| 27 |
+
public function authorize(Varien_Object $payment, $amount) {
|
| 28 |
+
|
| 29 |
+
// this function is not in used /////
|
| 30 |
+
|
| 31 |
+
Mage::log('PrismProfile Capture!');
|
| 32 |
+
|
| 33 |
+
}
|
| 34 |
+
|
| 35 |
+
|
| 36 |
+
public function capture(Varien_Object $payment, $amount) {
|
| 37 |
$order = $payment->getOrder();
|
| 38 |
try {
|
| 39 |
+
Mage::log('PrismProfile Capture!');
|
| 40 |
|
| 41 |
$temp_profile_id=explode("-",$_REQUEST["payment"]["profile_id"]);
|
| 42 |
$profile_id=$temp_profile_id[0];
|
| 89 |
$this->setStore($payment->getOrder()->getStoreId());
|
| 90 |
$payment->setStatus(self::STATUS_APPROVED);
|
| 91 |
$payment->setAmount($amount);
|
| 92 |
+
$payment->setLastTransId($transactionId);
|
| 93 |
|
| 94 |
$payment->setTransactionId($transactionId);
|
| 95 |
$payment->setIsTransactionClosed(0);
|
| 113 |
} else {
|
| 114 |
$payment->setStatus(self::STATUS_ERROR);
|
| 115 |
$payment->setAmount($amount);
|
| 116 |
+
$payment->setLastTransId($transactionId);
|
| 117 |
$this->setStore($payment->getOrder()->getStoreId());
|
| 118 |
if ($this->__debugMode == 1) {
|
| 119 |
Mage::throwException("XMl=" . $fields_string . "\n\nAccount=" . $this->__accountID . "\n\nSub Account=" . $this->__subAccountID . "\n\nTest Mode=" . $this->__testMode . "\n\nDebuge Mode=" . $this->__debugMode);
|
| 124 |
return $this;
|
| 125 |
}
|
| 126 |
|
| 127 |
+
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 128 |
public function validate()
|
| 129 |
{
|
| 130 |
/*
|
| 151 |
Mage::log('PrismPay Profile Refund!');
|
| 152 |
|
| 153 |
|
| 154 |
+
$temp_transaction_id=$payment->getLastTransId()."-";
|
| 155 |
$dash_pos = strpos($temp_transaction_id, "-");
|
| 156 |
$transaction_id=substr($temp_transaction_id,0,$dash_pos);
|
| 157 |
if($transaction_id=="")
|
| 250 |
return $this;
|
| 251 |
}
|
| 252 |
|
| 253 |
+
public function cancel(Varien_Object $payment) {
|
| 254 |
|
| 255 |
// void the order if canceled
|
| 256 |
+
|
| 257 |
Mage::log('Order: cancel!');
|
| 258 |
+
Mage::throwException("Payment Could not be refund, Kindly use Refund Process Using CreditMemo");
|
|
|
|
| 259 |
}
|
| 260 |
|
| 261 |
public function void(Varien_Object $payment) {
|
| 262 |
|
| 263 |
|
| 264 |
Mage::log('Order: void!');
|
| 265 |
+
Mage::throwException("Payment Could not be refund, Kindly use Refund Process Using CreditMemo");
|
| 266 |
/* Whatever you call to void a payment in your gateway */
|
| 267 |
}
|
|
|
|
| 268 |
}
|
| 269 |
|
| 270 |
?>
|
app/code/local/PrismPayTech/PrismProfile/etc/config.xml
CHANGED
|
@@ -74,7 +74,7 @@
|
|
| 74 |
<title>CreditCard Profile</title>
|
| 75 |
|
| 76 |
<cctypes>AE,VI,MC,DI</cctypes>
|
| 77 |
-
<payment_action>
|
| 78 |
<allowspecific>0</allowspecific>
|
| 79 |
</prismprofile>
|
| 80 |
</payment>
|
| 74 |
<title>CreditCard Profile</title>
|
| 75 |
|
| 76 |
<cctypes>AE,VI,MC,DI</cctypes>
|
| 77 |
+
<payment_action>authorize_capture</payment_action>
|
| 78 |
<allowspecific>0</allowspecific>
|
| 79 |
</prismprofile>
|
| 80 |
</payment>
|
package.xml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
| 1 |
<?xml version="1.0"?>
|
| 2 |
<package>
|
| 3 |
<name>prismpay123456</name>
|
| 4 |
-
<version>1.1.
|
| 5 |
<stability>stable</stability>
|
| 6 |
<license>GPL</license>
|
| 7 |
<channel>community</channel>
|
|
@@ -11,11 +11,12 @@
|
|
| 11 |
- Transaction With Credit Card 
|
| 12 |
- Transaction With Credit Card Profile
|
| 13 |
- Transaction With ACH</description>
|
| 14 |
-
<notes>Resolve
|
|
|
|
| 15 |
<authors><author><name>faisal</name><user>faisalshamsi</user><email>faisalsharifshamsi@gmail.com</email></author></authors>
|
| 16 |
-
<date>2015-
|
| 17 |
-
<time>
|
| 18 |
-
<contents><target name="magelocal"><dir name="PrismPayTech"><dir name="PrismAch"><dir name="Block"><file name="Form.php" hash="d36391210a44ed75fde7b77dfde8a4aa"/><file name="Info.php" hash="4348248fc72efdc79a3da60353cbf3c5"/><file name=".DS_Store" hash="194577a7e20bdcc7afbb718f502c134c"/></dir><dir name="Helper"><file name="Data.php" hash="deb366af64a17b0d89513165ca2583b0"/></dir><dir name="Model"><file name="PaymentMethod.php" hash="
|
| 19 |
<compatible/>
|
| 20 |
<dependencies><required><php><min>5.0.0</min><max>7.0.0</max></php></required></dependencies>
|
| 21 |
</package>
|
| 1 |
<?xml version="1.0"?>
|
| 2 |
<package>
|
| 3 |
<name>prismpay123456</name>
|
| 4 |
+
<version>1.1.4</version>
|
| 5 |
<stability>stable</stability>
|
| 6 |
<license>GPL</license>
|
| 7 |
<channel>community</channel>
|
| 11 |
- Transaction With Credit Card 
|
| 12 |
- Transaction With Credit Card Profile
|
| 13 |
- Transaction With ACH</description>
|
| 14 |
+
<notes>Resolve Payment Flow Process
|
| 15 |
+
Now it will do Authorization-Capture Model</notes>
|
| 16 |
<authors><author><name>faisal</name><user>faisalshamsi</user><email>faisalsharifshamsi@gmail.com</email></author></authors>
|
| 17 |
+
<date>2015-03-05</date>
|
| 18 |
+
<time>13:32:40</time>
|
| 19 |
+
<contents><target name="magelocal"><dir name="PrismPayTech"><dir name="PrismAch"><dir name="Block"><file name="Form.php" hash="d36391210a44ed75fde7b77dfde8a4aa"/><file name="Info.php" hash="4348248fc72efdc79a3da60353cbf3c5"/><file name=".DS_Store" hash="194577a7e20bdcc7afbb718f502c134c"/></dir><dir name="Helper"><file name="Data.php" hash="deb366af64a17b0d89513165ca2583b0"/></dir><dir name="Model"><file name="PaymentMethod.php" hash="3662b7184bfa91eb05738ad3fdd0b1f8"/></dir><dir name="etc"><file name="config.xml" hash="431af590fb6048c466b3f19345ca5a70"/><file name="system.xml" hash="b723e6f309aed481a94214ae35ee5e25"/><file name=".DS_Store" hash="194577a7e20bdcc7afbb718f502c134c"/></dir><file name=".DS_Store" hash="01cd21a99a8fecedba5a00b1fc1acaaa"/></dir><dir name="PrismPay"><dir name="Block"><file name="Form.php" hash="ee163629d2444e788c776817d3f016a0"/><file name="Info.php" hash="01f270ad25586d2614d9f12cf7aadda1"/><file name=".DS_Store" hash="194577a7e20bdcc7afbb718f502c134c"/></dir><dir name="Model"><file name="PaymentHelper.php" hash="484f5c6e4910d4b9ad25b36fe699cc13"/><file name="PaymentMethod.php" hash="d3333ac0682f87d029e57b154c0babbb"/></dir><dir name="etc"><file name="config.xml" hash="685a73b1582a7f6159de39e96fe7691f"/><file name="system.xml" hash="56fa00aa261dc9222b19f4810ae115cb"/><file name=".DS_Store" hash="194577a7e20bdcc7afbb718f502c134c"/></dir><file name=".DS_Store" hash="4e6e62c49783e7e971f145ce1087df2d"/></dir><dir name="PrismProfile"><dir name="Block"><file name="Form.php" hash="8cebae97f6172f3ed865bb833592c9ba"/><file name="Info.php" hash="a735b6064b59fd0207d61af8ad6d3291"/><file name=".DS_Store" hash="194577a7e20bdcc7afbb718f502c134c"/></dir><dir name="Helper"><file name="Data.php" hash="c9cf3418443abefaade2e24a160ccfad"/></dir><dir name="Model"><file name="PaymentMethod.php" hash="335c9f5033919adfcfaa968219369546"/></dir><dir name="etc"><file name="config.xml" hash="98b8b088413cce3ea79da52bf8db15e5"/><file name="system.xml" hash="ac06477ee0baef27907a173d803ec8aa"/><file name=".DS_Store" hash="194577a7e20bdcc7afbb718f502c134c"/></dir><file name=".DS_Store" hash="4e6e62c49783e7e971f145ce1087df2d"/></dir><file name=".DS_Store" hash="69eea4bc694bb1d90d6c90205b1f38aa"/></dir></target><target name="mageetc"><dir name="modules"><file name="PrismPayTech_PrismAch.xml" hash="b33641bec0854135e7499f2ca88504c2"/><file name="PrismPayTech_PrismPay.xml" hash="e190bff166d4305a4d8e17a982940db9"/><file name="PrismPayTech_PrismProfile.xml" hash="22467c72a1d11bd6209b1bf0b4d7f5bd"/></dir></target><target name="magedesign"><dir name="frontend"><dir name="base"><dir name="default"><dir name="template"><dir name="prismpay"><dir name="form"><file name="pp.phtml" hash="822a5fe4c95f73cc099d56db13505c90"/><file name="prismpayach.phtml" hash="283d8ce341d5fcf1c27d6fedc5390b75"/><file name="prismpaycc.phtml" hash="6374d7127b941da03269dde0c6646cdd"/><file name="prismpayprofile.phtml" hash="c455281e383b10accd11aa6f58c0f5af"/><file name=".DS_Store" hash="194577a7e20bdcc7afbb718f502c134c"/></dir><file name=".DS_Store" hash="345f475e37b0aed5ca05358ae018b527"/></dir></dir></dir></dir></dir></target></contents>
|
| 20 |
<compatible/>
|
| 21 |
<dependencies><required><php><min>5.0.0</min><max>7.0.0</max></php></required></dependencies>
|
| 22 |
</package>
|
