Version Notes
t-appz Adapter for Magento
Download this release
Release Info
| Developer | tmobtech |
| Extension | Tmob_Tappz |
| Version | 1.0.11 |
| Comparing to | |
| See all releases | |
Code changes from version 1.0.9 to 1.0.11
app/code/community/TmobLabs/Tappz/Model/Basket/Api.php
CHANGED
|
@@ -79,7 +79,7 @@ class TmobLabs_Tappz_Model_Basket_Api extends Mage_Api_Model_Resource_Abstract
|
|
| 79 |
$basket['lines'][] = $line;
|
| 80 |
}
|
| 81 |
|
| 82 |
-
$basket['currency'] = Mage::app()->getStore($quote->getStoreId())->
|
| 83 |
|
| 84 |
$quoteBillingAddress = $quote->getBillingAddress();
|
| 85 |
if ($quoteBillingAddress)
|
|
@@ -282,7 +282,7 @@ class TmobLabs_Tappz_Model_Basket_Api extends Mage_Api_Model_Resource_Abstract
|
|
| 282 |
$basket['usedPointsAmount'] = null; //TODO
|
| 283 |
$basket['rewardPoints'] = null;//TODO
|
| 284 |
$basket['paymentFee'] = null;//TODO
|
| 285 |
-
$basket['estimatedSupplyDate'] = null;
|
| 286 |
$basket['isGiftWrappingEnabled'] = true;
|
| 287 |
$basket['giftWrapping'] = array();
|
| 288 |
$basket['giftWrapping']['giftWrappingFee'] = '0'; // TODO
|
|
@@ -393,8 +393,11 @@ class TmobLabs_Tappz_Model_Basket_Api extends Mage_Api_Model_Resource_Abstract
|
|
| 393 |
$shippingAddress = Mage::getModel('sales/quote_address')
|
| 394 |
->importCustomerAddress($customerShippingAddress)
|
| 395 |
->implodeStreetAddress();
|
| 396 |
-
|
| 397 |
-
|
|
|
|
|
|
|
|
|
|
| 398 |
$quote->setShippingAddress($shippingAddress)
|
| 399 |
->getShippingAddress()
|
| 400 |
->setCollectShippingRates(true);
|
|
@@ -403,18 +406,18 @@ class TmobLabs_Tappz_Model_Basket_Api extends Mage_Api_Model_Resource_Abstract
|
|
| 403 |
if (!is_null($shippingMethodId)) {
|
| 404 |
$quoteShippingAddress = $quote->getShippingAddress();
|
| 405 |
if (is_null($quoteShippingAddress->getId())) {
|
| 406 |
-
$this->_fault(
|
| 407 |
}
|
| 408 |
|
| 409 |
$rate = $quoteShippingAddress->collectShippingRates()->getShippingRateByCode($shippingMethodId);
|
| 410 |
if (!$rate) {
|
| 411 |
-
$this->_fault('
|
| 412 |
}
|
| 413 |
|
| 414 |
try {
|
| 415 |
$quote->getShippingAddress()->setShippingMethod($shippingMethodId);
|
| 416 |
} catch (Mage_Core_Exception $e) {
|
| 417 |
-
$this->_fault('
|
| 418 |
}
|
| 419 |
}
|
| 420 |
|
|
@@ -435,7 +438,7 @@ class TmobLabs_Tappz_Model_Basket_Api extends Mage_Api_Model_Resource_Abstract
|
|
| 435 |
$quote->setGiftMessageId(0);
|
| 436 |
} else {
|
| 437 |
$giftMessage['type'] = 'quote';
|
| 438 |
-
$giftMessage['message'] = $message;
|
| 439 |
$giftMessages = array($quoteId => $giftMessage);
|
| 440 |
$request = new Mage_Core_Controller_Request_Http();
|
| 441 |
$request->setParam("giftmessage", $giftMessages);
|
|
@@ -544,7 +547,7 @@ class TmobLabs_Tappz_Model_Basket_Api extends Mage_Api_Model_Resource_Abstract
|
|
| 544 |
$creditCard = $payment->creditCard;
|
| 545 |
$type = null;
|
| 546 |
|
| 547 |
-
if(!is_null($creditCard)) {
|
| 548 |
switch ($creditCard->type) {
|
| 549 |
case '1':
|
| 550 |
$type = "VI";
|
|
@@ -565,6 +568,14 @@ class TmobLabs_Tappz_Model_Basket_Api extends Mage_Api_Model_Resource_Abstract
|
|
| 565 |
$paymentData['cc_exp_month'] = $creditCard->month;
|
| 566 |
$paymentData['cc_exp_year'] = $creditCard->year;
|
| 567 |
$paymentData['cc_cid'] = $creditCard->cvv;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 568 |
} else {
|
| 569 |
return $this->get($quote->getId());
|
| 570 |
}
|
|
@@ -703,6 +714,13 @@ class TmobLabs_Tappz_Model_Basket_Api extends Mage_Api_Model_Resource_Abstract
|
|
| 703 |
|
| 704 |
$order = $service->getOrder();
|
| 705 |
if ($order) {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 706 |
Mage::dispatchEvent('checkout_type_onepage_save_order_after',
|
| 707 |
array('order' => $order, 'quote' => $quote));
|
| 708 |
|
|
@@ -712,7 +730,7 @@ class TmobLabs_Tappz_Model_Basket_Api extends Mage_Api_Model_Resource_Abstract
|
|
| 712 |
Mage::logException($e);
|
| 713 |
}
|
| 714 |
}
|
| 715 |
-
|
| 716 |
Mage::dispatchEvent(
|
| 717 |
'checkout_submit_all_after',
|
| 718 |
array('order' => $order, 'quote' => $quote)
|
|
@@ -745,8 +763,8 @@ class TmobLabs_Tappz_Model_Basket_Api extends Mage_Api_Model_Resource_Abstract
|
|
| 745 |
}
|
| 746 |
|
| 747 |
$contract = array();
|
| 748 |
-
$contract['
|
| 749 |
-
$contract['
|
| 750 |
return $contract;
|
| 751 |
}
|
| 752 |
|
|
@@ -758,6 +776,24 @@ class TmobLabs_Tappz_Model_Basket_Api extends Mage_Api_Model_Resource_Abstract
|
|
| 758 |
->setStoreId($store)
|
| 759 |
->load($quoteId);
|
| 760 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 761 |
$orderId = $this->purchase($quote);
|
| 762 |
return Mage::getSingleton('tappz/Customer_Order_Api')->info($orderId);
|
| 763 |
}
|
|
@@ -1051,7 +1087,7 @@ class TmobLabs_Tappz_Model_Basket_Api extends Mage_Api_Model_Resource_Abstract
|
|
| 1051 |
$bankInfos[$bankCount]['image'] = null; // TODO : annelutfen - banka imajı
|
| 1052 |
$bankInfos[$bankCount]['displayName'] = trim($bank['name']);
|
| 1053 |
$bankInfos[$bankCount]['type'] = null;// TODO : annelutfen - kart kodu
|
| 1054 |
-
$bankInfos[$bankCount]['installmentNumber'] = null; // TODO : annelutfen -
|
| 1055 |
$bankInfos[$bankCount]['installments'][$valCount]['installmentNumber'] = $valCount; // TODO - annelutfen - dogru mu bu?
|
| 1056 |
$bankInfos[$bankCount]['installments'][$valCount]['installmentPayment'] = round($toplam_tutar / $valCount, 2, PHP_ROUND_HALF_UP); // TODO - annelutfen - dogru mu bu?
|
| 1057 |
$bankInfos[$bankCount]['installments'][$valCount]['total'] = round($toplam_tutar, 2, PHP_ROUND_HALF_UP);
|
| 79 |
$basket['lines'][] = $line;
|
| 80 |
}
|
| 81 |
|
| 82 |
+
$basket['currency'] = Mage::app()->getStore($quote->getStoreId())->getCurrentCurrencyCode();
|
| 83 |
|
| 84 |
$quoteBillingAddress = $quote->getBillingAddress();
|
| 85 |
if ($quoteBillingAddress)
|
| 282 |
$basket['usedPointsAmount'] = null; //TODO
|
| 283 |
$basket['rewardPoints'] = null;//TODO
|
| 284 |
$basket['paymentFee'] = null;//TODO
|
| 285 |
+
$basket['estimatedSupplyDate'] = null;
|
| 286 |
$basket['isGiftWrappingEnabled'] = true;
|
| 287 |
$basket['giftWrapping'] = array();
|
| 288 |
$basket['giftWrapping']['giftWrappingFee'] = '0'; // TODO
|
| 393 |
$shippingAddress = Mage::getModel('sales/quote_address')
|
| 394 |
->importCustomerAddress($customerShippingAddress)
|
| 395 |
->implodeStreetAddress();
|
| 396 |
+
|
| 397 |
+
/* @var $customer Mage_Customer_Model_Customer */
|
| 398 |
+
$customer = Mage::getModel('customer/customer')->load($shippingAddress->getCustomerId());
|
| 399 |
+
$quote->setCustomer($customer);
|
| 400 |
+
|
| 401 |
$quote->setShippingAddress($shippingAddress)
|
| 402 |
->getShippingAddress()
|
| 403 |
->setCollectShippingRates(true);
|
| 406 |
if (!is_null($shippingMethodId)) {
|
| 407 |
$quoteShippingAddress = $quote->getShippingAddress();
|
| 408 |
if (is_null($quoteShippingAddress->getId())) {
|
| 409 |
+
$this->_fault('invalid_data', 'Shipping address is not found.');
|
| 410 |
}
|
| 411 |
|
| 412 |
$rate = $quoteShippingAddress->collectShippingRates()->getShippingRateByCode($shippingMethodId);
|
| 413 |
if (!$rate) {
|
| 414 |
+
$this->_fault('invalid_data', 'Shipping rate is not found.');
|
| 415 |
}
|
| 416 |
|
| 417 |
try {
|
| 418 |
$quote->getShippingAddress()->setShippingMethod($shippingMethodId);
|
| 419 |
} catch (Mage_Core_Exception $e) {
|
| 420 |
+
$this->_fault('invalid_data', $e->getMessage());
|
| 421 |
}
|
| 422 |
}
|
| 423 |
|
| 438 |
$quote->setGiftMessageId(0);
|
| 439 |
} else {
|
| 440 |
$giftMessage['type'] = 'quote';
|
| 441 |
+
$giftMessage['message'] = (!isset($question) || $question === '') ? ">" : $message;
|
| 442 |
$giftMessages = array($quoteId => $giftMessage);
|
| 443 |
$request = new Mage_Core_Controller_Request_Http();
|
| 444 |
$request->setParam("giftmessage", $giftMessages);
|
| 547 |
$creditCard = $payment->creditCard;
|
| 548 |
$type = null;
|
| 549 |
|
| 550 |
+
if (!is_null($creditCard)) {
|
| 551 |
switch ($creditCard->type) {
|
| 552 |
case '1':
|
| 553 |
$type = "VI";
|
| 568 |
$paymentData['cc_exp_month'] = $creditCard->month;
|
| 569 |
$paymentData['cc_exp_year'] = $creditCard->year;
|
| 570 |
$paymentData['cc_cid'] = $creditCard->cvv;
|
| 571 |
+
|
| 572 |
+
|
| 573 |
+
// if(true) { // TODO : grinet ise girsen
|
| 574 |
+
$session->setData('ccNumber', $creditCard->number);
|
| 575 |
+
$session->setData('ccType', $type);
|
| 576 |
+
$session->setData('expYear', $creditCard->year);
|
| 577 |
+
$session->setData('expMonth', $creditCard->month);
|
| 578 |
+
// }
|
| 579 |
} else {
|
| 580 |
return $this->get($quote->getId());
|
| 581 |
}
|
| 714 |
|
| 715 |
$order = $service->getOrder();
|
| 716 |
if ($order) {
|
| 717 |
+
|
| 718 |
+
$status = $order->getStatus();
|
| 719 |
+
$state = $order->getState();
|
| 720 |
+
if ($status == 'canceled' || $state == 'canceled') {
|
| 721 |
+
$this->_fault('invalid_data', "Order is not completed. Please try again.");
|
| 722 |
+
}
|
| 723 |
+
|
| 724 |
Mage::dispatchEvent('checkout_type_onepage_save_order_after',
|
| 725 |
array('order' => $order, 'quote' => $quote));
|
| 726 |
|
| 730 |
Mage::logException($e);
|
| 731 |
}
|
| 732 |
}
|
| 733 |
+
$this->_fault('invalid_data', $e->getMessage());
|
| 734 |
Mage::dispatchEvent(
|
| 735 |
'checkout_submit_all_after',
|
| 736 |
array('order' => $order, 'quote' => $quote)
|
| 763 |
}
|
| 764 |
|
| 765 |
$contract = array();
|
| 766 |
+
$contract['salesContact'] = $agreements[0]['content'];
|
| 767 |
+
$contract['termOfUse'] = $agreements[1]['content'];
|
| 768 |
return $contract;
|
| 769 |
}
|
| 770 |
|
| 776 |
->setStoreId($store)
|
| 777 |
->load($quoteId);
|
| 778 |
|
| 779 |
+
try {
|
| 780 |
+
$session = Mage::getSingleton('checkout/session');
|
| 781 |
+
// $session->setData('ccNumber', $creditCard->number);
|
| 782 |
+
// $session->setData('ccType', $type);
|
| 783 |
+
// $session->setData('expYear', $creditCard->year);
|
| 784 |
+
// $session->setData('expMonth', $creditCard->month);
|
| 785 |
+
|
| 786 |
+
$ch = curl_init();
|
| 787 |
+
curl_setopt($ch, CURLOPT_URL, 'http://www.annelutfen.com/gtrpay/grinet/teb_payment/');
|
| 788 |
+
curl_setopt($ch, CURLOPT_POST, 1);
|
| 789 |
+
// curl_setopt($ch, CURLOPT_POSTFIELDS, "grant_type=client_credentials");
|
| 790 |
+
$token_result_json = curl_exec($ch);
|
| 791 |
+
curl_close($ch);
|
| 792 |
+
$token_result = json_decode($token_result_json);
|
| 793 |
+
} catch (Mage_Core_Exception $e) {
|
| 794 |
+
$this->_fault('invalid_data', $e->getMessage());
|
| 795 |
+
}
|
| 796 |
+
|
| 797 |
$orderId = $this->purchase($quote);
|
| 798 |
return Mage::getSingleton('tappz/Customer_Order_Api')->info($orderId);
|
| 799 |
}
|
| 1087 |
$bankInfos[$bankCount]['image'] = null; // TODO : annelutfen - banka imajı
|
| 1088 |
$bankInfos[$bankCount]['displayName'] = trim($bank['name']);
|
| 1089 |
$bankInfos[$bankCount]['type'] = null;// TODO : annelutfen - kart kodu
|
| 1090 |
+
$bankInfos[$bankCount]['installmentNumber'] = null; // TODO : annelutfen - maximum taksit sayısı
|
| 1091 |
$bankInfos[$bankCount]['installments'][$valCount]['installmentNumber'] = $valCount; // TODO - annelutfen - dogru mu bu?
|
| 1092 |
$bankInfos[$bankCount]['installments'][$valCount]['installmentPayment'] = round($toplam_tutar / $valCount, 2, PHP_ROUND_HALF_UP); // TODO - annelutfen - dogru mu bu?
|
| 1093 |
$bankInfos[$bankCount]['installments'][$valCount]['total'] = round($toplam_tutar, 2, PHP_ROUND_HALF_UP);
|
app/code/community/TmobLabs/Tappz/Model/Catalog/Api.php
CHANGED
|
@@ -69,8 +69,8 @@ class TmobLabs_Tappz_Model_Catalog_Api extends Mage_Catalog_Model_Api_Resource
|
|
| 69 |
|
| 70 |
public function getCategories()
|
| 71 |
{
|
| 72 |
-
$storeId = (int)
|
| 73 |
-
if($storeId <= 0){
|
| 74 |
$storeId = 1;
|
| 75 |
}
|
| 76 |
|
|
@@ -78,7 +78,7 @@ class TmobLabs_Tappz_Model_Catalog_Api extends Mage_Catalog_Model_Api_Resource
|
|
| 78 |
$store = Mage::getModel('core/store')->load($storeId);
|
| 79 |
|
| 80 |
$rootCategoryId = $store->getRootCategoryId();
|
| 81 |
-
if(!$rootCategoryId){
|
| 82 |
$rootCategoryId = 2;
|
| 83 |
}
|
| 84 |
$rootCategory = $this->getCategory($rootCategoryId);
|
|
@@ -218,8 +218,8 @@ class TmobLabs_Tappz_Model_Catalog_Api extends Mage_Catalog_Model_Api_Resource
|
|
| 218 |
|
| 219 |
public function getProduct($productId)
|
| 220 |
{
|
| 221 |
-
$storeId = (int)
|
| 222 |
-
if($storeId <= 0){
|
| 223 |
$storeId = 1;
|
| 224 |
}
|
| 225 |
|
|
@@ -274,7 +274,7 @@ class TmobLabs_Tappz_Model_Catalog_Api extends Mage_Catalog_Model_Api_Resource
|
|
| 274 |
$productInfo['actions'][] = $actionDiscount;
|
| 275 |
}
|
| 276 |
|
| 277 |
-
$productInfo['picture'] = $product->
|
| 278 |
|
| 279 |
$mediaGallery = $product->getMediaGalleryImages();
|
| 280 |
if (count($mediaGallery) > 0) {
|
| 69 |
|
| 70 |
public function getCategories()
|
| 71 |
{
|
| 72 |
+
$storeId = (int)Mage::getStoreConfig('tappz/general/store');
|
| 73 |
+
if ($storeId <= 0) {
|
| 74 |
$storeId = 1;
|
| 75 |
}
|
| 76 |
|
| 78 |
$store = Mage::getModel('core/store')->load($storeId);
|
| 79 |
|
| 80 |
$rootCategoryId = $store->getRootCategoryId();
|
| 81 |
+
if (!$rootCategoryId) {
|
| 82 |
$rootCategoryId = 2;
|
| 83 |
}
|
| 84 |
$rootCategory = $this->getCategory($rootCategoryId);
|
| 218 |
|
| 219 |
public function getProduct($productId)
|
| 220 |
{
|
| 221 |
+
$storeId = (int)Mage::getStoreConfig('tappz/general/store');
|
| 222 |
+
if ($storeId <= 0) {
|
| 223 |
$storeId = 1;
|
| 224 |
}
|
| 225 |
|
| 274 |
$productInfo['actions'][] = $actionDiscount;
|
| 275 |
}
|
| 276 |
|
| 277 |
+
$productInfo['picture'] = Mage::helper('catalog/image')->init($product, 'small_image')->resize(450, 450);
|
| 278 |
|
| 279 |
$mediaGallery = $product->getMediaGalleryImages();
|
| 280 |
if (count($mediaGallery) > 0) {
|
app/code/community/TmobLabs/Tappz/Model/Customer/Order/Api.php
CHANGED
|
@@ -16,7 +16,11 @@ class TmobLabs_Tappz_Model_Customer_Order_Api extends Mage_Sales_Model_Order_Api
|
|
| 16 |
|
| 17 |
$result = array();
|
| 18 |
foreach ($orderCollection as $order) {
|
| 19 |
-
$
|
|
|
|
|
|
|
|
|
|
|
|
|
| 20 |
}
|
| 21 |
return $result;
|
| 22 |
}
|
|
@@ -94,6 +98,7 @@ class TmobLabs_Tappz_Model_Customer_Order_Api extends Mage_Sales_Model_Order_Api
|
|
| 94 |
$result['payment']['accountNumber'] = null;
|
| 95 |
$result['payment']['bankCode'] = null;
|
| 96 |
$result['payment']['type'] = null;
|
|
|
|
| 97 |
$result['payment']['cashOnDelivery'] = null;
|
| 98 |
$result['payment']['creditCard'] = null;
|
| 99 |
$result['lines'] = array();
|
|
@@ -113,16 +118,19 @@ class TmobLabs_Tappz_Model_Customer_Order_Api extends Mage_Sales_Model_Order_Api
|
|
| 113 |
$result['payment']['methodType'] = $order['payment']['method']; // TODO : methodu bul
|
| 114 |
$result['payment']['accountNumber'] = '**** **** **** ' . $order['payment']['cc_last4'];
|
| 115 |
$result['payment']['bankCode'] = $order['payment']['cc_type'];
|
| 116 |
-
$result['payment']['type'] = $order['payment']['method'];
|
| 117 |
|
| 118 |
if ($result['payment']['methodType'] == 'paypal_express') {
|
| 119 |
$result['payment']['methodType'] = 'PayPal';
|
|
|
|
| 120 |
} elseif ($result['payment']['methodType'] == 'checkmo') {
|
| 121 |
$result['payment']['methodType'] = 'MoneyTransfer';
|
|
|
|
| 122 |
} elseif ($result['payment']['methodType'] == 'cashondelivery') {
|
| 123 |
$result['payment']['methodType'] = 'CashOnDelivery';
|
|
|
|
| 124 |
} else {
|
| 125 |
$result['payment']['methodType'] = 'CreditCard';
|
|
|
|
| 126 |
}
|
| 127 |
|
| 128 |
foreach ($order['items'] as $item){
|
| 16 |
|
| 17 |
$result = array();
|
| 18 |
foreach ($orderCollection as $order) {
|
| 19 |
+
$status = $order['status'];
|
| 20 |
+
$state = $order['state'];
|
| 21 |
+
if($status != 'canceled' && $state != 'canceled') {
|
| 22 |
+
$result[] = $this->prepareOrder($order);
|
| 23 |
+
}
|
| 24 |
}
|
| 25 |
return $result;
|
| 26 |
}
|
| 98 |
$result['payment']['accountNumber'] = null;
|
| 99 |
$result['payment']['bankCode'] = null;
|
| 100 |
$result['payment']['type'] = null;
|
| 101 |
+
$result['payment']['displayName'] = null;
|
| 102 |
$result['payment']['cashOnDelivery'] = null;
|
| 103 |
$result['payment']['creditCard'] = null;
|
| 104 |
$result['lines'] = array();
|
| 118 |
$result['payment']['methodType'] = $order['payment']['method']; // TODO : methodu bul
|
| 119 |
$result['payment']['accountNumber'] = '**** **** **** ' . $order['payment']['cc_last4'];
|
| 120 |
$result['payment']['bankCode'] = $order['payment']['cc_type'];
|
|
|
|
| 121 |
|
| 122 |
if ($result['payment']['methodType'] == 'paypal_express') {
|
| 123 |
$result['payment']['methodType'] = 'PayPal';
|
| 124 |
+
$result['payment']['type'] = 'PayPal';
|
| 125 |
} elseif ($result['payment']['methodType'] == 'checkmo') {
|
| 126 |
$result['payment']['methodType'] = 'MoneyTransfer';
|
| 127 |
+
$result['payment']['type'] = 'Money Transfer';
|
| 128 |
} elseif ($result['payment']['methodType'] == 'cashondelivery') {
|
| 129 |
$result['payment']['methodType'] = 'CashOnDelivery';
|
| 130 |
+
$result['payment']['type'] = 'Cash on Delivery';
|
| 131 |
} else {
|
| 132 |
$result['payment']['methodType'] = 'CreditCard';
|
| 133 |
+
$result['payment']['type'] = 'Credit Card';
|
| 134 |
}
|
| 135 |
|
| 136 |
foreach ($order['items'] as $item){
|
package.xml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
| 1 |
<?xml version="1.0"?>
|
| 2 |
<package>
|
| 3 |
<name>Tmob_Tappz</name>
|
| 4 |
-
<version>1.0.
|
| 5 |
<stability>stable</stability>
|
| 6 |
<license uri="http://opensource.org/licenses/osl-3.0.php">Open Software License (OSL)</license>
|
| 7 |
<channel>community</channel>
|
|
@@ -10,9 +10,9 @@
|
|
| 10 |
<description>t-appz Adapter for Magento</description>
|
| 11 |
<notes>t-appz Adapter for Magento</notes>
|
| 12 |
<authors><author><name>tmobtech </name><user>tmobLabs</user><email>info@tmobtech.com</email></author></authors>
|
| 13 |
-
<date>2015-
|
| 14 |
-
<time>
|
| 15 |
-
<contents><target name="magecommunity"><dir name="TmobLabs"><dir name="Tappz"><dir name="Block"><file name="Info.php" hash="f656ba90ea77040abb27cf8858a5e8bb"/></dir><dir name="Helper"><file name="Data.php" hash="8587ca8f702e61ae1b57dd7739a674e6"/></dir><dir name="Model"><dir name="Basket"><dir name="Api"><file name="V2.php" hash="e5860165902a6e3f0e29e238397d40f3"/></dir><file name="Api.php" hash="
|
| 16 |
<compatible/>
|
| 17 |
<dependencies><required><php><min>5.1.0</min><max>6.0.0</max></php></required></dependencies>
|
| 18 |
</package>
|
| 1 |
<?xml version="1.0"?>
|
| 2 |
<package>
|
| 3 |
<name>Tmob_Tappz</name>
|
| 4 |
+
<version>1.0.11</version>
|
| 5 |
<stability>stable</stability>
|
| 6 |
<license uri="http://opensource.org/licenses/osl-3.0.php">Open Software License (OSL)</license>
|
| 7 |
<channel>community</channel>
|
| 10 |
<description>t-appz Adapter for Magento</description>
|
| 11 |
<notes>t-appz Adapter for Magento</notes>
|
| 12 |
<authors><author><name>tmobtech </name><user>tmobLabs</user><email>info@tmobtech.com</email></author></authors>
|
| 13 |
+
<date>2015-12-25</date>
|
| 14 |
+
<time>16:04:19</time>
|
| 15 |
+
<contents><target name="magecommunity"><dir name="TmobLabs"><dir name="Tappz"><dir name="Block"><file name="Info.php" hash="f656ba90ea77040abb27cf8858a5e8bb"/></dir><dir name="Helper"><file name="Data.php" hash="8587ca8f702e61ae1b57dd7739a674e6"/></dir><dir name="Model"><dir name="Basket"><dir name="Api"><file name="V2.php" hash="e5860165902a6e3f0e29e238397d40f3"/></dir><file name="Api.php" hash="839c6dd54d71d1f49c333900b8f8fb5b"/></dir><dir name="Catalog"><dir name="Api"><file name="V2.php" hash="d28a03e359966fa0a0a9c48940ff4b2b"/></dir><file name="Api.php" hash="2ed27c2818233fc68eb87b23e384e264"/></dir><dir name="Customer"><dir name="Address"><dir name="Api"><file name="V2.php" hash="9a3ca989261966e5d9195274311db0e6"/></dir><file name="Api.php" hash="cd8b41365f3bb1ab0dc8ef779f01cfeb"/></dir><dir name="Api"><file name="V2.php" hash="5089c4a89f24f09ff6ed41903d04d210"/></dir><file name="Api.php" hash="43be089a8ac5944c8c5919c062588283"/><dir name="Order"><dir name="Api"><file name="V2.php" hash="9a4d34b33c98d7931c86a3af64718a88"/></dir><file name="Api.php" hash="dde0dec326ce102f71909a23f418e2a2"/></dir></dir><dir name="System"><dir name="Config"><file name="Action.php" hash="696379a81774cc7022565d3d22c263e6"/><file name="Address.php" hash="d7aed1d204c8fa4bbf833c22ee643bc4"/><file name="Category.php" hash="eb4af019ee4494bd305195442378957e"/><file name="Customer.php" hash="14e8962dc72e73319e632e751c009193"/><file name="Divider.php" hash="3a3b599ba29e053ec9b804975cab5b21"/><file name="Enabled.php" hash="8db7b92b36d79a153fab01ceee8c53bd"/><file name="Payment.php" hash="0216068de66b431fba037923ee30a81a"/><dir name="Product"><file name="Attribute.php" hash="62800e9eed8a06444560c351a25de6e3"/></dir><file name="Store.php" hash="ac29ff3d2a9b915ed3e78e8ac4eca999"/></dir></dir></dir><dir name="etc"><file name="adminhtml.xml" hash="35aaf132195e63f958f33b59bd981b3e"/><file name="api.xml" hash="f2812af730d2d3f4ce92ef164f3b693c"/><file name="config.xml" hash="93b957b86d745252c3e9746c0df9c3c6"/><file name="system.xml" hash="9613da2141caa6a716c3e7e6d06ef16c"/><file name="wsdl.xml" hash="ee6f0a1af3cebe17f7f63fa2284ec40a"/></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="TmobLabs_Tappz.xml" hash="88f02743bbc8116ca67c615803436b74"/></dir></target></contents>
|
| 16 |
<compatible/>
|
| 17 |
<dependencies><required><php><min>5.1.0</min><max>6.0.0</max></php></required></dependencies>
|
| 18 |
</package>
|
