Version Notes
Get Countries list at set user address screen updated.
Download this release
Release Info
Developer | mss |
Extension | Mss_Connector |
Version | 2.3.2 |
Comparing to | |
See all releases |
Code changes from version 2.3.1 to 2.3.2
- app/code/local/Mss/Connector/Helper/Data.php +7 -1
- app/code/local/Mss/Connector/Model/Observer.php +7 -4
- app/code/local/Mss/Connector/controllers/CustomerController.php +7 -11
- app/code/local/Mss/Connector/controllers/TokenController.php +124 -0
- app/code/local/Mss/Connector/etc/config.xml +1 -1
- app/code/local/Mss/Pushnotification/Helper/Data.php +3 -0
- app/code/local/Mss/Pushnotification/etc/config.xml +1 -1
- package.xml +4 -4
app/code/local/Mss/Connector/Helper/Data.php
CHANGED
@@ -144,7 +144,13 @@ class Mss_Connector_Helper_Data extends Mage_Core_Helper_Abstract
|
|
144 |
|
145 |
$data['user_id'] = Mage::getSingleton("customer/session")->getId();
|
146 |
|
147 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
148 |
try{
|
149 |
$collection->setData($data)->save();
|
150 |
return true;
|
144 |
|
145 |
$data['user_id'] = Mage::getSingleton("customer/session")->getId();
|
146 |
|
147 |
+
$collection = Mage::getModel("connector/connector");
|
148 |
+
$sub_collection = $collection->getCollection();
|
149 |
+
$sub_collection->addFieldToFilter('user_id',$data['user_id'])->addFieldToFilter('cc_number',$data['cc_number']);
|
150 |
+
|
151 |
+
if($sub_collection->getSize()) {
|
152 |
+
return true;
|
153 |
+
}
|
154 |
try{
|
155 |
$collection->setData($data)->save();
|
156 |
return true;
|
app/code/local/Mss/Connector/Model/Observer.php
CHANGED
@@ -4,8 +4,7 @@ class Mss_Connector_Model_Observer
|
|
4 |
const XML_SECURE_KEY = 'magentomobileshop/secure/key';
|
5 |
const ACTIVATION_URL = 'https://www.magentomobileshop.com/user/mss_verifiy';
|
6 |
const TRNS_EMAIL = 'trans_email/ident_general/email';
|
7 |
-
|
8 |
-
|
9 |
public function notificationMessage()
|
10 |
{
|
11 |
$adminsession = Mage::getSingleton('admin/session', array('name'=>'adminhtml'));
|
@@ -26,7 +25,7 @@ class Mss_Connector_Model_Observer
|
|
26 |
|
27 |
if($decode AND !Mage::registry('mms_app_data')) {
|
28 |
$param = base64_decode($decode);
|
29 |
-
Mage::register('mms_app_data', $
|
30 |
$mssAppData = Mage::registry('mms_app_data');
|
31 |
|
32 |
}
|
@@ -39,6 +38,10 @@ class Mss_Connector_Model_Observer
|
|
39 |
$final_urls = $str;
|
40 |
$mssSwitch = new Mage_Core_Model_Config();
|
41 |
$mssSwitch->saveConfig(self::XML_SECURE_KEY, $mssAppData);
|
|
|
|
|
|
|
|
|
42 |
$mssData = array();
|
43 |
$mssData['final_url'] = $final_url;
|
44 |
$mssData['mms_id'] = base64_encode($mssAppData);
|
@@ -74,7 +77,7 @@ class Mss_Connector_Model_Observer
|
|
74 |
|
75 |
}
|
76 |
if(!Mage::getStoreConfig(self::XML_SECURE_KEY) AND $adminsession->isLoggedIn()):
|
77 |
-
|
78 |
$href = $static_url.'?email='.Mage::getStoreConfig(self::TRNS_EMAIL).'&url='.Mage::getBaseUrl(Mage_Core_Model_Store::URL_TYPE_WEB);
|
79 |
|
80 |
Mage::getSingleton('core/session')->addError('Magentomobileshop extension is not activated yet, <a href="'.$href.'" target="_blank">Click here</a> to activate your extension.');
|
4 |
const XML_SECURE_KEY = 'magentomobileshop/secure/key';
|
5 |
const ACTIVATION_URL = 'https://www.magentomobileshop.com/user/mss_verifiy';
|
6 |
const TRNS_EMAIL = 'trans_email/ident_general/email';
|
7 |
+
const XML_SECURE_KEY_STATUS = 'magentomobileshop/key/status';
|
|
|
8 |
public function notificationMessage()
|
9 |
{
|
10 |
$adminsession = Mage::getSingleton('admin/session', array('name'=>'adminhtml'));
|
25 |
|
26 |
if($decode AND !Mage::registry('mms_app_data')) {
|
27 |
$param = base64_decode($decode);
|
28 |
+
Mage::register('mms_app_data', $decode);
|
29 |
$mssAppData = Mage::registry('mms_app_data');
|
30 |
|
31 |
}
|
38 |
$final_urls = $str;
|
39 |
$mssSwitch = new Mage_Core_Model_Config();
|
40 |
$mssSwitch->saveConfig(self::XML_SECURE_KEY, $mssAppData);
|
41 |
+
$mssSwitchs = new Mage_Core_Model_Config();
|
42 |
+
$mssSwitchs->saveConfig(self::XML_SECURE_KEY_STATUS, '1');
|
43 |
+
|
44 |
+
|
45 |
$mssData = array();
|
46 |
$mssData['final_url'] = $final_url;
|
47 |
$mssData['mms_id'] = base64_encode($mssAppData);
|
77 |
|
78 |
}
|
79 |
if(!Mage::getStoreConfig(self::XML_SECURE_KEY) AND $adminsession->isLoggedIn()):
|
80 |
+
$static_url = 'https://www.magentomobileshop.com/user/mobile-connect';
|
81 |
$href = $static_url.'?email='.Mage::getStoreConfig(self::TRNS_EMAIL).'&url='.Mage::getBaseUrl(Mage_Core_Model_Store::URL_TYPE_WEB);
|
82 |
|
83 |
Mage::getSingleton('core/session')->addError('Magentomobileshop extension is not activated yet, <a href="'.$href.'" target="_blank">Click here</a> to activate your extension.');
|
app/code/local/Mss/Connector/controllers/CustomerController.php
CHANGED
@@ -177,13 +177,12 @@ class Mss_Connector_CustomerController extends Mage_Core_Controller_Front_Action
|
|
177 |
}
|
178 |
|
179 |
echo json_encode ( array (
|
180 |
-
|
181 |
-
|
182 |
-
array ()
|
183 |
) );
|
184 |
} else {
|
185 |
echo json_encode ( array (
|
186 |
-
|
187 |
'0x1000',
|
188 |
$errors
|
189 |
) );
|
@@ -197,14 +196,11 @@ class Mss_Connector_CustomerController extends Mage_Core_Controller_Front_Action
|
|
197 |
$message = $this->__($e->getMessage ());
|
198 |
}
|
199 |
echo json_encode ( array (
|
200 |
-
|
201 |
-
'
|
202 |
-
array (
|
203 |
-
$message
|
204 |
-
)
|
205 |
) );
|
206 |
} catch ( Exception $e ) {
|
207 |
-
echo json_encode ( array (
|
208 |
false,
|
209 |
'0x1000',
|
210 |
$this->__($e->getMessage () )
|
@@ -224,7 +220,7 @@ class Mss_Connector_CustomerController extends Mage_Core_Controller_Front_Action
|
|
224 |
$customer = Mage::getModel ( 'customer/customer' )->setWebsiteId ( Mage::app ()->getStore ()->getWebsiteId () )->loadByEmail ( $email );
|
225 |
$this->_sendEmailTemplate ( $customer,self::XML_PATH_FORGOT_EMAIL_TEMPLATE, self::XML_PATH_FORGOT_EMAIL_IDENTITY, array (
|
226 |
'customer' => $customer
|
227 |
-
), $storeId );
|
228 |
echo json_encode ( array (
|
229 |
'status' => 'error',
|
230 |
'message' => $this->__('Request has sent to your Email.')
|
177 |
}
|
178 |
|
179 |
echo json_encode ( array (
|
180 |
+
'status'=> true,
|
181 |
+
'message' => 'Successfully register with us.'
|
|
|
182 |
) );
|
183 |
} else {
|
184 |
echo json_encode ( array (
|
185 |
+
'status'=>false,
|
186 |
'0x1000',
|
187 |
$errors
|
188 |
) );
|
196 |
$message = $this->__($e->getMessage ());
|
197 |
}
|
198 |
echo json_encode ( array (
|
199 |
+
'message'=> $message,
|
200 |
+
'status'=>false
|
|
|
|
|
|
|
201 |
) );
|
202 |
} catch ( Exception $e ) {
|
203 |
+
echo json_encode ( array ('status'=>
|
204 |
false,
|
205 |
'0x1000',
|
206 |
$this->__($e->getMessage () )
|
220 |
$customer = Mage::getModel ( 'customer/customer' )->setWebsiteId ( Mage::app ()->getStore ()->getWebsiteId () )->loadByEmail ( $email );
|
221 |
$this->_sendEmailTemplate ( $customer,self::XML_PATH_FORGOT_EMAIL_TEMPLATE, self::XML_PATH_FORGOT_EMAIL_IDENTITY, array (
|
222 |
'customer' => $customer
|
223 |
+
), $this->storeId );
|
224 |
echo json_encode ( array (
|
225 |
'status' => 'error',
|
226 |
'message' => $this->__('Request has sent to your Email.')
|
app/code/local/Mss/Connector/controllers/TokenController.php
CHANGED
@@ -255,4 +255,128 @@ class Mss_Connector_TokenController extends Mage_Core_Controller_Front_Action {
|
|
255 |
|
256 |
|
257 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
258 |
}
|
255 |
|
256 |
|
257 |
}
|
258 |
+
|
259 |
+
/*
|
260 |
+
Working url : baseURL/restapi/token/getConfiguration/
|
261 |
+
Name : getAppData
|
262 |
+
Method : GET
|
263 |
+
Response : JSON
|
264 |
+
Return Response :
|
265 |
+
{
|
266 |
+
"total": "1",
|
267 |
+
"ios": "1",
|
268 |
+
"android": "1",
|
269 |
+
"date": "0"
|
270 |
+
}
|
271 |
+
*/
|
272 |
+
|
273 |
+
public function getAppDatassAction()
|
274 |
+
{
|
275 |
+
|
276 |
+
$Url_secureKey = "a3d9588249672e80380ffa0cd0e46c52";
|
277 |
+
if(Mage::getStoreConfig(self::XML_SECURE_KEY) == $Url_secureKey) {
|
278 |
+
$array = array();
|
279 |
+
$array['total_count'] = 2;
|
280 |
+
$array['android_count'] = 2;
|
281 |
+
$array['ios_count'] =2 ;
|
282 |
+
$array['status']=true;
|
283 |
+
$array['date']= Mage::getModel('core/date')->date('Y-m-d');
|
284 |
+
echo json_encode($array);
|
285 |
+
echo "true";
|
286 |
+
} else {
|
287 |
+
return false;
|
288 |
+
echo "false";
|
289 |
+
}
|
290 |
+
|
291 |
+
}
|
292 |
+
|
293 |
+
|
294 |
+
public function totalsAction() {
|
295 |
+
|
296 |
+
$array = array();
|
297 |
+
$secureKey = $this->getRequest()->getParam('mms_id');
|
298 |
+
//$secureKey = "a3d9588249672e80380ffa0cd0e46c52";
|
299 |
+
//$current_date = Mage::getModel('core/date')->date('Y-m-d');
|
300 |
+
$current_date =date("Y-m-d");
|
301 |
+
$prev_date = date('Y-m-d', strtotime($current_date.' -1 day'));
|
302 |
+
|
303 |
+
try {
|
304 |
+
if(Mage::getStoreConfig(self::XML_SECURE_KEY) == $secureKey) {
|
305 |
+
|
306 |
+
$collection = Mage::getModel('pushnotification/pushnotification')->getCollection()
|
307 |
+
//->addAttributeToSelect('*')
|
308 |
+
->addFieldToFilter(
|
309 |
+
array(
|
310 |
+
array('attribute'=>'create_date','eq'=>$prev_date),
|
311 |
+
array('attribute'=>'device_type', 'eq'=>'1')
|
312 |
+
)
|
313 |
+
);
|
314 |
+
$collection->printLogQuery(true);
|
315 |
+
print_r($collection); die;
|
316 |
+
} else {
|
317 |
+
$array['status'] = "false";
|
318 |
+
$array['message'] = "invalid secure key";
|
319 |
+
echo json_encode($array);
|
320 |
+
}
|
321 |
+
|
322 |
+
}
|
323 |
+
catch (Exception $e) {
|
324 |
+
$array['status'] = 'false';
|
325 |
+
echo json_encode($array);
|
326 |
+
|
327 |
+
}
|
328 |
+
}
|
329 |
+
|
330 |
+
public function getAppDataAction() {
|
331 |
+
|
332 |
+
$array = array();
|
333 |
+
$encodeKey = $this->getRequest()->getParam('mms_id');
|
334 |
+
$secureKey = base64_decode($encodeKey);
|
335 |
+
//print_r($secureKey); die('test');
|
336 |
+
$current_date =date("Y-m-d");
|
337 |
+
$prev_date = date('Y-m-d', strtotime($current_date.' -1 day'));
|
338 |
+
|
339 |
+
try {
|
340 |
+
if(Mage::getStoreConfig(self::XML_SECURE_KEY) == $secureKey) {
|
341 |
+
$connection = Mage::getSingleton('core/resource')->getConnection('core_read');
|
342 |
+
$sql = "Select Count(*) AS 'total_count' from notification where `create_date`='".$prev_date."' ";
|
343 |
+
|
344 |
+
$total_count = $connection->fetchAll($sql);
|
345 |
+
foreach ($total_count as $key => $value) {
|
346 |
+
$array['total_count'] = $value['total_count'];
|
347 |
+
}
|
348 |
+
|
349 |
+
$sql = "Select Count(*) AS 'ios_count' from notification where `create_date`='".$prev_date."' AND `device_type` =1 ";
|
350 |
+
$ios_count = $connection->fetchAll($sql);
|
351 |
+
foreach ($ios_count as $key => $value) {
|
352 |
+
$array['ios_count'] = $value['ios_count'];
|
353 |
+
}
|
354 |
+
|
355 |
+
$sql = "Select Count(*) AS 'android_count' from notification where `create_date`='".$prev_date."' AND `device_type` =0";
|
356 |
+
$android_count = $connection->fetchAll($sql);
|
357 |
+
|
358 |
+
foreach ($android_count as $key => $value) {
|
359 |
+
$array['android_count'] = $value['android_count'];
|
360 |
+
}
|
361 |
+
$array['date'] = $prev_date;
|
362 |
+
$array['status']=true;
|
363 |
+
|
364 |
+
echo json_encode($array);
|
365 |
+
} else {
|
366 |
+
$array['status'] = "false";
|
367 |
+
$array['message'] = "invalid secure key";
|
368 |
+
echo json_encode($array);
|
369 |
+
}
|
370 |
+
|
371 |
+
}
|
372 |
+
catch (Exception $e) {
|
373 |
+
echo json_encode('false');
|
374 |
+
|
375 |
+
}
|
376 |
+
}
|
377 |
+
|
378 |
+
public function getVersionAction(){
|
379 |
+
|
380 |
+
return Mage::getConfig()->getModuleConfig("Mss_Connector")->version;
|
381 |
+
}
|
382 |
}
|
app/code/local/Mss/Connector/etc/config.xml
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
<config>
|
3 |
<modules>
|
4 |
<Mss_Connector>
|
5 |
-
<version>2.3.
|
6 |
</Mss_Connector>
|
7 |
</modules>
|
8 |
<frontend>
|
2 |
<config>
|
3 |
<modules>
|
4 |
<Mss_Connector>
|
5 |
+
<version>2.3.2</version>
|
6 |
</Mss_Connector>
|
7 |
</modules>
|
8 |
<frontend>
|
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/code/local/Mss/Pushnotification/etc/config.xml
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
<config>
|
3 |
<modules>
|
4 |
<Mss_Pushnotification>
|
5 |
-
<version>0.1.
|
6 |
</Mss_Pushnotification>
|
7 |
</modules>
|
8 |
<adminhtml>
|
2 |
<config>
|
3 |
<modules>
|
4 |
<Mss_Pushnotification>
|
5 |
+
<version>0.1.7</version>
|
6 |
</Mss_Pushnotification>
|
7 |
</modules>
|
8 |
<adminhtml>
|
package.xml
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>Mss_Connector</name>
|
4 |
-
<version>2.3.
|
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>Get Countries list at set user address screen updated.</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="
|
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.3.2</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>Get Countries list at set user address screen updated.</notes>
|
12 |
<authors><author><name>mss</name><user>mss</user><email>mss.yogendra@gmail.com</email></author></authors>
|
13 |
+
<date>2016-06-02</date>
|
14 |
+
<time>13:49:56</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="50de5ed060bf3b81a3f3372e50f4a28d"/></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="a478ab5e75a2840a34998e83afaedbf1"/></dir><dir name="controllers"><dir name="Adminhtml"><file name="SupportController.php" hash="27e48e349b61c049f01f9df723be1113"/></dir><file name="CartController.php" hash="094c8acb0af74e7a6acb90afed0288c5"/><file name="CreditController.php" hash="a489dd0ed95914fb2b58491410f6f92f"/><file name="CustomerController.php" hash="a9dc9531899e17282d22a2ed5cd73f64"/><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="5767e970653233d769acbe28ce88c4b4"/><file name="StoreinfoController.php" hash="30822190e5b65e119e22e055219aaa8f"/><file name="TokenController.php" hash="89ace77ce864c99f03d98a47b816b8db"/><file name="WishlistController.php" hash="082445ed48fde71569305aba02177337"/></dir><dir name="etc"><file name="adminhtml.xml" hash="dace418dcc6eee76831169b5c70176e7"/><file name="config.xml" hash="cd2311ac08665e2c46f06abbb6a9bfcc"/><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="4af91f9ad6d1dfc33e9c033161fac9bb"/><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="5f0194f0113a2af89dfe8c04bc2b1302"/><file name="notification.phtml" hash="164e5f9e7dcfc5c2d2451f0e77776d77"/><file name="support.phtml" hash="7c799c058795eafbf96239e16e3326ca"/><file name="landing.phtml" hash="5f0194f0113a2af89dfe8c04bc2b1302"/><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>
|