Version Notes
Increase plugin support for betaout version v2.
Download this release
Release Info
| Developer | jitendra |
| Extension | Betaout |
| Version | 2.2.3 |
| Comparing to | |
| See all releases | |
Code changes from version 2.2.2 to 2.2.3
- app/code/community/Betaout/.DS_Store +0 -0
- app/code/community/Betaout/Amplify/.DS_Store +0 -0
- app/code/community/Betaout/Amplify/Model/Key.php +39 -20
- app/code/community/Betaout/Amplify/controllers/{betaoutorderController.php → BetaoutorderController.php} +22 -5
- app/code/community/Betaout/Amplify/controllers/{indexController.php → IndexController.php} +0 -0
- app/code/community/Betaout/Amplify/etc/system.xml +9 -0
- package.xml +4 -4
app/code/community/Betaout/.DS_Store
CHANGED
|
Binary file
|
app/code/community/Betaout/Amplify/.DS_Store
CHANGED
|
Binary file
|
app/code/community/Betaout/Amplify/Model/Key.php
CHANGED
|
@@ -12,6 +12,7 @@ class Betaout_Amplify_Model_Key extends Mage_Core_Model_Abstract {
|
|
| 12 |
public $key;
|
| 13 |
public $secret;
|
| 14 |
public $projectId;
|
|
|
|
| 15 |
public $verified;
|
| 16 |
public $host = 'y0v.in';
|
| 17 |
public $amplify;
|
|
@@ -26,6 +27,7 @@ class Betaout_Amplify_Model_Key extends Mage_Core_Model_Abstract {
|
|
| 26 |
const XML_PATH_SECRET = 'betaout_amplify_options/settings/amplify_secret';
|
| 27 |
const XML_PATH_PROJECTID = 'betaout_amplify_options/settings/amplify_projectId';
|
| 28 |
const XML_PATH_SEND_ORDER_STATUS = 'betaout_amplify_options/order/status1';
|
|
|
|
| 29 |
const MAIL_TO = 'dharmendra@getamplify.com';
|
| 30 |
const MAIL_SUB = 'Magento Info';
|
| 31 |
const XML_PATH_MAX_RUNNING_TIME = 'system/cron/max_running_time';
|
|
@@ -40,6 +42,7 @@ class Betaout_Amplify_Model_Key extends Mage_Core_Model_Abstract {
|
|
| 40 |
$this->secret = Mage::getStoreConfig(self::XML_PATH_SECRET);
|
| 41 |
$this->projectId = Mage::getStoreConfig(self::XML_PATH_PROJECTID);
|
| 42 |
$this->verified = 1;
|
|
|
|
| 43 |
$this->amplify = new Amplify($this->key,$this->projectId);
|
| 44 |
$this->verified = 1;
|
| 45 |
$this->_process_date = Mage::getStoreConfig('betaout_amplify_options/settings/_process_date');
|
|
@@ -124,8 +127,6 @@ class Betaout_Amplify_Model_Key extends Mage_Core_Model_Abstract {
|
|
| 124 |
$cart = Mage::getSingleton('checkout/cart');
|
| 125 |
|
| 126 |
$cart_id=$cart->getQuote()->getId();
|
| 127 |
-
setcookie('_ampCart',$cart_id,time()+604800,'/');
|
| 128 |
-
|
| 129 |
$actionData = array();
|
| 130 |
|
| 131 |
$actionData[0]['id'] = $product->getId();
|
|
@@ -151,8 +152,10 @@ class Betaout_Amplify_Model_Key extends Mage_Core_Model_Abstract {
|
|
| 151 |
'cart_info' => $cartInfo,
|
| 152 |
'products' => $actionData
|
| 153 |
);
|
| 154 |
-
|
| 155 |
-
|
|
|
|
|
|
|
| 156 |
$res = $this->amplify->customer_action($actionDescription);
|
| 157 |
|
| 158 |
}
|
|
@@ -309,6 +312,7 @@ class Betaout_Amplify_Model_Key extends Mage_Core_Model_Abstract {
|
|
| 309 |
$data['phone'] = $customer->getTelephone();
|
| 310 |
$data['customer_id'] = $customer->getCustomerId();
|
| 311 |
try {
|
|
|
|
| 312 |
$this->amplify->identify($data);
|
| 313 |
} catch (Exception $ex) {
|
| 314 |
}
|
|
@@ -519,11 +523,14 @@ class Betaout_Amplify_Model_Key extends Mage_Core_Model_Abstract {
|
|
| 519 |
}
|
| 520 |
|
| 521 |
/**
|
| 522 |
-
* @author
|
| 523 |
* @desc verify key and secret while saving them
|
| 524 |
*/
|
| 525 |
public function getAmplifyOrderSuccessPageView(Varien_Event_Observer $evnt) {
|
| 526 |
try {
|
|
|
|
|
|
|
|
|
|
| 527 |
if ($this->verified) {
|
| 528 |
$orderIds = $evnt->getData('order_ids');
|
| 529 |
if (empty($orderIds) || !is_array($orderIds)) {
|
|
@@ -556,6 +563,7 @@ class Betaout_Amplify_Model_Key extends Mage_Core_Model_Abstract {
|
|
| 556 |
}
|
| 557 |
$person = array_filter($person);
|
| 558 |
$properties['update']=$person;
|
|
|
|
| 559 |
$res = $this->amplify->userProperties($data, $properties);
|
| 560 |
|
| 561 |
} else {
|
|
@@ -571,11 +579,12 @@ class Betaout_Amplify_Model_Key extends Mage_Core_Model_Abstract {
|
|
| 571 |
$person['company'] = $customer->getCompany();
|
| 572 |
$person['street'] = $customer->getStreetFull();
|
| 573 |
try {
|
| 574 |
-
|
| 575 |
} catch (Exception $ex) {
|
| 576 |
}
|
| 577 |
-
|
| 578 |
$properties['update']=$person;
|
|
|
|
| 579 |
$res = $this->amplify->userProperties($data, $properties);
|
| 580 |
}
|
| 581 |
}
|
|
@@ -590,20 +599,24 @@ class Betaout_Amplify_Model_Key extends Mage_Core_Model_Abstract {
|
|
| 590 |
$product = $item;
|
| 591 |
|
| 592 |
$product = Mage::getModel('catalog/product')->load($product->getProductId());
|
| 593 |
-
$categoryIds = $product->getCategoryIds();
|
| 594 |
$cateHolder = array();
|
| 595 |
-
|
| 596 |
-
|
| 597 |
-
$
|
| 598 |
-
$
|
| 599 |
-
|
| 600 |
-
|
| 601 |
-
|
| 602 |
-
$pid =
|
|
|
|
|
|
|
|
|
|
|
|
|
| 603 |
}
|
| 604 |
-
|
|
|
|
| 605 |
}
|
| 606 |
-
|
| 607 |
$actionData[$i]['id'] = $product->getId();
|
| 608 |
$actionData[$i]['name'] = $product->getName();
|
| 609 |
$actionData[$i]['sku'] = $product->getSku();
|
|
@@ -649,8 +662,13 @@ class Betaout_Amplify_Model_Key extends Mage_Core_Model_Abstract {
|
|
| 649 |
'order_info' => $orderInfo,
|
| 650 |
'products' => $actionData
|
| 651 |
);
|
| 652 |
-
|
|
|
|
|
|
|
| 653 |
$res = $this->amplify->customer_action($actionDescription);
|
|
|
|
|
|
|
|
|
|
| 654 |
}
|
| 655 |
}
|
| 656 |
}
|
|
@@ -731,7 +749,7 @@ class Betaout_Amplify_Model_Key extends Mage_Core_Model_Abstract {
|
|
| 731 |
public function getAmplifyCatalogProductView(Varien_Event_Observer $evnt) {
|
| 732 |
try {
|
| 733 |
if ($this->verified) {
|
| 734 |
-
|
| 735 |
$product = $evnt->getEvent()->getProduct();
|
| 736 |
$catCollection = $product->getCategoryCollection();
|
| 737 |
|
|
@@ -769,6 +787,7 @@ class Betaout_Amplify_Model_Key extends Mage_Core_Model_Abstract {
|
|
| 769 |
"identifiers" => $this->getCustomerIdentity(),
|
| 770 |
'products' => $actionData
|
| 771 |
);
|
|
|
|
| 772 |
$res = $this->amplify->customer_action($actionDescription);
|
| 773 |
}
|
| 774 |
} catch (Exception $ex) {
|
| 12 |
public $key;
|
| 13 |
public $secret;
|
| 14 |
public $projectId;
|
| 15 |
+
public $bdebug=0;
|
| 16 |
public $verified;
|
| 17 |
public $host = 'y0v.in';
|
| 18 |
public $amplify;
|
| 27 |
const XML_PATH_SECRET = 'betaout_amplify_options/settings/amplify_secret';
|
| 28 |
const XML_PATH_PROJECTID = 'betaout_amplify_options/settings/amplify_projectId';
|
| 29 |
const XML_PATH_SEND_ORDER_STATUS = 'betaout_amplify_options/order/status1';
|
| 30 |
+
const XML_PATH_DEBUG = 'betaout_amplify_options/settings/amplify_debug';
|
| 31 |
const MAIL_TO = 'dharmendra@getamplify.com';
|
| 32 |
const MAIL_SUB = 'Magento Info';
|
| 33 |
const XML_PATH_MAX_RUNNING_TIME = 'system/cron/max_running_time';
|
| 42 |
$this->secret = Mage::getStoreConfig(self::XML_PATH_SECRET);
|
| 43 |
$this->projectId = Mage::getStoreConfig(self::XML_PATH_PROJECTID);
|
| 44 |
$this->verified = 1;
|
| 45 |
+
$this->bdebug = Mage::getStoreConfig(self::XML_PATH_DEBUG);
|
| 46 |
$this->amplify = new Amplify($this->key,$this->projectId);
|
| 47 |
$this->verified = 1;
|
| 48 |
$this->_process_date = Mage::getStoreConfig('betaout_amplify_options/settings/_process_date');
|
| 127 |
$cart = Mage::getSingleton('checkout/cart');
|
| 128 |
|
| 129 |
$cart_id=$cart->getQuote()->getId();
|
|
|
|
|
|
|
| 130 |
$actionData = array();
|
| 131 |
|
| 132 |
$actionData[0]['id'] = $product->getId();
|
| 152 |
'cart_info' => $cartInfo,
|
| 153 |
'products' => $actionData
|
| 154 |
);
|
| 155 |
+
if($this->bdebug){
|
| 156 |
+
mail("rohit@getamplify.com","DEBUG product add to cart", json_encode($actionDescription));
|
| 157 |
+
}
|
| 158 |
+
|
| 159 |
$res = $this->amplify->customer_action($actionDescription);
|
| 160 |
|
| 161 |
}
|
| 312 |
$data['phone'] = $customer->getTelephone();
|
| 313 |
$data['customer_id'] = $customer->getCustomerId();
|
| 314 |
try {
|
| 315 |
+
$data= array_filter($data);
|
| 316 |
$this->amplify->identify($data);
|
| 317 |
} catch (Exception $ex) {
|
| 318 |
}
|
| 523 |
}
|
| 524 |
|
| 525 |
/**
|
| 526 |
+
* @author Rohit Tyagi
|
| 527 |
* @desc verify key and secret while saving them
|
| 528 |
*/
|
| 529 |
public function getAmplifyOrderSuccessPageView(Varien_Event_Observer $evnt) {
|
| 530 |
try {
|
| 531 |
+
if($this->bdebug){
|
| 532 |
+
mail("rohit@getamplify.com","DEBUG","order start");
|
| 533 |
+
}
|
| 534 |
if ($this->verified) {
|
| 535 |
$orderIds = $evnt->getData('order_ids');
|
| 536 |
if (empty($orderIds) || !is_array($orderIds)) {
|
| 563 |
}
|
| 564 |
$person = array_filter($person);
|
| 565 |
$properties['update']=$person;
|
| 566 |
+
$data= array_filter($data);
|
| 567 |
$res = $this->amplify->userProperties($data, $properties);
|
| 568 |
|
| 569 |
} else {
|
| 579 |
$person['company'] = $customer->getCompany();
|
| 580 |
$person['street'] = $customer->getStreetFull();
|
| 581 |
try {
|
| 582 |
+
$this->amplify->identify($data);
|
| 583 |
} catch (Exception $ex) {
|
| 584 |
}
|
| 585 |
+
$person = array_filter($person);
|
| 586 |
$properties['update']=$person;
|
| 587 |
+
$data= array_filter($data);
|
| 588 |
$res = $this->amplify->userProperties($data, $properties);
|
| 589 |
}
|
| 590 |
}
|
| 599 |
$product = $item;
|
| 600 |
|
| 601 |
$product = Mage::getModel('catalog/product')->load($product->getProductId());
|
|
|
|
| 602 |
$cateHolder = array();
|
| 603 |
+
try{
|
| 604 |
+
$catCollection = $product->getCategoryCollection();
|
| 605 |
+
$categs = $catCollection->exportToArray();
|
| 606 |
+
foreach ($categs as $cat) {
|
| 607 |
+
$cateName = Mage::getModel('catalog/category')->load($cat['entity_id']);
|
| 608 |
+
$name = $cateName->getName();
|
| 609 |
+
$id = $cateName->getEntityId();
|
| 610 |
+
$pid = $cateName->getParent_id();
|
| 611 |
+
if ($pid == 1) {
|
| 612 |
+
$pid = 0;
|
| 613 |
+
}
|
| 614 |
+
$cateHolder[] = array_filter(array("cat_id"=>$id,"cat_name" => $name, "parent_cat_id" => $pid));
|
| 615 |
}
|
| 616 |
+
}catch(Exception $e){
|
| 617 |
+
|
| 618 |
}
|
| 619 |
+
$cateHolder= array_filter($cateHolder);
|
| 620 |
$actionData[$i]['id'] = $product->getId();
|
| 621 |
$actionData[$i]['name'] = $product->getName();
|
| 622 |
$actionData[$i]['sku'] = $product->getSku();
|
| 662 |
'order_info' => $orderInfo,
|
| 663 |
'products' => $actionData
|
| 664 |
);
|
| 665 |
+
if($this->bdebug){
|
| 666 |
+
mail("rohit@getamplify.com","DEBUG order data", json_encode($actionDescription));
|
| 667 |
+
}
|
| 668 |
$res = $this->amplify->customer_action($actionDescription);
|
| 669 |
+
if($this->bdebug){
|
| 670 |
+
mail("rohit@getamplify.com","DEBUG order response", json_encode($res));
|
| 671 |
+
}
|
| 672 |
}
|
| 673 |
}
|
| 674 |
}
|
| 749 |
public function getAmplifyCatalogProductView(Varien_Event_Observer $evnt) {
|
| 750 |
try {
|
| 751 |
if ($this->verified) {
|
| 752 |
+
|
| 753 |
$product = $evnt->getEvent()->getProduct();
|
| 754 |
$catCollection = $product->getCategoryCollection();
|
| 755 |
|
| 787 |
"identifiers" => $this->getCustomerIdentity(),
|
| 788 |
'products' => $actionData
|
| 789 |
);
|
| 790 |
+
|
| 791 |
$res = $this->amplify->customer_action($actionDescription);
|
| 792 |
}
|
| 793 |
} catch (Exception $ex) {
|
app/code/community/Betaout/Amplify/controllers/{betaoutorderController.php → BetaoutorderController.php}
RENAMED
|
@@ -4,6 +4,7 @@ class Betaout_Amplify_BetaoutorderController extends Mage_Core_Controller_Front_
|
|
| 4 |
|
| 5 |
public function importAction(){
|
| 6 |
try{
|
|
|
|
| 7 |
$startDate=isset($_GET['startDate'])?$_GET['startDate']:date("Y-m-d 00:00:00");
|
| 8 |
$endDate=isset($_GET['endDate'])?$_GET['endDate']:date("Y-m-d 23:00:00");
|
| 9 |
$status=isset($_GET['status'])?$_GET['status']:"completed";
|
|
@@ -63,7 +64,7 @@ foreach ($orders as $order) {
|
|
| 63 |
$actionData[$i]['product_url'] = $product->getProductUrl();
|
| 64 |
$actionData[$i]['brandname'] = $product->getResource()->getAttribute('manufacturer') ? $product->getAttributeText('manufacturer') : false;
|
| 65 |
$actionData[$i]['quantity'] = (int) $item->getQtyOrdered();
|
| 66 |
-
$actionData[$i]['
|
| 67 |
|
| 68 |
$i++;
|
| 69 |
}
|
|
@@ -82,7 +83,15 @@ foreach ($orders as $order) {
|
|
| 82 |
$orderInfo['currency'] = $order->getOrderCurrencyCode();
|
| 83 |
$orderInfo['status'] = 'completed';
|
| 84 |
$orderInfo['tax'] = $order->getShippingTaxAmount();
|
| 85 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 86 |
|
| 87 |
$actionDescription = array(
|
| 88 |
'activity_type' => 'purchase',
|
|
@@ -91,8 +100,12 @@ foreach ($orders as $order) {
|
|
| 91 |
'products' => $actionData,
|
| 92 |
'timestamp'=>Mage::getModel('core/date')->timestamp($order->getData('created_at'))
|
| 93 |
);
|
| 94 |
-
echo "Time".$order->getData('created_at');
|
| 95 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
| 96 |
|
| 97 |
self::sendData($actionDescription,'ecommerce/activities/');
|
| 98 |
|
|
@@ -108,6 +121,7 @@ foreach ($orders as $order) {
|
|
| 108 |
}
|
| 109 |
|
| 110 |
public function addProductAction(){
|
|
|
|
| 111 |
$limit=isset($_GET['limit'])?$_GET['limit']:"5";
|
| 112 |
$cpage=isset($_GET['pageNo'])?$_GET['pageNo']:1;
|
| 113 |
$products = Mage::getModel('catalog/product')->getCollection()
|
|
@@ -147,6 +161,9 @@ foreach ($products as $product) {
|
|
| 147 |
'products' => $productData,
|
| 148 |
'timestamp'=> time()
|
| 149 |
);
|
|
|
|
|
|
|
|
|
|
| 150 |
self::sendData($actionDescription,'ecommerce/products/');
|
| 151 |
}
|
| 152 |
public function sendData($data,$path){
|
|
@@ -159,7 +176,7 @@ public function sendData($data,$path){
|
|
| 159 |
$jdata = json_encode($data);
|
| 160 |
$curl = curl_init($url);
|
| 161 |
curl_setopt($curl,CURLOPT_HTTPHEADER,array('Content-Type: application/json'));
|
| 162 |
-
curl_setopt($curl, CURLOPT_CONNECTTIMEOUT_MS,
|
| 163 |
curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);
|
| 164 |
curl_setopt($curl, CURLOPT_POST, true);
|
| 165 |
curl_setopt($curl, CURLOPT_POSTFIELDS, $jdata);
|
| 4 |
|
| 5 |
public function importAction(){
|
| 6 |
try{
|
| 7 |
+
$showdata=isset($_GET['show'])?$_GET['show']:0;
|
| 8 |
$startDate=isset($_GET['startDate'])?$_GET['startDate']:date("Y-m-d 00:00:00");
|
| 9 |
$endDate=isset($_GET['endDate'])?$_GET['endDate']:date("Y-m-d 23:00:00");
|
| 10 |
$status=isset($_GET['status'])?$_GET['status']:"completed";
|
| 64 |
$actionData[$i]['product_url'] = $product->getProductUrl();
|
| 65 |
$actionData[$i]['brandname'] = $product->getResource()->getAttribute('manufacturer') ? $product->getAttributeText('manufacturer') : false;
|
| 66 |
$actionData[$i]['quantity'] = (int) $item->getQtyOrdered();
|
| 67 |
+
$actionData[$i]['categories'] = $cateHolder;
|
| 68 |
|
| 69 |
$i++;
|
| 70 |
}
|
| 83 |
$orderInfo['currency'] = $order->getOrderCurrencyCode();
|
| 84 |
$orderInfo['status'] = 'completed';
|
| 85 |
$orderInfo['tax'] = $order->getShippingTaxAmount();
|
| 86 |
+
try{
|
| 87 |
+
if(!is_object($order->getPayment())){
|
| 88 |
+
$orderInfo['payment_method']="Custom";
|
| 89 |
+
}else{
|
| 90 |
+
$orderInfo['payment_method'] = $order->getPayment()->getMethodInstance()->getCode();
|
| 91 |
+
}
|
| 92 |
+
}catch(Exception $e){
|
| 93 |
+
$orderInfo['payment_method']="Custom";
|
| 94 |
+
}
|
| 95 |
|
| 96 |
$actionDescription = array(
|
| 97 |
'activity_type' => 'purchase',
|
| 100 |
'products' => $actionData,
|
| 101 |
'timestamp'=>Mage::getModel('core/date')->timestamp($order->getData('created_at'))
|
| 102 |
);
|
| 103 |
+
echo "<br/>Time".$order_id."-".$order->getData('created_at');
|
| 104 |
+
if($showdata){
|
| 105 |
+
echo "<pre>";
|
| 106 |
+
print_r($actionDescription);
|
| 107 |
+
echo "</pre>";
|
| 108 |
+
}
|
| 109 |
|
| 110 |
self::sendData($actionDescription,'ecommerce/activities/');
|
| 111 |
|
| 121 |
}
|
| 122 |
|
| 123 |
public function addProductAction(){
|
| 124 |
+
$showdata=isset($_GET['show'])?$_GET['show']:0;
|
| 125 |
$limit=isset($_GET['limit'])?$_GET['limit']:"5";
|
| 126 |
$cpage=isset($_GET['pageNo'])?$_GET['pageNo']:1;
|
| 127 |
$products = Mage::getModel('catalog/product')->getCollection()
|
| 161 |
'products' => $productData,
|
| 162 |
'timestamp'=> time()
|
| 163 |
);
|
| 164 |
+
if($showdata){
|
| 165 |
+
print_r($actionDescription);
|
| 166 |
+
}
|
| 167 |
self::sendData($actionDescription,'ecommerce/products/');
|
| 168 |
}
|
| 169 |
public function sendData($data,$path){
|
| 176 |
$jdata = json_encode($data);
|
| 177 |
$curl = curl_init($url);
|
| 178 |
curl_setopt($curl,CURLOPT_HTTPHEADER,array('Content-Type: application/json'));
|
| 179 |
+
curl_setopt($curl, CURLOPT_CONNECTTIMEOUT_MS, 10000);
|
| 180 |
curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);
|
| 181 |
curl_setopt($curl, CURLOPT_POST, true);
|
| 182 |
curl_setopt($curl, CURLOPT_POSTFIELDS, $jdata);
|
app/code/community/Betaout/Amplify/controllers/{indexController.php → IndexController.php}
RENAMED
|
File without changes
|
app/code/community/Betaout/Amplify/etc/system.xml
CHANGED
|
@@ -65,6 +65,15 @@
|
|
| 65 |
<show_in_website>1</show_in_website>
|
| 66 |
<show_in_store>1</show_in_store>
|
| 67 |
</amplify_key>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 68 |
</fields>
|
| 69 |
</settings>
|
| 70 |
|
| 65 |
<show_in_website>1</show_in_website>
|
| 66 |
<show_in_store>1</show_in_store>
|
| 67 |
</amplify_key>
|
| 68 |
+
<amplify_debug>
|
| 69 |
+
<label>DEBUG</label>
|
| 70 |
+
<frontend_type>select</frontend_type>
|
| 71 |
+
<source_model>adminhtml/system_config_source_yesno</source_model>
|
| 72 |
+
<sort_order>4</sort_order>
|
| 73 |
+
<show_in_default>1</show_in_default>
|
| 74 |
+
<show_in_website>1</show_in_website>
|
| 75 |
+
<show_in_store>1</show_in_store>
|
| 76 |
+
</amplify_debug>
|
| 77 |
</fields>
|
| 78 |
</settings>
|
| 79 |
|
package.xml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
| 1 |
<?xml version="1.0"?>
|
| 2 |
<package>
|
| 3 |
<name>Betaout</name>
|
| 4 |
-
<version>2.2.
|
| 5 |
<stability>stable</stability>
|
| 6 |
<license>GPL</license>
|
| 7 |
<channel>community</channel>
|
|
@@ -10,9 +10,9 @@
|
|
| 10 |
<description>Helping Ecommerce Companies drive more sales and customer happiness. </description>
|
| 11 |
<notes>Increase plugin support for betaout version v2.</notes>
|
| 12 |
<authors><author><name>jitendra</name><user>jitendra</user><email>jitendra@getamplify.com</email></author></authors>
|
| 13 |
-
<date>2016-
|
| 14 |
-
<time>
|
| 15 |
-
<contents><target name="magecommunity"><dir name="Betaout"><dir name="Amplify"><dir name="Block"><dir name="Adminhtml"><dir name="System"><dir name="Config"><file name="About.php" hash="5d714a88c93aa83a3cdfed81712a1611"/><dir name="Form"><dir name="Field"><file name="Conflict.php" hash="6f91b2528452ee1a96440d3a9da43962"/></dir></dir><file name="Logo.php" hash="40f74b3fab0f1bed08315ae83abb4d42"/></dir></dir><dir name="Widget"><dir name="Button"><file name="Conflict.php" hash="903c3c00124ae86bde48f7ce2ad2f066"/></dir></dir></dir><file name="Conflictprinter.php" hash="ce0256621be50bfe02bf01a80ac11b20"/></dir><dir name="Helper"><file name="Conflictchecker.php" hash="a03e8cff4427d5a7ed28f06530f75838"/><file name="Data.php" hash="ab8d5234d07dd762f516169f3be73fe8"/></dir><dir name="Model"><file name="Amplify.php" hash="ca4d8b3a4c588f2e6ab007dc4ee651fa"/><file name="Amplifyconnectwidget.php" hash="904cedccd8685cb3f4e801b81802ec6d"/><dir name="Config"><file name="Blocks.php" hash="d32094f94f70ddc75f4ecb4ea90bdc16"/><file name="Checker.php" hash="b2b4fc113e7511f23360dc01ca3dc7e3"/><file name="ConfigAbstract.php" hash="b19f0f25177fbea91c817758886d6373"/><file name="ConfigInterface.php" hash="85c1b11953b73728feb498ae81711c29"/><file name="Datastore.php" hash="f8a8c60c2f4e1801941c334ebe45cc1a"/><file name="Helpers.php" hash="f337bdceb3fb867f7e2aa8ad90b1216e"/><file name="Models.php" hash="500a145c160beb6797f7450d03069637"/><file name="Printer.php" hash="577801efaeb6bc6dd8bd096875fda08b"/><file name="Resources.php" hash="1f14e467d10ba2afbd2354f78c0047e7"/></dir><dir name="Core"><dir name="Config"><file name="Base.php" hash="7bccfac5cac9b19f1073bb97568958f8"/><file name="Element.php" hash="d2ce6a9a5840dbe335514b7455c60688"/></dir><file name="Config.php" hash="4222a35a2c71b3702199efbfddbee701"/></dir><file name="CronStatus.php" hash="298e6e428249ed7020c27e3c8abc52a2"/><file name="Key.php" hash="
|
| 16 |
<compatible/>
|
| 17 |
<dependencies><required><php><min>5.0.0</min><max>7.0.0</max></php></required></dependencies>
|
| 18 |
</package>
|
| 1 |
<?xml version="1.0"?>
|
| 2 |
<package>
|
| 3 |
<name>Betaout</name>
|
| 4 |
+
<version>2.2.3</version>
|
| 5 |
<stability>stable</stability>
|
| 6 |
<license>GPL</license>
|
| 7 |
<channel>community</channel>
|
| 10 |
<description>Helping Ecommerce Companies drive more sales and customer happiness. </description>
|
| 11 |
<notes>Increase plugin support for betaout version v2.</notes>
|
| 12 |
<authors><author><name>jitendra</name><user>jitendra</user><email>jitendra@getamplify.com</email></author></authors>
|
| 13 |
+
<date>2016-03-11</date>
|
| 14 |
+
<time>05:15:53</time>
|
| 15 |
+
<contents><target name="magecommunity"><dir name="Betaout"><dir name="Amplify"><dir name="Block"><dir name="Adminhtml"><dir name="System"><dir name="Config"><file name="About.php" hash="5d714a88c93aa83a3cdfed81712a1611"/><dir name="Form"><dir name="Field"><file name="Conflict.php" hash="6f91b2528452ee1a96440d3a9da43962"/></dir></dir><file name="Logo.php" hash="40f74b3fab0f1bed08315ae83abb4d42"/></dir></dir><dir name="Widget"><dir name="Button"><file name="Conflict.php" hash="903c3c00124ae86bde48f7ce2ad2f066"/></dir></dir></dir><file name="Conflictprinter.php" hash="ce0256621be50bfe02bf01a80ac11b20"/></dir><dir name="Helper"><file name="Conflictchecker.php" hash="a03e8cff4427d5a7ed28f06530f75838"/><file name="Data.php" hash="ab8d5234d07dd762f516169f3be73fe8"/></dir><dir name="Model"><file name="Amplify.php" hash="ca4d8b3a4c588f2e6ab007dc4ee651fa"/><file name="Amplifyconnectwidget.php" hash="904cedccd8685cb3f4e801b81802ec6d"/><dir name="Config"><file name="Blocks.php" hash="d32094f94f70ddc75f4ecb4ea90bdc16"/><file name="Checker.php" hash="b2b4fc113e7511f23360dc01ca3dc7e3"/><file name="ConfigAbstract.php" hash="b19f0f25177fbea91c817758886d6373"/><file name="ConfigInterface.php" hash="85c1b11953b73728feb498ae81711c29"/><file name="Datastore.php" hash="f8a8c60c2f4e1801941c334ebe45cc1a"/><file name="Helpers.php" hash="f337bdceb3fb867f7e2aa8ad90b1216e"/><file name="Models.php" hash="500a145c160beb6797f7450d03069637"/><file name="Printer.php" hash="577801efaeb6bc6dd8bd096875fda08b"/><file name="Resources.php" hash="1f14e467d10ba2afbd2354f78c0047e7"/></dir><dir name="Core"><dir name="Config"><file name="Base.php" hash="7bccfac5cac9b19f1073bb97568958f8"/><file name="Element.php" hash="d2ce6a9a5840dbe335514b7455c60688"/></dir><file name="Config.php" hash="4222a35a2c71b3702199efbfddbee701"/></dir><file name="CronStatus.php" hash="298e6e428249ed7020c27e3c8abc52a2"/><file name="Key.php" hash="f8b0451140c67df1478bac6849a2ebec"/><dir name="Lib"><dir name="Varien"><dir name="Simplexml"><file name="Config.php" hash="eba1dfcc303065cf5b3c9067d87dd35a"/><file name="Element.php" hash="24cb3b7db31ae8e2c813485a6b6ef749"/></dir></dir></dir><dir name="Mysql4"><dir name="Core"><file name="Config.php" hash="c0a59f8ff1f747224655de39b217abde"/></dir></dir><dir name="Path"><dir name="Locator"><file name="Array.php" hash="722f4125eb1cbd5fbc2be05facd44cd4"/><file name="Factory.php" hash="5a57006974d9870affbcbafa6ed00175"/><file name="IteratorAbstract.php" hash="adba5c801c91efdbc5afa493d353224a"/><file name="LocatorInterface.php" hash="30571ef5c7ebf942870a0ddd2ab341cb"/><file name="Stack.php" hash="73a27e38db4768019613c99407205771"/></dir></dir><dir name="Resource"><dir name="Core"><file name="Config.php" hash="14736455e9f006a69dc638e4b93f7e6e"/></dir><dir name="Db"><file name="Abstract.php" hash="3874d4c5cc4b1af30a550cc792bbe22f"/></dir></dir><file name="Sharetracking.php" hash="05f4fe212dfd53027525bae6321ea641"/><file name="Urltracking.php" hash="d4e7e48cbb8168c2baab17e1edde1eac"/><file name="Verify.php" hash="3e385480fdfdfb3b1219ba48c1ef1644"/></dir><dir name="controllers"><dir name="Adminhtml"><file name="ConflictcheckerController.php" hash="28bf9f8cca4f3e63ea90c575c424deb0"/></dir><file name="BetaoutorderController.php" hash="550318b8b1f5814651b8563da710dd27"/><file name="IndexController.php" hash="ca84b19b9ee9ea2678ba6ef5a6d23afa"/></dir><dir name="etc"><file name="config.xml" hash="196aeeac6eb735f7fab3e31b275505c2"/><file name="system.xml" hash="533883f4c5c7c2b66f62715443496a43"/></dir><dir name="log"><file name="log.log" hash="be8a8d092fd7ba1381cfbe23eda18c2e"/></dir><file name=".DS_Store" hash="a43aad2961317a2d2aca96eff3b66ddf"/></dir><file name=".DS_Store" hash="2d61b47e869d265ee2a2b3e5caf2145f"/></dir></target><target name="mageetc"><dir name="modules"><file name="Betaout_Amplify.xml" hash="a8228fbbf2d0a09dc90cd7c80b4692f0"/></dir></target><target name="magedesign"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="layout"><file name="betaout_amplify.xml" hash="328dab6359ba6464621e558238610035"/></dir><dir name="template"><dir name="betaout_amplify"><file name="amplify.phtml" hash="ce94f7e9e16d3c519bc8efcf4541716c"/><file name="conflict.phtml" hash="43277d57972e4f750d8b65e0bfb5bcb8"/><file name="logo.phtml" hash="0af4376bf5074d24519ab7e9d3ea035b"/></dir></dir></dir></dir></dir><dir name="frontend"><dir name="base"><dir name="default"><dir name="template"><dir name="betaout_amplify"><file name="checkout.phtml" hash="d41d8cd98f00b204e9800998ecf8427e"/><file name="head.phtml" hash="8ae6673a3b2ea1f7e46249b49449133d"/></dir></dir><dir name="layout"><file name="betaout_amplify.xml" hash="f262133af716b7e0c33ebc044e06518c"/></dir></dir></dir></dir></target><target name="mageskin"><dir name="adminhtml"><dir name="base"><dir name="default"><dir name="amplify"><dir name="images"><file name="Users.png" hash="96e906660b1fbd8a17831bd3049dbcfa"/><file name="ajax-loader-tr.gif" hash="1ae32bc8232ff2527c627e5b38eb319a"/><file name="ajax-loader.gif" hash="e2a38f1e23288e315af3c55416bc1ce7"/><file name="btn.png" hash="769b6736cb1bb8cb91ad7526ce9d9db8"/><file name="check.png" hash="252fd93a83e2a412ecd3b6eac01500b7"/><file name="com-app.png" hash="1f241f552bdbe1f86763981c79c8d85f"/><file name="db-1.png" hash="840d96bd5679bf4fa2d6a9577f7d3539"/><file name="engage-app.png" hash="888cde6a10a3dd9abcfccd1a5f0c8fde"/><file name="icon.png" hash="22ea725b0bee73cb03f63b063b02469f"/><file name="large_bracket.png" hash="d2e8da8266e513bd5f15b0c9855be058"/><file name="mini_bracket.png" hash="e844112e5e5173f64b3385a4a140bdeb"/></dir></dir></dir></dir></dir></target></contents>
|
| 16 |
<compatible/>
|
| 17 |
<dependencies><required><php><min>5.0.0</min><max>7.0.0</max></php></required></dependencies>
|
| 18 |
</package>
|
