Version Notes
edrone magento module - initial public release
Download this release
Release Info
| Developer | Michał Blak |
| Extension | edroneCRM |
| Version | 1.1.17 |
| Comparing to | |
| See all releases | |
Code changes from version 1.1.16 to 1.1.17
- app/code/local/Edrone/Base/Block/Cart.php +11 -2
- app/code/local/Edrone/Base/Block/Order.php +32 -17
- app/code/local/Edrone/Base/Block/Product.php +16 -10
- app/code/local/Edrone/Base/Model/Observer.php +32 -17
- app/code/local/Edrone/Base/controllers/EdroneproductController.php +8 -2
- app/code/local/Edrone/Base/etc/config.xml +1 -1
- app/design/frontend/base/default/template/edrone/cart_view.phtml +2 -2
- app/design/frontend/base/default/template/edrone/default.phtml +1 -1
- app/design/frontend/base/default/template/edrone/product_view.phtml +1 -1
- app/design/frontend/base/default/template/edrone/success_view.phtml +1 -1
- package.xml +5 -5
app/code/local/Edrone/Base/Block/Cart.php
CHANGED
|
@@ -10,11 +10,20 @@ class Edrone_Base_Block_Cart extends Edrone_Base_Block_Base
|
|
| 10 |
$productData = array();
|
| 11 |
$product = Mage::getModel('core/session')->getProductToShoppingCart();
|
| 12 |
if ($product && $product->getSku()) {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 13 |
|
| 14 |
$productData['sku'] = $product->getSku();
|
| 15 |
$productData['id'] = intval( Mage::getModel("catalog/product")->getIdBySku( $product->getSku() ) );
|
| 16 |
-
$productData['title'] = $
|
| 17 |
-
$productData['image'] = $
|
| 18 |
|
| 19 |
|
| 20 |
$_Product = Mage::getModel("catalog/product")->load( $productData['id'] );
|
| 10 |
$productData = array();
|
| 11 |
$product = Mage::getModel('core/session')->getProductToShoppingCart();
|
| 12 |
if ($product && $product->getSku()) {
|
| 13 |
+
$parentIds = Mage::getModel('catalog/product_type_configurable')->getParentIdsByChild($product->getId());
|
| 14 |
+
if(count($parentIds) > 0){
|
| 15 |
+
$product = Mage::getModel("catalog/product")->load( $parentIds[0] );
|
| 16 |
+
$title = $product->getName();
|
| 17 |
+
$image = (string) Mage::helper('catalog/image')->init($product, 'image')->resize(438);
|
| 18 |
+
}else{
|
| 19 |
+
$title = $product->getTitle();
|
| 20 |
+
$image = $product->getImage();
|
| 21 |
+
}
|
| 22 |
|
| 23 |
$productData['sku'] = $product->getSku();
|
| 24 |
$productData['id'] = intval( Mage::getModel("catalog/product")->getIdBySku( $product->getSku() ) );
|
| 25 |
+
$productData['title'] = $title;
|
| 26 |
+
$productData['image'] = $image;
|
| 27 |
|
| 28 |
|
| 29 |
$_Product = Mage::getModel("catalog/product")->load( $productData['id'] );
|
app/code/local/Edrone/Base/Block/Order.php
CHANGED
|
@@ -413,6 +413,7 @@ class Edrone_Base_Block_Order extends Edrone_Base_Block_Base
|
|
| 413 |
*/
|
| 414 |
public function getOrderData()
|
| 415 |
{
|
|
|
|
| 416 |
$orderData = $skus = $titles = $images = array();
|
| 417 |
|
| 418 |
$lastOrderId = Mage::getSingleton('checkout/session')->getLastOrderId();
|
|
@@ -423,24 +424,38 @@ class Edrone_Base_Block_Order extends Edrone_Base_Block_Base
|
|
| 423 |
$product_counts = array();
|
| 424 |
|
| 425 |
foreach ($order->getAllVisibleItems() as $item) {
|
| 426 |
-
$
|
| 427 |
-
$
|
| 428 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 429 |
|
| 430 |
-
|
| 431 |
-
|
| 432 |
-
|
| 433 |
-
|
| 434 |
-
|
| 435 |
-
$
|
| 436 |
-
$
|
| 437 |
-
$
|
| 438 |
-
|
| 439 |
-
|
| 440 |
-
|
| 441 |
-
|
| 442 |
-
|
| 443 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
| 444 |
}
|
| 445 |
|
| 446 |
$orderData['sku'] = join('|', $skus);
|
| 413 |
*/
|
| 414 |
public function getOrderData()
|
| 415 |
{
|
| 416 |
+
|
| 417 |
$orderData = $skus = $titles = $images = array();
|
| 418 |
|
| 419 |
$lastOrderId = Mage::getSingleton('checkout/session')->getLastOrderId();
|
| 424 |
$product_counts = array();
|
| 425 |
|
| 426 |
foreach ($order->getAllVisibleItems() as $item) {
|
| 427 |
+
$parentIds = Mage::getModel('catalog/product_type_configurable')->getParentIdsByChild($item->getProductId());
|
| 428 |
+
if(count($parentIds) > 0){
|
| 429 |
+
$product = Mage::getModel("catalog/product")->load( $parentIds[0] );
|
| 430 |
+
$skus[] = $product->getSku();
|
| 431 |
+
$ids[] = $product->getId();
|
| 432 |
+
$titles[] = $product->getName();
|
| 433 |
+
$categoryIds = $product->getCategoryIds();//array of product categories
|
| 434 |
+
$product_counts[] = (int)$item->getQtyOrdered();
|
| 435 |
+
$categoryId = array_pop($categoryIds);
|
| 436 |
+
if(is_numeric($categoryId)){
|
| 437 |
+
$category = Mage::getModel('catalog/category')->load($categoryId);
|
| 438 |
+
$product_category_names[] = $category->getName();
|
| 439 |
+
$product_category_ids[] = $categoryId;
|
| 440 |
|
| 441 |
+
}
|
| 442 |
+
$images[] = ($product) ? (string)Mage::helper('catalog/image')->init($product, 'image')->resize(438) : '';
|
| 443 |
+
}else{
|
| 444 |
+
$product = Mage::getModel("catalog/product")->load( $item->getProductId() );
|
| 445 |
+
$skus[] = $product->getSku();
|
| 446 |
+
$ids[] = $product->getId();
|
| 447 |
+
$titles[] = $product->getName();
|
| 448 |
+
$categoryIds = $product->getCategoryIds();//array of product categories
|
| 449 |
+
$product_counts[] = (int)$item->getQtyOrdered();
|
| 450 |
+
$categoryId = array_pop($categoryIds);
|
| 451 |
+
if(is_numeric($categoryId)){
|
| 452 |
+
$category = Mage::getModel('catalog/category')->load($categoryId);
|
| 453 |
+
$product_category_names[] = $category->getName();
|
| 454 |
+
$product_category_ids[] = $categoryId;
|
| 455 |
+
|
| 456 |
+
}
|
| 457 |
+
$images[] = ($product) ? (string)Mage::helper('catalog/image')->init($product, 'image')->resize(438) : '';
|
| 458 |
+
}
|
| 459 |
}
|
| 460 |
|
| 461 |
$orderData['sku'] = join('|', $skus);
|
app/code/local/Edrone/Base/Block/Product.php
CHANGED
|
@@ -2,6 +2,7 @@
|
|
| 2 |
|
| 3 |
class Edrone_Base_Block_Product extends Edrone_Base_Block_Base
|
| 4 |
{
|
|
|
|
| 5 |
/**
|
| 6 |
* @return array
|
| 7 |
*/
|
|
@@ -10,24 +11,29 @@ class Edrone_Base_Block_Product extends Edrone_Base_Block_Base
|
|
| 10 |
$productArray = array();
|
| 11 |
$product = Mage::registry('current_product');
|
| 12 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 13 |
$productArray['sku'] = $product->getSku();
|
| 14 |
$productArray['id'] = $product->getId();
|
| 15 |
$productArray['title'] = $product->getName();
|
| 16 |
-
$productArray['image'] = (string)Mage::helper('catalog/image')->init($product, 'image')->resize(438);
|
| 17 |
$productArray['product_url'] = $product->getUrl();
|
| 18 |
-
|
| 19 |
-
$categoryIds = $product->getCategoryIds()
|
|
|
|
| 20 |
|
| 21 |
|
| 22 |
-
|
| 23 |
$categoryId = array_pop($categoryIds);
|
| 24 |
-
if(is_numeric($categoryId)){
|
| 25 |
$category = Mage::getModel('catalog/category')->load($categoryId);
|
| 26 |
$productArray['product_category_names'] = $category->getName();
|
| 27 |
-
$productArray['product_category_ids'] = $categoryId;
|
| 28 |
-
|
| 29 |
-
|
| 30 |
-
|
| 31 |
return $productArray;
|
| 32 |
}
|
| 33 |
-
|
|
|
| 2 |
|
| 3 |
class Edrone_Base_Block_Product extends Edrone_Base_Block_Base
|
| 4 |
{
|
| 5 |
+
|
| 6 |
/**
|
| 7 |
* @return array
|
| 8 |
*/
|
| 11 |
$productArray = array();
|
| 12 |
$product = Mage::registry('current_product');
|
| 13 |
|
| 14 |
+
$parentIds = Mage::getModel('catalog/product_type_configurable')->getParentIdsByChild($product->getId());
|
| 15 |
+
if(count($parentIds) > 0){
|
| 16 |
+
$product = Mage::getModel("catalog/product")->load( $parentIds[0] );
|
| 17 |
+
}
|
| 18 |
+
|
| 19 |
$productArray['sku'] = $product->getSku();
|
| 20 |
$productArray['id'] = $product->getId();
|
| 21 |
$productArray['title'] = $product->getName();
|
| 22 |
+
$productArray['image'] = (string) Mage::helper('catalog/image')->init($product, 'image')->resize(438);
|
| 23 |
$productArray['product_url'] = $product->getUrl();
|
| 24 |
+
|
| 25 |
+
$categoryIds = $product->getCategoryIds(); //array of product categories
|
| 26 |
+
|
| 27 |
|
| 28 |
|
|
|
|
| 29 |
$categoryId = array_pop($categoryIds);
|
| 30 |
+
if (is_numeric($categoryId)) {
|
| 31 |
$category = Mage::getModel('catalog/category')->load($categoryId);
|
| 32 |
$productArray['product_category_names'] = $category->getName();
|
| 33 |
+
$productArray['product_category_ids'] = $categoryId;
|
| 34 |
+
}
|
| 35 |
+
|
|
|
|
| 36 |
return $productArray;
|
| 37 |
}
|
| 38 |
+
|
| 39 |
+
}
|
app/code/local/Edrone/Base/Model/Observer.php
CHANGED
|
@@ -592,6 +592,7 @@ class Edrone_Base_Model_Observer
|
|
| 592 |
'sku' => $product->getSku(),
|
| 593 |
'title' => $product->getName(),
|
| 594 |
'image' => (string) Mage::helper('catalog/image')->init($product, 'image')->resize(438),
|
|
|
|
| 595 |
))
|
| 596 |
);
|
| 597 |
}
|
|
@@ -607,24 +608,38 @@ class Edrone_Base_Model_Observer
|
|
| 607 |
|
| 608 |
|
| 609 |
foreach ($order->getAllVisibleItems() as $item) {
|
| 610 |
-
$
|
| 611 |
-
$
|
| 612 |
-
|
| 613 |
-
|
| 614 |
-
|
| 615 |
-
|
| 616 |
-
|
| 617 |
-
|
| 618 |
-
|
| 619 |
-
|
| 620 |
-
|
| 621 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 622 |
}
|
| 623 |
-
|
| 624 |
-
|
| 625 |
-
$product = $item->getProduct();
|
| 626 |
-
if ($product)
|
| 627 |
-
$images[] = (string) Mage::helper('catalog/image')->init($product, 'image')->resize(438);
|
| 628 |
}
|
| 629 |
$orderData['order_id'] = $order->getIncrementId();
|
| 630 |
$orderData['sku'] = join('|', $skus);
|
| 592 |
'sku' => $product->getSku(),
|
| 593 |
'title' => $product->getName(),
|
| 594 |
'image' => (string) Mage::helper('catalog/image')->init($product, 'image')->resize(438),
|
| 595 |
+
'id' => $product->getId(),
|
| 596 |
))
|
| 597 |
);
|
| 598 |
}
|
| 608 |
|
| 609 |
|
| 610 |
foreach ($order->getAllVisibleItems() as $item) {
|
| 611 |
+
$parentIds = Mage::getModel('catalog/product_type_configurable')->getParentIdsByChild($item->getProductId());
|
| 612 |
+
if(count($parentIds) > 0){
|
| 613 |
+
$product = Mage::getModel("catalog/product")->load( $parentIds[0] );
|
| 614 |
+
$skus[] = $product->getSku();
|
| 615 |
+
$ids[] = $product->getId();
|
| 616 |
+
$titles[] = $product->getName();
|
| 617 |
+
$categoryIds = $product->getCategoryIds();//array of product categories
|
| 618 |
+
$product_counts[] = (int)$item->getQtyOrdered();
|
| 619 |
+
$categoryId = array_pop($categoryIds);
|
| 620 |
+
if(is_numeric($categoryId)){
|
| 621 |
+
$category = Mage::getModel('catalog/category')->load($categoryId);
|
| 622 |
+
$product_category_names[] = $category->getName();
|
| 623 |
+
$product_category_ids[] = $categoryId;
|
| 624 |
+
|
| 625 |
+
}
|
| 626 |
+
$images[] = ($product) ? (string)Mage::helper('catalog/image')->init($product, 'image')->resize(438) : '';
|
| 627 |
+
}else{
|
| 628 |
+
$product = Mage::getModel("catalog/product")->load( $item->getProductId() );
|
| 629 |
+
$skus[] = $product->getSku();
|
| 630 |
+
$ids[] = $product->getId();
|
| 631 |
+
$titles[] = $product->getName();
|
| 632 |
+
$categoryIds = $product->getCategoryIds();//array of product categories
|
| 633 |
+
$product_counts[] = (int)$item->getQtyOrdered();
|
| 634 |
+
$categoryId = array_pop($categoryIds);
|
| 635 |
+
if(is_numeric($categoryId)){
|
| 636 |
+
$category = Mage::getModel('catalog/category')->load($categoryId);
|
| 637 |
+
$product_category_names[] = $category->getName();
|
| 638 |
+
$product_category_ids[] = $categoryId;
|
| 639 |
+
|
| 640 |
+
}
|
| 641 |
+
$images[] = ($product) ? (string)Mage::helper('catalog/image')->init($product, 'image')->resize(438) : '';
|
| 642 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 643 |
}
|
| 644 |
$orderData['order_id'] = $order->getIncrementId();
|
| 645 |
$orderData['sku'] = join('|', $skus);
|
app/code/local/Edrone/Base/controllers/EdroneproductController.php
CHANGED
|
@@ -7,7 +7,10 @@ class Edrone_Base_EdroneproductController extends Mage_Core_Controller_Front_Act
|
|
| 7 |
public function skuAction(){
|
| 8 |
$sku = Mage::app()->getRequest()->getParam('v');
|
| 9 |
$product = Mage::getModel('catalog/product')->loadByAttribute('sku',$sku);
|
| 10 |
-
|
|
|
|
|
|
|
|
|
|
| 11 |
$productArray['sku'] = $product->getSku();
|
| 12 |
$productArray['id'] = $product->getId();
|
| 13 |
$productArray['title'] = $product->getName();
|
|
@@ -32,7 +35,10 @@ class Edrone_Base_EdroneproductController extends Mage_Core_Controller_Front_Act
|
|
| 32 |
public function idAction(){
|
| 33 |
$id = Mage::app()->getRequest()->getParam('v');
|
| 34 |
$product = Mage::getModel('catalog/product')->load($id);
|
| 35 |
-
|
|
|
|
|
|
|
|
|
|
| 36 |
$productArray['sku'] = $product->getSku();
|
| 37 |
$productArray['id'] = $product->getId();
|
| 38 |
$productArray['title'] = $product->getName();
|
| 7 |
public function skuAction(){
|
| 8 |
$sku = Mage::app()->getRequest()->getParam('v');
|
| 9 |
$product = Mage::getModel('catalog/product')->loadByAttribute('sku',$sku);
|
| 10 |
+
$parentIds = Mage::getModel('catalog/product_type_configurable')->getParentIdsByChild($product->getId());
|
| 11 |
+
if(count($parentIds) > 0){
|
| 12 |
+
$product = Mage::getModel("catalog/product")->load( $parentIds[0] );
|
| 13 |
+
}
|
| 14 |
$productArray['sku'] = $product->getSku();
|
| 15 |
$productArray['id'] = $product->getId();
|
| 16 |
$productArray['title'] = $product->getName();
|
| 35 |
public function idAction(){
|
| 36 |
$id = Mage::app()->getRequest()->getParam('v');
|
| 37 |
$product = Mage::getModel('catalog/product')->load($id);
|
| 38 |
+
$parentIds = Mage::getModel('catalog/product_type_configurable')->getParentIdsByChild($product->getId());
|
| 39 |
+
if(count($parentIds) > 0){
|
| 40 |
+
$product = Mage::getModel("catalog/product")->load( $parentIds[0] );
|
| 41 |
+
}
|
| 42 |
$productArray['sku'] = $product->getSku();
|
| 43 |
$productArray['id'] = $product->getId();
|
| 44 |
$productArray['title'] = $product->getName();
|
app/code/local/Edrone/Base/etc/config.xml
CHANGED
|
@@ -2,7 +2,7 @@
|
|
| 2 |
<config>
|
| 3 |
<modules>
|
| 4 |
<Edrone_Base>
|
| 5 |
-
<version>1.1.
|
| 6 |
</Edrone_Base>
|
| 7 |
</modules>
|
| 8 |
<global>
|
| 2 |
<config>
|
| 3 |
<modules>
|
| 4 |
<Edrone_Base>
|
| 5 |
+
<version>1.1.17</version>
|
| 6 |
</Edrone_Base>
|
| 7 |
</modules>
|
| 8 |
<global>
|
app/design/frontend/base/default/template/edrone/cart_view.phtml
CHANGED
|
@@ -11,7 +11,7 @@ $productData = $this->getProductData();
|
|
| 11 |
(function (srcjs) {
|
| 12 |
window._edrone = window._edrone || {};
|
| 13 |
_edrone.app_id = '<?php echo $helper->getAppId() ?>';
|
| 14 |
-
_edrone.version = '1.1.
|
| 15 |
_edrone.platform = 'Magento';
|
| 16 |
_edrone.platform_version = '<?php echo Mage::getVersion(); ?>';
|
| 17 |
_edrone.trace_url = '<?php echo $helper->getCollectorUrl() ?>';
|
|
@@ -50,7 +50,7 @@ $productData = $this->getProductData();
|
|
| 50 |
(function (srcjs) {
|
| 51 |
window._edrone = window._edrone || {};
|
| 52 |
_edrone.app_id = '<?php echo $helper->getAppId() ?>';
|
| 53 |
-
_edrone.version = '1.1.
|
| 54 |
_edrone.platform = 'Magento';
|
| 55 |
_edrone.platform_version = '<?php echo Mage::getVersion(); ?>';
|
| 56 |
_edrone.trace_url = '<?php echo $helper->getCollectorUrl() ?>';
|
| 11 |
(function (srcjs) {
|
| 12 |
window._edrone = window._edrone || {};
|
| 13 |
_edrone.app_id = '<?php echo $helper->getAppId() ?>';
|
| 14 |
+
_edrone.version = '1.1.17';
|
| 15 |
_edrone.platform = 'Magento';
|
| 16 |
_edrone.platform_version = '<?php echo Mage::getVersion(); ?>';
|
| 17 |
_edrone.trace_url = '<?php echo $helper->getCollectorUrl() ?>';
|
| 50 |
(function (srcjs) {
|
| 51 |
window._edrone = window._edrone || {};
|
| 52 |
_edrone.app_id = '<?php echo $helper->getAppId() ?>';
|
| 53 |
+
_edrone.version = '1.1.17';
|
| 54 |
_edrone.platform = 'Magento';
|
| 55 |
_edrone.platform_version = '<?php echo Mage::getVersion(); ?>';
|
| 56 |
_edrone.trace_url = '<?php echo $helper->getCollectorUrl() ?>';
|
app/design/frontend/base/default/template/edrone/default.phtml
CHANGED
|
@@ -9,7 +9,7 @@ $customerData = $this->getCustomerData();
|
|
| 9 |
(function (srcjs) {
|
| 10 |
window._edrone = window._edrone || {};
|
| 11 |
_edrone.app_id = '<?php echo $helper->getAppId() ?>';
|
| 12 |
-
_edrone.version = '1.1.
|
| 13 |
_edrone.platform = 'Magento';
|
| 14 |
_edrone.platform_version = '<?php echo Mage::getVersion(); ?>';
|
| 15 |
_edrone.trace_url = '<?php echo $helper->getCollectorUrl() ?>';
|
| 9 |
(function (srcjs) {
|
| 10 |
window._edrone = window._edrone || {};
|
| 11 |
_edrone.app_id = '<?php echo $helper->getAppId() ?>';
|
| 12 |
+
_edrone.version = '1.1.17';
|
| 13 |
_edrone.platform = 'Magento';
|
| 14 |
_edrone.platform_version = '<?php echo Mage::getVersion(); ?>';
|
| 15 |
_edrone.trace_url = '<?php echo $helper->getCollectorUrl() ?>';
|
app/design/frontend/base/default/template/edrone/product_view.phtml
CHANGED
|
@@ -10,7 +10,7 @@ $productData = $this->getProductData();
|
|
| 10 |
(function (srcjs) {
|
| 11 |
window._edrone = window._edrone || {};
|
| 12 |
_edrone.app_id = '<?php echo $helper->getAppId() ?>';
|
| 13 |
-
_edrone.version = '1.1.
|
| 14 |
_edrone.platform = 'Magento';
|
| 15 |
_edrone.platform_version = '<?php echo Mage::getVersion(); ?>';
|
| 16 |
_edrone.trace_url = '<?php echo $helper->getCollectorUrl() ?>';
|
| 10 |
(function (srcjs) {
|
| 11 |
window._edrone = window._edrone || {};
|
| 12 |
_edrone.app_id = '<?php echo $helper->getAppId() ?>';
|
| 13 |
+
_edrone.version = '1.1.17';
|
| 14 |
_edrone.platform = 'Magento';
|
| 15 |
_edrone.platform_version = '<?php echo Mage::getVersion(); ?>';
|
| 16 |
_edrone.trace_url = '<?php echo $helper->getCollectorUrl() ?>';
|
app/design/frontend/base/default/template/edrone/success_view.phtml
CHANGED
|
@@ -12,7 +12,7 @@ $this->sendDataToServer($orderData, $customerData);
|
|
| 12 |
(function (srcjs) {
|
| 13 |
window._edrone = window._edrone || {};
|
| 14 |
_edrone.app_id = '<?php echo $helper->getAppId() ?>';
|
| 15 |
-
_edrone.version = '1.1.
|
| 16 |
_edrone.platform = 'Magento';
|
| 17 |
_edrone.platform_version = '<?php echo Mage::getVersion(); ?>';
|
| 18 |
_edrone.trace_url = '<?php echo $helper->getCollectorUrl() ?>';
|
| 12 |
(function (srcjs) {
|
| 13 |
window._edrone = window._edrone || {};
|
| 14 |
_edrone.app_id = '<?php echo $helper->getAppId() ?>';
|
| 15 |
+
_edrone.version = '1.1.17';
|
| 16 |
_edrone.platform = 'Magento';
|
| 17 |
_edrone.platform_version = '<?php echo Mage::getVersion(); ?>';
|
| 18 |
_edrone.trace_url = '<?php echo $helper->getCollectorUrl() ?>';
|
package.xml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
| 1 |
<?xml version="1.0"?>
|
| 2 |
<package>
|
| 3 |
<name>edroneCRM</name>
|
| 4 |
-
<version>1.1.
|
| 5 |
<stability>stable</stability>
|
| 6 |
<license>GPL</license>
|
| 7 |
<channel>community</channel>
|
|
@@ -9,10 +9,10 @@
|
|
| 9 |
<summary>edrone - first CRM for e-commerce Maintain clients & increase customer retention with dynamic e-CRM.</summary>
|
| 10 |
<description>edrone is collecting and analyzing Magento visitors and customers data. The plugin allows processing personal data in the real-time in order to communicate with them through dynamic and personalized e-mail.</description>
|
| 11 |
<notes>edrone magento module - initial public release</notes>
|
| 12 |
-
<authors><author><name>Michał Blak</name><user>MAG002993376</user><email>
|
| 13 |
-
<date>
|
| 14 |
-
<time>
|
| 15 |
-
<contents><target name="magelocal"><dir name="Edrone"><dir name="Base"><dir name="Block"><file name="Base.php" hash="d0e605725b25d2bf1bc2d27af954ab69"/><file name="Cart.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>edroneCRM</name>
|
| 4 |
+
<version>1.1.17</version>
|
| 5 |
<stability>stable</stability>
|
| 6 |
<license>GPL</license>
|
| 7 |
<channel>community</channel>
|
| 9 |
<summary>edrone - first CRM for e-commerce Maintain clients & increase customer retention with dynamic e-CRM.</summary>
|
| 10 |
<description>edrone is collecting and analyzing Magento visitors and customers data. The plugin allows processing personal data in the real-time in order to communicate with them through dynamic and personalized e-mail.</description>
|
| 11 |
<notes>edrone magento module - initial public release</notes>
|
| 12 |
+
<authors><author><name>Michał Blak</name><user>MAG002993376</user><email>admin@edrone.me</email></author></authors>
|
| 13 |
+
<date>2017-01-17</date>
|
| 14 |
+
<time>11:45:01</time>
|
| 15 |
+
<contents><target name="magelocal"><dir name="Edrone"><dir name="Base"><dir name="Block"><file name="Base.php" hash="d0e605725b25d2bf1bc2d27af954ab69"/><file name="Cart.php" hash="f7231eb0745811a3b800fe459023f55b"/><file name="Order.php" hash="756dbf471eb1d12ccd7fc02cad8c438c"/><file name="Product.php" hash="605c872360cc0eea5441ec756d8d3018"/></dir><dir name="Helper"><file name="Config.php" hash="194670e7ef6eb1dc89b8a61a38499264"/><file name="Data.php" hash="a9040014b1b54a1d3cc7ebf401f489c0"/></dir><dir name="Model"><file name="Observer.php" hash="93d3dbdba786c39005cbe5ca2280496b"/></dir><dir name="controllers"><file name="EdroneproductController.php" hash="1039efa581923b65565c1ee656cd9385"/><file name="NewsletterController.php" hash="fa9e82363c785ce94e005a7aad141162"/></dir><dir name="etc"><file name="adminhtml.xml" hash="0e715e76c00295dc4e555411455fedfb"/><file name="config.xml" hash="50853eadb444d755c952e22feb377295"/><file name="system.xml" hash="4651c48710b53d58c4b6af0da08f1d4e"/></dir></dir></dir></target><target name="magedesign"><dir name="frontend"><dir name="base"><dir name="default"><dir name="template"><dir name="edrone"><file name="cart_view.phtml" hash="68aec1da804eb02549cb57b88991d1fe"/><file name="default.phtml" hash="446d8c97ab581367872c5a44384bb0a4"/><file name="product_view.phtml" hash="8e9f22c42a3ab4d41edb630c46a5794f"/><file name="success_view.phtml" hash="b132253167a15e61b20f85be59b0c67c"/></dir></dir><dir name="layout"><file name="edrone.xml" hash="48e37d1c01507337f8dc33eb9e03af34"/></dir></dir></dir></dir></target><target name="mageetc"><dir><dir name="modules"><file name="Edrone_Base.xml" hash="29d3699c3a83fa4fea848a6cb7800872"/></dir></dir></target><target name="magelocale"><dir name="pl_PL"><file name="Edrone.csv" hash="b8aa59d39815f4d92738129cc9fbdf34"/></dir></target></contents>
|
| 16 |
<compatible/>
|
| 17 |
<dependencies><required><php><min>5.1.0</min><max>6.0.0</max></php></required></dependencies>
|
| 18 |
</package>
|
