Version Notes
Banner caching added to load product more faster.
Download this release
Release Info
Developer | mss |
Extension | Mss_Connector |
Version | 1.4.6 |
Comparing to | |
See all releases |
Code changes from version 1.4.5 to 1.4.6
- app/code/local/Mss/Connector/Model/Observer.php +2 -2
- app/code/local/Mss/Connector/controllers/CartController.php +35 -39
- app/code/local/Mss/Connector/controllers/IndexController.php +1 -1
- app/code/local/Mss/Connector/etc/config.xml +1 -1
- app/code/local/Mss/Sociallogin/Helper/Data.php +1 -0
- package.xml +5 -5
app/code/local/Mss/Connector/Model/Observer.php
CHANGED
@@ -19,8 +19,8 @@ class Mss_Connector_Model_Observer
|
|
19 |
|
20 |
$configValue = Mage::getStoreConfig('mss/connector/email');
|
21 |
|
22 |
-
if($configValue =='' AND $adminsession->isLoggedIn())
|
23 |
-
|
24 |
|
25 |
|
26 |
|
19 |
|
20 |
$configValue = Mage::getStoreConfig('mss/connector/email');
|
21 |
|
22 |
+
//if($configValue =='' AND $adminsession->isLoggedIn())
|
23 |
+
//$this->sendemail();
|
24 |
|
25 |
|
26 |
|
app/code/local/Mss/Connector/controllers/CartController.php
CHANGED
@@ -121,42 +121,26 @@ class Mss_Connector_CartController extends Mage_Core_Controller_Front_Action {
|
|
121 |
public function updateCartAction()
|
122 |
{
|
123 |
|
124 |
-
$
|
125 |
|
|
|
126 |
|
127 |
-
|
128 |
-
|
129 |
-
$itemId=(int)$itemId;
|
130 |
-
$qty = (int)$qty;
|
131 |
-
$oldQty = 0;
|
132 |
-
$item = null;
|
133 |
-
|
134 |
try {
|
135 |
-
|
136 |
-
|
137 |
-
|
138 |
-
|
139 |
-
$items = $cartHelper->getCart()->getItems();
|
140 |
-
|
141 |
-
foreach($items as $item):
|
142 |
-
if($item->getProduct()->getId() == $itemId):
|
143 |
-
$itemId = $item->getItemId();
|
144 |
-
$cartHelper->getCart()->removeItem($itemId)->save();
|
145 |
-
break;
|
146 |
-
endif;
|
147 |
-
endforeach;
|
148 |
-
|
149 |
-
endif;
|
150 |
-
|
151 |
|
152 |
-
}
|
153 |
-
|
154 |
-
|
155 |
-
|
156 |
-
|
157 |
-
|
158 |
-
|
159 |
-
|
|
|
160 |
}
|
161 |
public function clearcartAction()
|
162 |
{
|
@@ -228,15 +212,27 @@ class Mss_Connector_CartController extends Mage_Core_Controller_Front_Action {
|
|
228 |
$cart->addProduct ( $product, $params );
|
229 |
endif;
|
230 |
|
231 |
-
|
232 |
$session->setLastAddedProductId ( $product->getId () );
|
233 |
$session->setCartWasUpdated ( true );
|
234 |
$cart->save ();
|
235 |
|
236 |
|
237 |
-
$
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
238 |
$result = '{"result":"success"';
|
239 |
-
$result .= ', "items_qty": "' . $items_qty . '"
|
|
|
240 |
echo $result;
|
241 |
} catch ( Exception $e ) {
|
242 |
|
@@ -1220,11 +1216,10 @@ class Mss_Connector_CartController extends Mage_Core_Controller_Front_Action {
|
|
1220 |
exit;
|
1221 |
endif;
|
1222 |
$product_model = Mage::getModel ( 'catalog/product' );
|
1223 |
-
foreach ($cart->
|
1224 |
-
|
1225 |
-
|
1226 |
|
1227 |
$productName= array();
|
|
|
1228 |
$productName['id'] = $item->getProductId();
|
1229 |
$productName['sku'] = $item->getSku();
|
1230 |
$productName['qty'] = $item->getQty();
|
@@ -1238,7 +1233,8 @@ class Mss_Connector_CartController extends Mage_Core_Controller_Front_Action {
|
|
1238 |
$productName['configurable'] = $this->_getConfigurableOptions( $item );
|
1239 |
|
1240 |
if($product_model->load($item->getProductId())->getData('has_options'))
|
1241 |
-
$productName['custom_option'] = $this->_getCustomOption( $item );
|
|
|
1242 |
|
1243 |
$product['product'][] = $productName;
|
1244 |
|
121 |
public function updateCartAction()
|
122 |
{
|
123 |
|
124 |
+
$id = $this->getRequest ()->getParam('cart_data');
|
125 |
|
126 |
+
$cart = Mage::getSingleton ( 'checkout/cart' );
|
127 |
|
128 |
+
if ($id):
|
|
|
|
|
|
|
|
|
|
|
|
|
129 |
try {
|
130 |
+
$cart->removeItem ( $id )->save ();
|
131 |
+
echo json_encode(array("status"=>"success"));
|
132 |
+
} catch ( Mage_Core_Exception $e ) {
|
133 |
+
echo json_encode ( array ("status" =>"error","message"=>$e->getMessage ()));
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
134 |
|
135 |
+
} catch ( Exception $e ) {
|
136 |
+
echo json_encode ( array ("status" =>"error","message"=>$e->getMessage ()));
|
137 |
+
|
138 |
+
}
|
139 |
+
else:
|
140 |
+
echo json_encode(array ("status" =>"error","message"=>"Param cart_item_id is empty."));
|
141 |
+
exit;
|
142 |
+
endif;
|
143 |
+
|
144 |
}
|
145 |
public function clearcartAction()
|
146 |
{
|
212 |
$cart->addProduct ( $product, $params );
|
213 |
endif;
|
214 |
|
215 |
+
|
216 |
$session->setLastAddedProductId ( $product->getId () );
|
217 |
$session->setCartWasUpdated ( true );
|
218 |
$cart->save ();
|
219 |
|
220 |
|
221 |
+
$cart = Mage::getSingleton ( 'checkout/cart' );
|
222 |
+
$quote = $cart->getQuote ();
|
223 |
+
|
224 |
+
/*get last inserted cart ID*/
|
225 |
+
$items = $quote->getAllVisibleItems ();
|
226 |
+
$cartItemArr='';
|
227 |
+
foreach ( $items as $item )
|
228 |
+
$cartItemArr= $item->getId ();
|
229 |
+
|
230 |
+
|
231 |
+
|
232 |
+
$items_qty = floor ( $quote->getItemsQty () );
|
233 |
$result = '{"result":"success"';
|
234 |
+
$result .= ', "items_qty": "' . $items_qty . '"';
|
235 |
+
$result .= ', "cart_item_id": "' . $cartItemArr . '"}';
|
236 |
echo $result;
|
237 |
} catch ( Exception $e ) {
|
238 |
|
1216 |
exit;
|
1217 |
endif;
|
1218 |
$product_model = Mage::getModel ( 'catalog/product' );
|
1219 |
+
foreach ($cart->getAllVisibleItems() as $item) {
|
|
|
|
|
1220 |
|
1221 |
$productName= array();
|
1222 |
+
$productName['cart_item_id'] = $item->getId();
|
1223 |
$productName['id'] = $item->getProductId();
|
1224 |
$productName['sku'] = $item->getSku();
|
1225 |
$productName['qty'] = $item->getQty();
|
1233 |
$productName['configurable'] = $this->_getConfigurableOptions( $item );
|
1234 |
|
1235 |
if($product_model->load($item->getProductId())->getData('has_options'))
|
1236 |
+
($this->_getCustomOption( $item ))?$productName['custom_option'] = $this->_getCustomOption( $item ):'';
|
1237 |
+
|
1238 |
|
1239 |
$product['product'][] = $productName;
|
1240 |
|
app/code/local/Mss/Connector/controllers/IndexController.php
CHANGED
@@ -224,7 +224,7 @@ class Mss_Connector_IndexController extends Mage_Core_Controller_Front_Action {
|
|
224 |
$collection=$collection->addAttributeToSort ( $order, $dir )/* ->setPage ( $page, $limit ) */;
|
225 |
$pages = $collection->setPageSize ( $limit )->getLastPageNumber ();
|
226 |
$count=$collection->getSize();
|
227 |
-
|
228 |
if(!$count):
|
229 |
|
230 |
echo json_encode(array('status'=>'error','message'=>'No Record Found'));
|
224 |
$collection=$collection->addAttributeToSort ( $order, $dir )/* ->setPage ( $page, $limit ) */;
|
225 |
$pages = $collection->setPageSize ( $limit )->getLastPageNumber ();
|
226 |
$count=$collection->getSize();
|
227 |
+
|
228 |
if(!$count):
|
229 |
|
230 |
echo json_encode(array('status'=>'error','message'=>'No Record Found'));
|
app/code/local/Mss/Connector/etc/config.xml
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
<config>
|
3 |
<modules>
|
4 |
<Mss_Connector>
|
5 |
-
<version>1.4.
|
6 |
</Mss_Connector>
|
7 |
</modules>
|
8 |
<frontend>
|
2 |
<config>
|
3 |
<modules>
|
4 |
<Mss_Connector>
|
5 |
+
<version>1.4.6</version>
|
6 |
</Mss_Connector>
|
7 |
</modules>
|
8 |
<frontend>
|
app/code/local/Mss/Sociallogin/Helper/Data.php
CHANGED
@@ -6,6 +6,7 @@ class Mss_Sociallogin_Helper_Data extends Mage_Core_Helper_Abstract
|
|
6 |
private $f_url = 'https://graph.facebook.com/me?fields=first_name,last_name,gender,email&format=json&access_token=';
|
7 |
private $g_url = 'https://www.googleapis.com/oauth2/v1/userinfo?alt=json&alt=json&access_token=';
|
8 |
private $sociallogin_type;
|
|
|
9 |
|
10 |
public function socialloginRequest($token,$sociallogintype){
|
11 |
|
6 |
private $f_url = 'https://graph.facebook.com/me?fields=first_name,last_name,gender,email&format=json&access_token=';
|
7 |
private $g_url = 'https://www.googleapis.com/oauth2/v1/userinfo?alt=json&alt=json&access_token=';
|
8 |
private $sociallogin_type;
|
9 |
+
|
10 |
|
11 |
public function socialloginRequest($token,$sociallogintype){
|
12 |
|
package.xml
CHANGED
@@ -1,18 +1,18 @@
|
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>Mss_Connector</name>
|
4 |
-
<version>1.4.
|
5 |
<stability>stable</stability>
|
6 |
<license>OSL v1.0</license>
|
7 |
<channel>community</channel>
|
8 |
<extends/>
|
9 |
<summary>Mobile app for Android and Iphone</summary>
|
10 |
<description>Mobile app for Android and Iphone</description>
|
11 |
-
<notes>
|
12 |
<authors><author><name>mss</name><user>mss</user><email>mss.yogendra@gmail.com</email></author></authors>
|
13 |
-
<date>2016-
|
14 |
-
<time>13:
|
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="5c691c3ae014305937e38418706c1c66"/></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="d06ad8e6fd2c82a6c483e0a7246f985e"/></dir><file name="BannerController.php" hash="c3f2cc84c3199eeb47b647b0f4e453d7"/></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="141759dea4d79d818c52231fe75f0686"/></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="
|
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>1.4.6</version>
|
5 |
<stability>stable</stability>
|
6 |
<license>OSL v1.0</license>
|
7 |
<channel>community</channel>
|
8 |
<extends/>
|
9 |
<summary>Mobile app for Android and Iphone</summary>
|
10 |
<description>Mobile app for Android and Iphone</description>
|
11 |
+
<notes>Banner caching added to load product more faster.</notes>
|
12 |
<authors><author><name>mss</name><user>mss</user><email>mss.yogendra@gmail.com</email></author></authors>
|
13 |
+
<date>2016-04-11</date>
|
14 |
+
<time>13:44:20</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="5c691c3ae014305937e38418706c1c66"/></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="d06ad8e6fd2c82a6c483e0a7246f985e"/></dir><file name="BannerController.php" hash="c3f2cc84c3199eeb47b647b0f4e453d7"/></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="141759dea4d79d818c52231fe75f0686"/></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="76ce9764a22c476e8de63923e30ece15"/></dir><dir name="controllers"><file name="CartController.php" hash="081c18a343c5444214717c26aacefe8c"/><file name="CreditController.php" hash="fb099f5c645b2008bf058b8e22f7b1ec"/><file name="CustomerController.php" hash="46351cd896aa3c983b681ba58312c7d8"/><file name="FeedbackController.php" hash="89517e40acba9d69cd15ff5ea304da79"/><file name="IndexController.php" hash="5695998830cc9fa2b4a8dbada39a8490"/><file name="ItemController.php" hash="698151aa101aec7e80e3f050ce51dc85"/><file name="ItemsController.php" hash="88e5703407cc970c98698419915393f2"/><file name="MenuController.php" hash="63a3ae898fa75e4755d06bd2ddb592e1"/><file name="ProductsController.php" hash="f693df70aa9071bd46ada0af96c61f48"/><file name="SearchController.php" hash="5d1d8975f7a3351d5833c6ad08ecf52b"/><file name="StaticpagesController.php" hash="2c593c6e2328512e2ee966119e18ba44"/><file name="StoreController.php" hash="86b038731080c68ae1e567958b36895c"/><file name="StoreinfoController.php" hash="f37535c137f93dbb8d2eaab9f2f67865"/><file name="TokenController.php" hash="5df87c80c3a9a4832d0ce3580d65dff8"/><file name="WishlistController.php" hash="9a72d73131b3ff380b53ca54fc8361f8"/><file name="_new_ProductsController.php" hash="08523bd31a97f2018cb08f31dfce005d"/></dir><dir name="etc"><file name="adminhtml.xml" hash="77dc75e2c5e73755764a79e08cc7c668"/><file name="config.xml" hash="2947e27875c1c90aa9ba00d771a7d655"/><file name="system.xml" hash="40b6555fa986d797ad206d674204e477"/></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="4db5576f750fdf7b1b8b441ddaad9c8b"/></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="db5ffd63f6cbb9f3320fde4829fcad35"/></dir><dir name="Helper"><file name="Data.php" hash="7800e0e58258b78d0f23a7fec482d120"/></dir><dir name="controllers"><file name="IndexController.php" hash="639ed0868e2a6b1bdbf6444f87565565"/></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="cad971167c1b59a1fdbd967132c61899"/></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="a1c7c7ff8ba587ddafc61cd0fd798c7c"/></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="33595a283b6d499a1cd9a3b5a74e12e7"/></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"/></dir></dir><dir name="layout"><file name="bannerslider.xml" hash="a5a76f30bbedca5804646d53e783cdac"/><file name="pushnotification.xml" hash="f7fd974e63c4c7eb5ffac7b059470946"/><file name="connector.xml" hash="97cea6186b75948e6ed0d71da7b48710"/></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>
|
16 |
<compatible/>
|
17 |
<dependencies><required><php><min>5.3.0</min><max>7.0.5</max></php></required></dependencies>
|
18 |
</package>
|