Version Notes
We have updated advanced functionality for Shipping
Download this release
Release Info
Developer | mss |
Extension | Mss_Connector |
Version | 2.4.4 |
Comparing to | |
See all releases |
Code changes from version 2.4.3 to 2.4.4
- app/code/local/Mss/Connector/Model/Observer.php +0 -1
- app/code/local/Mss/Connector/controllers/CustomerController.php +10 -19
- app/code/local/Mss/Connector/controllers/StoreinfoController.php +3 -1
- app/code/local/Mss/Connector/controllers/TokenController.php +73 -4
- app/code/local/Mss/Pushnotification/Helper/Data.php +3 -0
- app/design/adminhtml/default/default/template/connector/landing.phtml +3 -1
- package.xml +4 -4
app/code/local/Mss/Connector/Model/Observer.php
CHANGED
@@ -74,7 +74,6 @@ class Mss_Connector_Model_Observer
|
|
74 |
//Mage::getSingleton('core/session')->addSuccess('Your extension is activated.');
|
75 |
Mage::app()->getResponse()->setRedirect(Mage::helper("adminhtml")->getUrl("connector/adminhtml_support/landing/", array('_query'=>'test=1')))->sendResponse();
|
76 |
exit;
|
77 |
-
|
78 |
}
|
79 |
if(!Mage::getStoreConfig(self::XML_SECURE_KEY) AND $adminsession->isLoggedIn()):
|
80 |
$static_url = 'https://www.magentomobileshop.com/user/mobile-connect?key_info=';
|
74 |
//Mage::getSingleton('core/session')->addSuccess('Your extension is activated.');
|
75 |
Mage::app()->getResponse()->setRedirect(Mage::helper("adminhtml")->getUrl("connector/adminhtml_support/landing/", array('_query'=>'test=1')))->sendResponse();
|
76 |
exit;
|
|
|
77 |
}
|
78 |
if(!Mage::getStoreConfig(self::XML_SECURE_KEY) AND $adminsession->isLoggedIn()):
|
79 |
$static_url = 'https://www.magentomobileshop.com/user/mobile-connect?key_info=';
|
app/code/local/Mss/Connector/controllers/CustomerController.php
CHANGED
@@ -138,7 +138,6 @@ class Mss_Connector_CustomerController extends Mage_Core_Controller_Front_Action
|
|
138 |
if( (null==Mage::app ()->getRequest ()->getParam ('password') ) || (null==Mage::app ()->getRequest ()->getParam ('email')) ){
|
139 |
echo json_encode ( array (
|
140 |
false,
|
141 |
-
'0x1100',
|
142 |
$this->__('empty password or email.')
|
143 |
) );
|
144 |
return ;
|
@@ -170,18 +169,14 @@ class Mss_Connector_CustomerController extends Mage_Core_Controller_Front_Action
|
|
170 |
$address->save ();
|
171 |
$session->unsGuestAddress ();
|
172 |
}
|
173 |
-
|
174 |
-
|
175 |
-
|
176 |
-
|
177 |
-
array ()
|
178 |
-
) );
|
179 |
} else {
|
180 |
-
|
181 |
-
|
182 |
-
|
183 |
-
$errors
|
184 |
-
) );
|
185 |
}
|
186 |
} catch ( Mage_Core_Exception $e ) {
|
187 |
if ($e->getCode () === Mage_Customer_Model_Customer::EXCEPTION_EMAIL_EXISTS) {
|
@@ -191,13 +186,9 @@ class Mss_Connector_CustomerController extends Mage_Core_Controller_Front_Action
|
|
191 |
} else {
|
192 |
$message = $this->__($e->getMessage ());
|
193 |
}
|
194 |
-
|
195 |
-
|
196 |
-
|
197 |
-
array (
|
198 |
-
$message
|
199 |
-
)
|
200 |
-
) );
|
201 |
} catch ( Exception $e ) {
|
202 |
echo json_encode ( array (
|
203 |
false,
|
138 |
if( (null==Mage::app ()->getRequest ()->getParam ('password') ) || (null==Mage::app ()->getRequest ()->getParam ('email')) ){
|
139 |
echo json_encode ( array (
|
140 |
false,
|
|
|
141 |
$this->__('empty password or email.')
|
142 |
) );
|
143 |
return ;
|
169 |
$address->save ();
|
170 |
$session->unsGuestAddress ();
|
171 |
}
|
172 |
+
$array = array();
|
173 |
+
$array['status']= true;
|
174 |
+
$array['message']= 'Your account is activated successfully';
|
175 |
+
echo json_encode ($array);
|
|
|
|
|
176 |
} else {
|
177 |
+
$array['status']= false;
|
178 |
+
$array['message']= $errors ;
|
179 |
+
echo json_encode ($array);
|
|
|
|
|
180 |
}
|
181 |
} catch ( Mage_Core_Exception $e ) {
|
182 |
if ($e->getCode () === Mage_Customer_Model_Customer::EXCEPTION_EMAIL_EXISTS) {
|
186 |
} else {
|
187 |
$message = $this->__($e->getMessage ());
|
188 |
}
|
189 |
+
$array['status']= false;
|
190 |
+
$array['message']= $message ;
|
191 |
+
echo json_encode ($array);
|
|
|
|
|
|
|
|
|
192 |
} catch ( Exception $e ) {
|
193 |
echo json_encode ( array (
|
194 |
false,
|
app/code/local/Mss/Connector/controllers/StoreinfoController.php
CHANGED
@@ -54,7 +54,8 @@ class Mss_Connector_StoreinfoController extends Mage_Core_Controller_Front_Actio
|
|
54 |
if(Mage::getStoreConfig(self::MSS_STORE_PHONENO)):
|
55 |
$result['store_phoneno'] = Mage::getStoreConfig(self::MSS_STORE_PHONENO);
|
56 |
else:
|
57 |
-
|
|
|
58 |
endif;
|
59 |
|
60 |
if(Mage::getStoreConfig(self::MSS_STORE_EMAIL)):
|
@@ -206,6 +207,7 @@ class Mss_Connector_StoreinfoController extends Mage_Core_Controller_Front_Actio
|
|
206 |
|
207 |
$storedetails['store_id'] = $store_Id;
|
208 |
$storedetails['view_id'] = $view_Id;
|
|
|
209 |
$storedata[] = $storedetails;
|
210 |
endforeach;
|
211 |
echo json_encode($storedata);
|
54 |
if(Mage::getStoreConfig(self::MSS_STORE_PHONENO)):
|
55 |
$result['store_phoneno'] = Mage::getStoreConfig(self::MSS_STORE_PHONENO);
|
56 |
else:
|
57 |
+
//$result['store_phoneno'] = $store_phone;
|
58 |
+
$result['store_phoneno'] = str_replace('-', '', $store_phone);
|
59 |
endif;
|
60 |
|
61 |
if(Mage::getStoreConfig(self::MSS_STORE_EMAIL)):
|
207 |
|
208 |
$storedetails['store_id'] = $store_Id;
|
209 |
$storedetails['view_id'] = $view_Id;
|
210 |
+
$storedetails['store_code'] = Mage::app()->getStore($store_Id)->getCode();
|
211 |
$storedata[] = $storedetails;
|
212 |
endforeach;
|
213 |
echo json_encode($storedata);
|
app/code/local/Mss/Connector/controllers/TokenController.php
CHANGED
@@ -5,7 +5,6 @@ class Mss_Connector_TokenController extends Mage_Core_Controller_Front_Action {
|
|
5 |
const XML_SECURE_KEY = 'magentomobileshop/secure/key';
|
6 |
const XML_SECURE_TOKEN = 'magentomobileshop/secure/token';
|
7 |
const XML_SECURE_TOKEN_EXP = 'secure/token/exp';
|
8 |
-
|
9 |
const XML_SETTING_ACTIVE = 'wishlist/general/active';
|
10 |
const XML_SETTING_GUEST_REVIEW = 'catalog/review/allow_guest';
|
11 |
const XML_SETTING_GUEST_CHECKOUT = 'checkout/options/guest_checkout';
|
@@ -248,11 +247,81 @@ class Mss_Connector_TokenController extends Mage_Core_Controller_Front_Action {
|
|
248 |
|
249 |
foreach($results as $rating)
|
250 |
$ratingdata[] = $rating['rating_code'] ;
|
251 |
-
|
252 |
-
|
253 |
$config_data['rating_type'] = $ratingdata;
|
254 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
255 |
|
|
|
256 |
|
257 |
}
|
258 |
}
|
5 |
const XML_SECURE_KEY = 'magentomobileshop/secure/key';
|
6 |
const XML_SECURE_TOKEN = 'magentomobileshop/secure/token';
|
7 |
const XML_SECURE_TOKEN_EXP = 'secure/token/exp';
|
|
|
8 |
const XML_SETTING_ACTIVE = 'wishlist/general/active';
|
9 |
const XML_SETTING_GUEST_REVIEW = 'catalog/review/allow_guest';
|
10 |
const XML_SETTING_GUEST_CHECKOUT = 'checkout/options/guest_checkout';
|
247 |
|
248 |
foreach($results as $rating)
|
249 |
$ratingdata[] = $rating['rating_code'] ;
|
|
|
|
|
250 |
$config_data['rating_type'] = $ratingdata;
|
251 |
+
$couponContainer = new Varien_Object($config_data);
|
252 |
+
Mage::dispatchEvent('check_plugin_configuration', array('coupon_container' => $couponContainer));
|
253 |
+
echo json_encode($couponContainer->getData());
|
254 |
+
|
255 |
+
|
256 |
+
}
|
257 |
+
|
258 |
+
public function getVersionAction(){
|
259 |
+
$version['version'] = Mage::getConfig()->getModuleConfig("Mss_Connector")->version;
|
260 |
+
|
261 |
+
echo json_encode ($version);
|
262 |
+
}
|
263 |
+
|
264 |
+
public function getAppDataAction() {
|
265 |
+
|
266 |
+
header('Content-type: application/json; charset=utf-8');
|
267 |
+
header("access-control-allow-origin: *");
|
268 |
+
header('Content-type: application/json');
|
269 |
+
|
270 |
+
$getAppCount = $this->_getAppcount();
|
271 |
+
$array = array();
|
272 |
+
$encodeKey = $this->getRequest()->getParam('mms_id');
|
273 |
+
$secureKey = base64_decode($encodeKey);
|
274 |
+
$current_date =date("Y-m-d");
|
275 |
+
$prev_date = date('Y-m-d', strtotime($current_date.' -1 day'));
|
276 |
+
|
277 |
+
try {
|
278 |
+
if(Mage::getStoreConfig(self::XML_SECURE_KEY) == $secureKey) {
|
279 |
+
|
280 |
+
$total_count = Mage::getModel('pushnotification/pushnotification')->getCollection()
|
281 |
+
->addFieldToFilter('create_date',$prev_date)->count();
|
282 |
+
|
283 |
+
$ios_count = Mage::getModel('pushnotification/pushnotification')->getCollection()
|
284 |
+
->addFieldToFilter('create_date',$prev_date)
|
285 |
+
->addFieldToFilter('device_type','1')
|
286 |
+
->count();
|
287 |
+
$android_count = Mage::getModel('pushnotification/pushnotification')->getCollection()
|
288 |
+
->addFieldToFilter('create_date',$prev_date)
|
289 |
+
->addFieldToFilter('device_type','1')
|
290 |
+
->count();
|
291 |
+
$array['status'] = true;
|
292 |
+
$array['date'] = $prev_date;
|
293 |
+
$array['app_count']['total_count'] = $total_count;
|
294 |
+
$array['app_count']['ios_count'] = $ios_count;
|
295 |
+
$array['app_count']['android_count'] = $android_count;
|
296 |
+
$array['order'] = $getAppCount;
|
297 |
+
echo json_encode($array);
|
298 |
+
} else {
|
299 |
+
$array['status'] = "false";
|
300 |
+
$array['message'] = "invalid secure key";
|
301 |
+
echo json_encode($array);
|
302 |
+
}
|
303 |
+
|
304 |
+
}
|
305 |
+
catch (Exception $e) {
|
306 |
+
echo json_encode('false');
|
307 |
+
|
308 |
+
}
|
309 |
+
}
|
310 |
+
|
311 |
+
protected function _getAppcount() {
|
312 |
+
|
313 |
+
$array = array();
|
314 |
+
$total_count = Mage::getModel('sales/order')->getCollection()->count();
|
315 |
+
|
316 |
+
$app_count = Mage::getModel('sales/order')->getCollection()
|
317 |
+
->addFieldToFilter('Mms_order_type','app')->count();
|
318 |
+
$web_count = $total_count-$app_count;
|
319 |
+
|
320 |
+
$array['total_count'] = $total_count;
|
321 |
+
$array['app_count'] = $app_count;
|
322 |
+
$array['web_count'] = $web_count;
|
323 |
|
324 |
+
return $array ;
|
325 |
|
326 |
}
|
327 |
}
|
app/code/local/Mss/Pushnotification/Helper/Data.php
CHANGED
@@ -173,6 +173,9 @@ class Mss_Pushnotification_Helper_Data extends Mage_Core_Helper_Abstract
|
|
173 |
->addFieldToFilter('registration_id',array(eq=>$notification['registration_id']));
|
174 |
|
175 |
if(!$filter->count()):
|
|
|
|
|
|
|
176 |
$collection->setData($notification)->save();
|
177 |
endif;
|
178 |
|
173 |
->addFieldToFilter('registration_id',array(eq=>$notification['registration_id']));
|
174 |
|
175 |
if(!$filter->count()):
|
176 |
+
$notification['create_date'] = Mage::getModel('core/date')->date('Y-m-d');
|
177 |
+
$notification['update_date'] = Mage::getModel('core/date')->date('Y-m-d');
|
178 |
+
$notification['app_status'] = 1;
|
179 |
$collection->setData($notification)->save();
|
180 |
endif;
|
181 |
|
app/design/adminhtml/default/default/template/connector/landing.phtml
CHANGED
@@ -4,8 +4,10 @@
|
|
4 |
<script>
|
5 |
function showResult()
|
6 |
{
|
7 |
-
window.location.href = 'https://www.magentomobileshop.com/user';
|
8 |
// window.location.href = 'http://mastersoftwaretechnologies.com/magentomobilecart/user/activating-app?app=<?php echo $decode; ?>';
|
|
|
|
|
9 |
}
|
10 |
</script>
|
11 |
|
4 |
<script>
|
5 |
function showResult()
|
6 |
{
|
7 |
+
window.location.href = 'https://www.magentomobileshop.com/user/activating-app?app=<?php echo $decode; ?>';
|
8 |
// window.location.href = 'http://mastersoftwaretechnologies.com/magentomobilecart/user/activating-app?app=<?php echo $decode; ?>';
|
9 |
+
|
10 |
+
|
11 |
}
|
12 |
</script>
|
13 |
|
package.xml
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>Mss_Connector</name>
|
4 |
-
<version>2.4.
|
5 |
<stability>stable</stability>
|
6 |
<license>OSL v1.0</license>
|
7 |
<channel>community</channel>
|
@@ -10,9 +10,9 @@
|
|
10 |
<description>Mobile Multistore app for Android and Iphone</description>
|
11 |
<notes>We have updated advanced functionality for Shipping</notes>
|
12 |
<authors><author><name>mss</name><user>mss</user><email>mss.yogendra@gmail.com</email></author></authors>
|
13 |
-
<date>2016-06-
|
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"/><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="
|
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.4.4</version>
|
5 |
<stability>stable</stability>
|
6 |
<license>OSL v1.0</license>
|
7 |
<channel>community</channel>
|
10 |
<description>Mobile Multistore app for Android and Iphone</description>
|
11 |
<notes>We have updated advanced functionality for Shipping</notes>
|
12 |
<authors><author><name>mss</name><user>mss</user><email>mss.yogendra@gmail.com</email></author></authors>
|
13 |
+
<date>2016-06-07</date>
|
14 |
+
<time>13:37:02</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"/><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="811190d32f8c91ef6547951d2a062448"/></dir><dir name="controllers"><dir name="Adminhtml"><file name="SupportController.php" hash="5eb91ac808b04548e4a1e46589c4ca0e"/></dir><file name="CartController.php" hash="b92585690963c1267f905d47e56285c9"/><file name="CreditController.php" hash="a489dd0ed95914fb2b58491410f6f92f"/><file name="CustomerController.php" hash="845502f5864ff6efa88bfd91574d7c5b"/><file name="FeedbackController.php" hash="2b9e092984c0c64397cd25fe1d2266d5"/><file name="IndexController.php" hash="4990dde9ef192c497ab98711e88e8925"/><file name="ItemsController.php" hash="bbf85a2f1514ce73e4c0858ebf7d26f9"/><file name="ProductsController.php" hash="738830c361f7da0dc885cee01acde60c"/><file name="StaticpagesController.php" hash="5767e970653233d769acbe28ce88c4b4"/><file name="StoreinfoController.php" hash="bcfbef556f6473697b66839aba8aaca8"/><file name="TokenController.php" hash="00c3579f6070e2f1cea0c8f8268666de"/><file name="WishlistController.php" hash="082445ed48fde71569305aba02177337"/></dir><dir name="etc"><file name="adminhtml.xml" hash="dace418dcc6eee76831169b5c70176e7"/><file name="config.xml" hash="cd3a63f3330c4ce937f73d857bcd4f34"/><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="4c43ec9c6886d5d34649cbe489bd414c"/></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"/><file name="mysql4-upgrade-0.1.6-0.1.7.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"/><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="bannerslider.xml" hash="a5a76f30bbedca5804646d53e783cdac"/><file name="pushnotification.xml" hash="f7fd974e63c4c7eb5ffac7b059470946"/><file name="connector.xml" hash="003166428e55a52301f71826a37f8283"/><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="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 name="adminhtml"><dir name="default"><dir name="default"><dir name="images"><dir name="magentomobileshop"><file name="magento_logo.png" hash="d1800a3c95de49500f158bfb6ca9c70c"/></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>
|