Version Notes
Fixes:-
1) Shipping issue fix.
2) Layered navigation issue fix.
3) Pushnotification issue fix.
Features:-
1) Option to set mutliple CMS pages.
2) Option to set banner for catagory also.
3) Implement shortBy functionality.
4) Option to delete applied coupon.
Download this release
Release Info
Developer | mss |
Extension | Mss_Connector |
Version | 2.6.1 |
Comparing to | |
See all releases |
Code changes from version 2.6.0 to 2.6.1
app/code/local/Mss/Connector/controllers/CartController.php
CHANGED
@@ -530,13 +530,15 @@ class Mss_Connector_CartController extends Mage_Core_Controller_Front_Action {
|
|
530 |
$addressId = $this->getRequest()->getParam('address_id');
|
531 |
$countryId = $this->getRequest()->getParam('country_id');
|
532 |
$setRegionId = $this->getRequest()->getParam('region_id');
|
|
|
533 |
$shipping_method = $this->getRequest()->getParam('shippingmethod');
|
534 |
if (isset($addressId)){
|
535 |
$customer = Mage::getModel('customer/address')
|
536 |
->load($addressId);
|
537 |
-
$countryId
|
538 |
$setRegionId = $customer['region_id'];
|
539 |
-
$regionName
|
|
|
540 |
$quote=Mage::getSingleton ( 'checkout/cart' )->getQuote();
|
541 |
|
542 |
$shippingCheck = $quote->getShippingAddress()->getData();
|
@@ -545,11 +547,13 @@ class Mss_Connector_CartController extends Mage_Core_Controller_Front_Action {
|
|
545 |
$quote->getShippingAddress()
|
546 |
->setCountryId($countryId)
|
547 |
->setRegionId($setRegionId)
|
|
|
548 |
->setCollectShippingRates(true);
|
549 |
} else {
|
550 |
$quote->getShippingAddress()
|
551 |
->setCountryId($countryId)
|
552 |
->setRegion($regionName)
|
|
|
553 |
->setCollectShippingRates(true);
|
554 |
}
|
555 |
$quote->save();
|
@@ -569,10 +573,12 @@ class Mss_Connector_CartController extends Mage_Core_Controller_Front_Action {
|
|
569 |
$quote->getShippingAddress()
|
570 |
->setCountryId($countryId)
|
571 |
->setRegionId($setRegionId)
|
|
|
572 |
->setCollectShippingRates(true);
|
573 |
} else {
|
574 |
$quote->getShippingAddress()
|
575 |
->setCountryId($countryId)
|
|
|
576 |
->setCollectShippingRates(true);
|
577 |
}
|
578 |
$quote->save();
|
@@ -594,6 +600,7 @@ class Mss_Connector_CartController extends Mage_Core_Controller_Front_Action {
|
|
594 |
$cart->save ();
|
595 |
}
|
596 |
$cart->getQuote ()->collectTotals ()->save ();
|
|
|
597 |
$cartInfo = array ();
|
598 |
$cartInfo ['is_virtual'] = Mage::helper ( 'checkout/cart' )->getIsVirtualQuote ();
|
599 |
$cartInfo ['cart_items'] = $this->_getCartItems ();
|
@@ -603,6 +610,16 @@ class Mss_Connector_CartController extends Mage_Core_Controller_Front_Action {
|
|
603 |
$cartInfo ['sub_total'] = number_format ( $cart->getQuote()->getSubtotal(), 2, '.', '' );
|
604 |
$cartInfo ['allow_guest_checkout'] = Mage::helper ( 'checkout' )->isAllowedGuestCheckout ( $cart->getQuote () );
|
605 |
$cartInfo ['shipping_amount'] = $shipping_amount;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
606 |
|
607 |
return $cartInfo;
|
608 |
}
|
@@ -1394,10 +1411,13 @@ class Mss_Connector_CartController extends Mage_Core_Controller_Front_Action {
|
|
1394 |
try{
|
1395 |
$cart = Mage::getModel('sales/quote') ->loadByCustomer($customer);
|
1396 |
|
1397 |
-
|
1398 |
-
|
1399 |
-
|
1400 |
-
|
|
|
|
|
|
|
1401 |
$product_model = Mage::getModel ( 'catalog/product' );
|
1402 |
|
1403 |
$baseCurrency = Mage::app ()->getStore ()->getBaseCurrency ()->getCode ();
|
530 |
$addressId = $this->getRequest()->getParam('address_id');
|
531 |
$countryId = $this->getRequest()->getParam('country_id');
|
532 |
$setRegionId = $this->getRequest()->getParam('region_id');
|
533 |
+
$zipcode = $this->getRequest()->getParam('zipcode');
|
534 |
$shipping_method = $this->getRequest()->getParam('shippingmethod');
|
535 |
if (isset($addressId)){
|
536 |
$customer = Mage::getModel('customer/address')
|
537 |
->load($addressId);
|
538 |
+
$countryId = $customer['country_id'];
|
539 |
$setRegionId = $customer['region_id'];
|
540 |
+
$regionName = $customer['region'];
|
541 |
+
$zipcode = $customer['zipcode'];
|
542 |
$quote=Mage::getSingleton ( 'checkout/cart' )->getQuote();
|
543 |
|
544 |
$shippingCheck = $quote->getShippingAddress()->getData();
|
547 |
$quote->getShippingAddress()
|
548 |
->setCountryId($countryId)
|
549 |
->setRegionId($setRegionId)
|
550 |
+
->setPostcode($zipcode)
|
551 |
->setCollectShippingRates(true);
|
552 |
} else {
|
553 |
$quote->getShippingAddress()
|
554 |
->setCountryId($countryId)
|
555 |
->setRegion($regionName)
|
556 |
+
->setPostcode($zipcode)
|
557 |
->setCollectShippingRates(true);
|
558 |
}
|
559 |
$quote->save();
|
573 |
$quote->getShippingAddress()
|
574 |
->setCountryId($countryId)
|
575 |
->setRegionId($setRegionId)
|
576 |
+
->setPostcode($zipcode)
|
577 |
->setCollectShippingRates(true);
|
578 |
} else {
|
579 |
$quote->getShippingAddress()
|
580 |
->setCountryId($countryId)
|
581 |
+
->setPostcode($zipcode)
|
582 |
->setCollectShippingRates(true);
|
583 |
}
|
584 |
$quote->save();
|
600 |
$cart->save ();
|
601 |
}
|
602 |
$cart->getQuote ()->collectTotals ()->save ();
|
603 |
+
$totals = Mage::getSingleton ( 'checkout/session' )->getQuote ()->getTotals ();
|
604 |
$cartInfo = array ();
|
605 |
$cartInfo ['is_virtual'] = Mage::helper ( 'checkout/cart' )->getIsVirtualQuote ();
|
606 |
$cartInfo ['cart_items'] = $this->_getCartItems ();
|
610 |
$cartInfo ['sub_total'] = number_format ( $cart->getQuote()->getSubtotal(), 2, '.', '' );
|
611 |
$cartInfo ['allow_guest_checkout'] = Mage::helper ( 'checkout' )->isAllowedGuestCheckout ( $cart->getQuote () );
|
612 |
$cartInfo ['shipping_amount'] = $shipping_amount;
|
613 |
+
if (isset ( $totals ['discount'] )) { // $totals['discount']->getValue()) {
|
614 |
+
$cartInfo['discount'] = number_format ( $totals ['discount']->getValue (), 2, '.', '' ); // Discount value if applied
|
615 |
+
} else {
|
616 |
+
$cartInfo['discount'] = '0.00';
|
617 |
+
}
|
618 |
+
if (isset ( $totals ['tax'] )) { // $totals['tax']->getValue()) {
|
619 |
+
$cartInfo['tax'] = number_format ( $totals ['tax']->getValue (), 2, '.', '' ); // Tax value if present
|
620 |
+
} else {
|
621 |
+
$cartInfo['tax'] = '0.00';
|
622 |
+
}
|
623 |
|
624 |
return $cartInfo;
|
625 |
}
|
1411 |
try{
|
1412 |
$cart = Mage::getModel('sales/quote') ->loadByCustomer($customer);
|
1413 |
|
1414 |
+
if(!count($cart->getAllItems())):
|
1415 |
+
$cart = Mage::getModel('checkout/cart')->getQuote();
|
1416 |
+
if(!count($cart->getAllItems())):
|
1417 |
+
echo json_encode(array('status'=>'success','message'=>$product));
|
1418 |
+
exit;
|
1419 |
+
endif;
|
1420 |
+
endif;
|
1421 |
$product_model = Mage::getModel ( 'catalog/product' );
|
1422 |
|
1423 |
$baseCurrency = Mage::app ()->getStore ()->getBaseCurrency ()->getCode ();
|
app/code/local/Mss/Connector/controllers/IndexController.php
CHANGED
@@ -210,9 +210,9 @@ class Mss_Connector_IndexController extends Mage_Core_Controller_Front_Action {
|
|
210 |
if($key == 'price'):
|
211 |
|
212 |
$price = explode(',',$filter[0]);
|
213 |
-
$price_filter = array('
|
214 |
-
|
215 |
-
$collection = $collection->addAttributeToFilter ( 'price', array ('lt' => $price['1']) )
|
216 |
else:
|
217 |
$collection = $collection->addAttributeToFilter ( $key, array('in' => $filter) );
|
218 |
endif;
|
@@ -513,7 +513,7 @@ class Mss_Connector_IndexController extends Mage_Core_Controller_Front_Action {
|
|
513 |
|
514 |
if(sizeof($price_filter)):
|
515 |
|
516 |
-
if($product->getFinalPrice() > $price_filter['0'] AND $product->getFinalPrice()
|
517 |
|
518 |
$productlist [] = array (
|
519 |
'entity_id' => $product->getId (),
|
210 |
if($key == 'price'):
|
211 |
|
212 |
$price = explode(',',$filter[0]);
|
213 |
+
$price_filter = array('0'=>$price['0'],'1'=>$price['1']);
|
214 |
+
$collection = $collection->addAttributeToFilter ( 'price', array ('gt' => $price['0'] ) );
|
215 |
+
$collection = $collection->addAttributeToFilter ( 'price', array ('lt' => $price['1']) );
|
216 |
else:
|
217 |
$collection = $collection->addAttributeToFilter ( $key, array('in' => $filter) );
|
218 |
endif;
|
513 |
|
514 |
if(sizeof($price_filter)):
|
515 |
|
516 |
+
if($product->getFinalPrice() > $price_filter['0'] AND $product->getFinalPrice() < $price_filter['1']):
|
517 |
|
518 |
$productlist [] = array (
|
519 |
'entity_id' => $product->getId (),
|
app/code/local/Mss/Connector/etc/config.xml
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
<config>
|
3 |
<modules>
|
4 |
<Mss_Connector>
|
5 |
-
<version>2.6.
|
6 |
</Mss_Connector>
|
7 |
</modules>
|
8 |
<frontend>
|
2 |
<config>
|
3 |
<modules>
|
4 |
<Mss_Connector>
|
5 |
+
<version>2.6.1</version>
|
6 |
</Mss_Connector>
|
7 |
</modules>
|
8 |
<frontend>
|
package.xml
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>Mss_Connector</name>
|
4 |
-
<version>2.6.
|
5 |
<stability>stable</stability>
|
6 |
<license>OSL v1.0</license>
|
7 |
<channel>community</channel>
|
@@ -19,9 +19,9 @@ Features:-
|
|
19 |
3) Implement shortBy functionality.
|
20 |
4) Option to delete applied coupon.</notes>
|
21 |
<authors><author><name>mss</name><user>mss</user><email>mss.yogendra@gmail.com</email></author></authors>
|
22 |
-
<date>2017-01-
|
23 |
-
<time>
|
24 |
-
<contents><target name="magelocal"><dir name="Mss"><dir name="Bannersliderapp"><dir name="Block"><dir name="Adminhtml"><dir name="Bannersliderapp"><dir name="Edit"><file name="Form.php" hash="c55bbba3b00c98a068bec9b9b12c4a40"/><dir name="Tab"><file name="Form.php" hash="337f9ecaa1f491cd779ed018f65316ae"/></dir><file name="Tabs.php" hash="ec6e540fda2b39feedc0a4c1192a3c7d"/></dir><file name="Edit.php" hash="010f4999a1ddc53e411562d83c3ad3f8"/><file name="Grid.php" hash="28c70476bdd3d44aa2cac9dc9f423ebb"/><dir name="Helper"><file name="Image.php" hash="d2ce47b0d7ab6ef5c31d0989fcc05f78"/></dir></dir><file name="Grid.php" hash="9c86bf7a2daa24e9416ff254396b2aa0"/><dir name="Renderer"><file name="Image.php" hash="0a9b4358a9409e7933e96c1eb157717e"/></dir></dir></dir><dir name="Helper"><file name="Data.php" hash="db48c09c76d16ad7c094d32224329276"/></dir><dir name="Model"><file name="Bannersliderapp.php" hash="61f481ac93c5c494889d5ea7cb306bc0"/><dir name="Mysql4"><dir name="Bannersliderapp"><file name="Collection.php" hash="5d6543bbf3dee4d17b73244dbd0f843f"/></dir><file name="Bannersliderapp.php" hash="e000805a295e083e81f7163df7b92197"/></dir><file name="Observer.php" hash="65004e950e366b77a2cd1cb177d0f1ab"/></dir><dir name="controllers"><dir name="Adminhtml"><file name="BannersliderappController.php" hash="6f9f94fd96e35225ed3bd8fdf7a3dc22"/></dir><file name="BannerController.php" hash="36bd22c81ff14c2f6d04c40916020b6d"/></dir><dir name="etc"><file name="adminhtml.xml" hash="dab3fdde55b6523faadc3fad70702c28"/><file name="config.xml" hash="17c28ecccbd87140087d4e870c3a7f97"/></dir><dir name="sql"><dir name="bannersliderapp_setup"><file name="mysql4-install-0.1.1.php" hash="bbc6f32eb101c83a52cdef67c8b6a806"/><file name="mysql4-upgrade-0.1.1-0.1.2.php" hash="6df036187a26ac6dcea3473d8065f59a"/></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="2b2b667df63e7cd32c974d21620c6a91"/></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="e6dacba5f08eaa4d02434ed50509ee8e"/></dir><dir name="controllers"><dir name="Adminhtml"><file name="SupportController.php" hash="0f5afef5730673f0145cd5c8bbf1ed77"/></dir><file name="CartController.php" hash="
|
25 |
<compatible/>
|
26 |
<dependencies><required><php><min>5.3.0</min><max>7.0.5</max></php></required></dependencies>
|
27 |
</package>
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>Mss_Connector</name>
|
4 |
+
<version>2.6.1</version>
|
5 |
<stability>stable</stability>
|
6 |
<license>OSL v1.0</license>
|
7 |
<channel>community</channel>
|
19 |
3) Implement shortBy functionality.
|
20 |
4) Option to delete applied coupon.</notes>
|
21 |
<authors><author><name>mss</name><user>mss</user><email>mss.yogendra@gmail.com</email></author></authors>
|
22 |
+
<date>2017-01-24</date>
|
23 |
+
<time>12:23:10</time>
|
24 |
+
<contents><target name="magelocal"><dir name="Mss"><dir name="Bannersliderapp"><dir name="Block"><dir name="Adminhtml"><dir name="Bannersliderapp"><dir name="Edit"><file name="Form.php" hash="c55bbba3b00c98a068bec9b9b12c4a40"/><dir name="Tab"><file name="Form.php" hash="337f9ecaa1f491cd779ed018f65316ae"/></dir><file name="Tabs.php" hash="ec6e540fda2b39feedc0a4c1192a3c7d"/></dir><file name="Edit.php" hash="010f4999a1ddc53e411562d83c3ad3f8"/><file name="Grid.php" hash="28c70476bdd3d44aa2cac9dc9f423ebb"/><dir name="Helper"><file name="Image.php" hash="d2ce47b0d7ab6ef5c31d0989fcc05f78"/></dir></dir><file name="Grid.php" hash="9c86bf7a2daa24e9416ff254396b2aa0"/><dir name="Renderer"><file name="Image.php" hash="0a9b4358a9409e7933e96c1eb157717e"/></dir></dir></dir><dir name="Helper"><file name="Data.php" hash="db48c09c76d16ad7c094d32224329276"/></dir><dir name="Model"><file name="Bannersliderapp.php" hash="61f481ac93c5c494889d5ea7cb306bc0"/><dir name="Mysql4"><dir name="Bannersliderapp"><file name="Collection.php" hash="5d6543bbf3dee4d17b73244dbd0f843f"/></dir><file name="Bannersliderapp.php" hash="e000805a295e083e81f7163df7b92197"/></dir><file name="Observer.php" hash="65004e950e366b77a2cd1cb177d0f1ab"/></dir><dir name="controllers"><dir name="Adminhtml"><file name="BannersliderappController.php" hash="6f9f94fd96e35225ed3bd8fdf7a3dc22"/></dir><file name="BannerController.php" hash="36bd22c81ff14c2f6d04c40916020b6d"/></dir><dir name="etc"><file name="adminhtml.xml" hash="dab3fdde55b6523faadc3fad70702c28"/><file name="config.xml" hash="17c28ecccbd87140087d4e870c3a7f97"/></dir><dir name="sql"><dir name="bannersliderapp_setup"><file name="mysql4-install-0.1.1.php" hash="bbc6f32eb101c83a52cdef67c8b6a806"/><file name="mysql4-upgrade-0.1.1-0.1.2.php" hash="6df036187a26ac6dcea3473d8065f59a"/></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="2b2b667df63e7cd32c974d21620c6a91"/></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="e6dacba5f08eaa4d02434ed50509ee8e"/></dir><dir name="controllers"><dir name="Adminhtml"><file name="SupportController.php" hash="0f5afef5730673f0145cd5c8bbf1ed77"/></dir><file name="CartController.php" hash="cf79b0f8c52ee68b5eb0de401a2ca74a"/><file name="CreditController.php" hash="a489dd0ed95914fb2b58491410f6f92f"/><file name="CustomerController.php" hash="1fb524e6c082786bb1210d5b646654e6"/><file name="FeedbackController.php" hash="2b9e092984c0c64397cd25fe1d2266d5"/><file name="IndexController.php" hash="6505b388da82853149fc5682e173d583"/><file name="ItemsController.php" hash="03aeb9fceec3173e1aa678e03582b226"/><file name="ProductsController.php" hash="e864cd359f8079384e9f1ad325b85a77"/><file name="StaticpagesController.php" hash="f49d4cef2d1baf269e5ac19994619037"/><file name="StoreinfoController.php" hash="c7600983d865fe529e020344e485cbed"/><file name="TokenController.php" hash="30e09062bb6f613c2ec3167da27cd571"/><file name="WishlistController.php" hash="082445ed48fde71569305aba02177337"/></dir><dir name="etc"><file name="adminhtml.xml" hash="dace418dcc6eee76831169b5c70176e7"/><file name="config.xml" hash="331d0b07df67c4b69f2e1f83d54de22c"/><file name="system.xml" hash="b5782f2d21d04ba07cf411563fcf98a1"/></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="14098d1e6290ba8f8439c564335e1a2a"/></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="46ec9fef2d62fa7c4e67f937f40685af"/></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="d84a29d3aa0fb6655300cab13a70f0cd"/></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="daafb506dc1ed6bd54d8f8049e2e9595"/><file name="system.xml" hash="23a622dec8250a355bbaed9e83f1f82d"/></dir><dir name="sql"><dir name="pushnotification_setup"><file name="mysql4-install-0.1.0.php" hash="571b53fa424e343507d73689708b0596"/><file name="mysql4-upgrade-0.1.0-0.1.1.php" hash="e5939f147e797d9d8b7a9643f8cda7d8"/></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="landing.phtml" hash="6efda7cca18e7bc62ce40c9f25a9510b"/><file name="notification.phtml" hash="164e5f9e7dcfc5c2d2451f0e77776d77"/><file name="support.phtml" hash="7c799c058795eafbf96239e16e3326ca"/></dir></dir><dir name="layout"><file name="bannersliderapp.xml" hash="f18034448b9f74646c870a23bfc0b6fd"/><file name="pushnotification.xml" hash="f7fd974e63c4c7eb5ffac7b059470946"/><file name="connector.xml" hash="003166428e55a52301f71826a37f8283"/></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="5f9e2dfb00a991707e31a00b39cfebef"/><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_Bannersliderapp.xml" hash="de3e077185056246492c3a2ff01a531f"/><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="magento_logo.png" hash="d1800a3c95de49500f158bfb6ca9c70c"/><file name="magentomobileshop_loader.gif" hash="453272c9cacd32efe6465961ea8a61dd"/></dir></dir></dir></dir></dir></dir></target></contents>
|
25 |
<compatible/>
|
26 |
<dependencies><required><php><min>5.3.0</min><max>7.0.5</max></php></required></dependencies>
|
27 |
</package>
|