Version Notes
Get Countries list at set user address screen updated.
Download this release
Release Info
Developer | mss |
Extension | Mss_Connector |
Version | 2.3.0 |
Comparing to | |
See all releases |
Code changes from version 2.2.0 to 2.3.0
- app/code/local/Mss/Connector/Model/Observer.php +68 -22
- app/code/local/Mss/Connector/controllers/Adminhtml/SupportController.php +7 -0
- app/code/local/Mss/Connector/controllers/CustomerController.php +2 -2
- app/code/local/Mss/Connector/controllers/StaticpagesController.php +2 -0
- app/code/local/Mss/Connector/etc/config.xml +1 -1
- app/design/adminhtml/default/default/layout/connector.xml +6 -0
- app/design/adminhtml/default/default/template/connector/landing.phtml +143 -0
- package.xml +7 -7
- skin/adminhtml/default/default/images/magentomobileshop/magento_logo.png +0 -0
app/code/local/Mss/Connector/Model/Observer.php
CHANGED
@@ -2,39 +2,88 @@
|
|
2 |
class Mss_Connector_Model_Observer
|
3 |
{
|
4 |
const XML_SECURE_KEY = 'magentomobileshop/secure/key';
|
5 |
-
const ACTIVATION_URL = 'https://www.magentomobileshop.com/
|
6 |
const TRNS_EMAIL = 'trans_email/ident_general/email';
|
7 |
|
8 |
public function notificationMessage()
|
9 |
{
|
10 |
-
|
11 |
-
|
12 |
if(!Mage::getStoreConfig('web/url/use_store')):
|
13 |
$mssSwitch = new Mage_Core_Model_Config();
|
14 |
$mssSwitch->saveConfig('web/url/use_store', 1);
|
15 |
endif;
|
16 |
-
|
17 |
|
18 |
-
|
19 |
|
20 |
-
|
21 |
-
|
22 |
-
|
23 |
-
|
24 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
25 |
|
26 |
-
|
27 |
-
|
28 |
-
|
29 |
-
|
|
|
|
|
|
|
|
|
30 |
|
|
|
|
|
31 |
|
32 |
-
|
|
|
|
|
|
|
|
|
33 |
}
|
34 |
|
|
|
35 |
public function sendemail(){
|
36 |
|
37 |
-
|
38 |
$current_store_url = Mage::getBaseUrl(Mage_Core_Model_Store::URL_TYPE_WEB);;
|
39 |
$current_store_name = Mage::getStoreConfig('general/store_information/name');
|
40 |
$current_store_phone =Mage::getStoreConfig('general/store_information/phone');
|
@@ -50,25 +99,22 @@ class Mss_Connector_Model_Observer
|
|
50 |
Thank you,
|
51 |
MagentoMobileshop Dev Tem
|
52 |
MESSAGE;
|
53 |
-
|
54 |
-
|
55 |
$to = "contact@magentomobileshop.com";
|
56 |
-
|
57 |
$subject = "New Connector Installation ";
|
58 |
$headers = "MIME-Version: 1.0" . "\r\n";
|
59 |
$headers .= "Content-type:text/html;charset=UTF-8" . "\r\n";
|
60 |
$headers .= 'From: <contact@magentomobileshop.com>' . "\r\n";
|
61 |
$headers .= 'Cc: mss.yogendra@gmail.com' . "\r\n";
|
62 |
$email = mail($to,$subject,$message,$headers);
|
63 |
-
|
64 |
if($email):
|
65 |
$mssSwitch = new Mage_Core_Model_Config();
|
66 |
$mssSwitch->saveConfig('mss/connector/email', 1);
|
67 |
endif;
|
68 |
-
|
69 |
-
|
70 |
return true;
|
71 |
|
72 |
}
|
73 |
|
|
|
74 |
}
|
|
|
|
2 |
class Mss_Connector_Model_Observer
|
3 |
{
|
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 |
public function notificationMessage()
|
9 |
{
|
10 |
+
$adminsession = Mage::getSingleton('admin/session', array('name'=>'adminhtml'));
|
|
|
11 |
if(!Mage::getStoreConfig('web/url/use_store')):
|
12 |
$mssSwitch = new Mage_Core_Model_Config();
|
13 |
$mssSwitch->saveConfig('web/url/use_store', 1);
|
14 |
endif;
|
|
|
15 |
|
16 |
+
|
17 |
|
18 |
+
$url = Mage::helper('core/url')->getCurrentUrl('key');
|
19 |
+
$url_path = parse_url($url, PHP_URL_PATH);
|
20 |
+
$token = pathinfo($url_path, PATHINFO_BASENAME);
|
21 |
+
|
22 |
+
$decode = Mage::app()->getRequest()->getParam('mms_id');
|
23 |
+
|
24 |
+
$mssAppData = '';
|
25 |
+
|
26 |
+
if($decode AND !Mage::registry('mms_app_data')) {
|
27 |
+
$param = base64_decode($decode);
|
28 |
+
Mage::register('mms_app_data', $param);
|
29 |
+
$mssAppData = Mage::registry('mms_app_data');
|
30 |
+
|
31 |
+
}
|
32 |
+
$current = Mage::getStoreConfig('magentomobileshop/secure/key');
|
33 |
+
if((!$current) AND $adminsession->isLoggedIn() AND $mssAppData != '' ) {
|
34 |
+
|
35 |
+
$str = self::ACTIVATION_URL;
|
36 |
+
$url = $str.'?mms_id=';
|
37 |
+
$final_url = $url.''.$mssAppData;
|
38 |
+
$final_urls = $str;
|
39 |
+
$mssSwitch = new Mage_Core_Model_Config();
|
40 |
+
$mssSwitch->saveConfig(self::XML_SECURE_KEY, $mssAppData);
|
41 |
+
$mssData = array();
|
42 |
+
$mssData['final_url'] = $final_url;
|
43 |
+
$mssData['mms_id'] = base64_encode($mssAppData);
|
44 |
+
$mssData['default_store_name'] = Mage::app()->getDefaultStoreView()->getCode();
|
45 |
+
$mssData['default_store_id'] = Mage::app()->getWebsite(true)->getDefaultGroup()
|
46 |
+
->getDefaultStoreId();
|
47 |
+
$mssData['default_view_id'] = Mage::app()->getDefaultStoreView()->getId();
|
48 |
+
$mssData['default_store_currency'] = Mage::app()->getStore()->getCurrentCurrencyCode();
|
49 |
+
$mssData['status'] = 'true';
|
50 |
+
|
51 |
+
Mage::app()->getCacheInstance()->cleanType('config');
|
52 |
+
Mage::unregister('mms_app_data');
|
53 |
+
|
54 |
+
$fields_string='';
|
55 |
+
foreach($mssData as $key=>$value) { $fields_string .= $key.'='.$value.'&'; }
|
56 |
+
rtrim($fields_string,'&');
|
57 |
+
|
58 |
+
$ch = curl_init();
|
59 |
+
curl_setopt($ch,CURLOPT_URL,$final_urls);
|
60 |
+
curl_setopt($ch, CURLOPT_HTTPHEADER, array('Content-Type: application/x-www-form-urlencoded'));
|
61 |
+
curl_setopt($ch,CURLOPT_POST,count($mssData));
|
62 |
+
curl_setopt($ch,CURLOPT_POSTFIELDS,$fields_string);
|
63 |
+
curl_setopt($ch, CURLOPT_RETURNTRANSFER, TRUE);
|
64 |
|
65 |
+
$result = curl_exec($ch);
|
66 |
+
curl_close($ch);
|
67 |
+
Mage::app()->getResponse()->setRedirect(Mage::helper("adminhtml")->getUrl("connector/adminhtml_support/landing/"))->sendResponse();
|
68 |
+
exit;
|
69 |
+
} elseif($current != '' AND $adminsession->isLoggedIn() AND $decode != '') {
|
70 |
+
//Mage::getSingleton('core/session')->addSuccess('Your extension is activated.');
|
71 |
+
Mage::app()->getResponse()->setRedirect(Mage::helper("adminhtml")->getUrl("connector/adminhtml_support/landing/", array('_query'=>'test=1')))->sendResponse();
|
72 |
+
exit;
|
73 |
|
74 |
+
}
|
75 |
+
if(!Mage::getStoreConfig(self::XML_SECURE_KEY) AND $adminsession->isLoggedIn()):
|
76 |
|
77 |
+
$href = self::ACTIVATION_URL.'?email='.Mage::getStoreConfig(self::TRNS_EMAIL).'&url='.Mage::getBaseUrl(Mage_Core_Model_Store::URL_TYPE_WEB);
|
78 |
+
|
79 |
+
Mage::getSingleton('core/session')->addError('Magentomobileshop extension is not activated yet, <a href="'.$href.'" target="_blank">Click here</a> to activate your extension.');
|
80 |
+
endif;
|
81 |
+
|
82 |
}
|
83 |
|
84 |
+
|
85 |
public function sendemail(){
|
86 |
|
|
|
87 |
$current_store_url = Mage::getBaseUrl(Mage_Core_Model_Store::URL_TYPE_WEB);;
|
88 |
$current_store_name = Mage::getStoreConfig('general/store_information/name');
|
89 |
$current_store_phone =Mage::getStoreConfig('general/store_information/phone');
|
99 |
Thank you,
|
100 |
MagentoMobileshop Dev Tem
|
101 |
MESSAGE;
|
|
|
|
|
102 |
$to = "contact@magentomobileshop.com";
|
|
|
103 |
$subject = "New Connector Installation ";
|
104 |
$headers = "MIME-Version: 1.0" . "\r\n";
|
105 |
$headers .= "Content-type:text/html;charset=UTF-8" . "\r\n";
|
106 |
$headers .= 'From: <contact@magentomobileshop.com>' . "\r\n";
|
107 |
$headers .= 'Cc: mss.yogendra@gmail.com' . "\r\n";
|
108 |
$email = mail($to,$subject,$message,$headers);
|
|
|
109 |
if($email):
|
110 |
$mssSwitch = new Mage_Core_Model_Config();
|
111 |
$mssSwitch->saveConfig('mss/connector/email', 1);
|
112 |
endif;
|
|
|
|
|
113 |
return true;
|
114 |
|
115 |
}
|
116 |
|
117 |
+
|
118 |
}
|
119 |
+
|
120 |
+
|
app/code/local/Mss/Connector/controllers/Adminhtml/SupportController.php
CHANGED
@@ -30,5 +30,12 @@ class Mss_Connector_Adminhtml_SupportController extends Mage_Adminhtml_Controlle
|
|
30 |
}
|
31 |
return $msg;
|
32 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
33 |
}
|
34 |
|
30 |
}
|
31 |
return $msg;
|
32 |
}
|
33 |
+
|
34 |
+
public function landingAction() {
|
35 |
+
|
36 |
+
$this->loadLayout();
|
37 |
+
$this->_title($this->__("Verification"));
|
38 |
+
$this->renderLayout();
|
39 |
+
}
|
40 |
}
|
41 |
|
app/code/local/Mss/Connector/controllers/CustomerController.php
CHANGED
@@ -526,9 +526,9 @@ class Mss_Connector_CustomerController extends Mage_Core_Controller_Front_Action
|
|
526 |
|
527 |
|
528 |
if($states->getData()):
|
529 |
-
$countriesArray[]=
|
530 |
else:
|
531 |
-
$countriesArray[]=
|
532 |
endif;
|
533 |
|
534 |
|
526 |
|
527 |
|
528 |
if($states->getData()):
|
529 |
+
$countriesArray[]=array('value'=>$country['value'],'name'=>$country['label'],'state'=>$states->getData());
|
530 |
else:
|
531 |
+
$countriesArray[]=array('value'=>$country['value'],'name'=>$country['label'],'state'=>[]);
|
532 |
endif;
|
533 |
|
534 |
|
app/code/local/Mss/Connector/controllers/StaticpagesController.php
CHANGED
@@ -34,6 +34,8 @@ class Mss_Connector_StaticpagesController extends Mage_Core_Controller_Front_Act
|
|
34 |
*/
|
35 |
public function getPagesAction()
|
36 |
{
|
|
|
|
|
37 |
try{
|
38 |
$pages = array(
|
39 |
|
34 |
*/
|
35 |
public function getPagesAction()
|
36 |
{
|
37 |
+
echo json_encode(array('status'=>'success','data'=>array()));
|
38 |
+
exit;
|
39 |
try{
|
40 |
$pages = array(
|
41 |
|
app/code/local/Mss/Connector/etc/config.xml
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
<config>
|
3 |
<modules>
|
4 |
<Mss_Connector>
|
5 |
-
<version>2.
|
6 |
</Mss_Connector>
|
7 |
</modules>
|
8 |
<frontend>
|
2 |
<config>
|
3 |
<modules>
|
4 |
<Mss_Connector>
|
5 |
+
<version>2.3.0</version>
|
6 |
</Mss_Connector>
|
7 |
</modules>
|
8 |
<frontend>
|
app/design/adminhtml/default/default/layout/connector.xml
CHANGED
@@ -10,4 +10,10 @@
|
|
10 |
<block type="connector/adminhtml_support" name="connector_support" template="connector/support.phtml"/>
|
11 |
</reference>
|
12 |
</connector_adminhtml_support_support>
|
|
|
|
|
|
|
|
|
|
|
|
|
13 |
</layout>
|
10 |
<block type="connector/adminhtml_support" name="connector_support" template="connector/support.phtml"/>
|
11 |
</reference>
|
12 |
</connector_adminhtml_support_support>
|
13 |
+
|
14 |
+
<connector_adminhtml_support_landing>
|
15 |
+
<reference name="content">
|
16 |
+
<block type="connector/adminhtml_support" name="connector_support" template="connector/landing.phtml"/>
|
17 |
+
</reference>
|
18 |
+
</connector_adminhtml_support_landing>
|
19 |
</layout>
|
app/design/adminhtml/default/default/template/connector/landing.phtml
ADDED
@@ -0,0 +1,143 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<script>
|
2 |
+
function showResult()
|
3 |
+
{
|
4 |
+
window.location.href = 'https://www.magentomobileshop.com/user';
|
5 |
+
}
|
6 |
+
</script>
|
7 |
+
|
8 |
+
|
9 |
+
<div class="container inner-container">
|
10 |
+
<div class="row">
|
11 |
+
<?php// $test = $_REQUEST; ?>
|
12 |
+
<span style="cursor:pointer;">
|
13 |
+
<img src="<?php echo $this->getSkinUrl('images/magentomobileshop/magento_logo.png')?>" width="350" height="145" />
|
14 |
+
|
15 |
+
<?php // if($test) { ?>
|
16 |
+
<form id="support" role="form" class="smart-green">
|
17 |
+
<h1 align="center" onclick="showResult();">Click here to activate your extension
|
18 |
+
</h1>
|
19 |
+
</form>
|
20 |
+
</span>
|
21 |
+
<?php// } ?>
|
22 |
+
|
23 |
+
</div>
|
24 |
+
</div>
|
25 |
+
|
26 |
+
<style>
|
27 |
+
|
28 |
+
.container.inner-container {
|
29 |
+
box-shadow: 0 0 3px #e4e4e4;
|
30 |
+
margin: 20px auto 0;
|
31 |
+
padding: 30px 20px 20px 20px;
|
32 |
+
text-align: center;
|
33 |
+
width: 40%;
|
34 |
+
}
|
35 |
+
.container.inner-container img {
|
36 |
+
height: auto;
|
37 |
+
width: 270px;
|
38 |
+
}
|
39 |
+
.container.inner-container h1 {
|
40 |
+
border-radius: 0;
|
41 |
+
box-shadow: none;
|
42 |
+
font-size: 16px;
|
43 |
+
margin: 0;
|
44 |
+
padding: 14px 45px;
|
45 |
+
text-shadow: none;
|
46 |
+
}
|
47 |
+
.container.inner-container form.smart-green {
|
48 |
+
display: inline-block;
|
49 |
+
margin-top: 0;
|
50 |
+
}
|
51 |
+
|
52 |
+
|
53 |
+
|
54 |
+
|
55 |
+
|
56 |
+
|
57 |
+
|
58 |
+
.smart-green {
|
59 |
+
margin-left:auto;
|
60 |
+
margin-right:auto;
|
61 |
+
|
62 |
+
max-width: 100%;
|
63 |
+
/*background: #F8F8F8;*/
|
64 |
+
padding: 30px 30px 20px 30px;
|
65 |
+
font: 12px Arial, Helvetica, sans-serif;
|
66 |
+
color: #666;
|
67 |
+
border-radius: 5px;
|
68 |
+
-webkit-border-radius: 5px;
|
69 |
+
-moz-border-radius: 5px;
|
70 |
+
}
|
71 |
+
.smart-green h1 {
|
72 |
+
font: 24px "Trebuchet MS", Arial, Helvetica, sans-serif;
|
73 |
+
padding: 20px 0px 20px 40px;
|
74 |
+
display: block;
|
75 |
+
margin: -30px -30px 10px -30px;
|
76 |
+
color: #FFF;
|
77 |
+
background: #9DC45F;
|
78 |
+
text-shadow: 1px 1px 1px #949494;
|
79 |
+
border-radius: 5px 5px 0px 0px;
|
80 |
+
-webkit-border-radius: 5px 5px 0px 0px;
|
81 |
+
-moz-border-radius: 5px 5px 0px 0px;
|
82 |
+
border-bottom:1px solid #89AF4C;
|
83 |
+
|
84 |
+
}
|
85 |
+
.smart-green h1>span {
|
86 |
+
display: block;
|
87 |
+
font-size: 11px;
|
88 |
+
color: #FFF;
|
89 |
+
}
|
90 |
+
|
91 |
+
.smart-green label {
|
92 |
+
display: block;
|
93 |
+
margin: 0px 0px 5px;
|
94 |
+
}
|
95 |
+
.smart-green label>span {
|
96 |
+
float: left;
|
97 |
+
margin-top: 10px;
|
98 |
+
color: #5E5E5E;
|
99 |
+
}
|
100 |
+
.smart-green input[type="text"], .smart-green input[type="email"], .smart-green textarea, .smart-green select {
|
101 |
+
color: #555;
|
102 |
+
height: 30px;
|
103 |
+
line-height:15px;
|
104 |
+
width: 100%;
|
105 |
+
padding: 0px 0px 0px 10px;
|
106 |
+
margin-top: 2px;
|
107 |
+
border: 1px solid #E5E5E5;
|
108 |
+
background: #FBFBFB;
|
109 |
+
outline: 0;
|
110 |
+
-webkit-box-shadow: inset 1px 1px 2px rgba(238, 238, 238, 0.2);
|
111 |
+
box-shadow: inset 1px 1px 2px rgba(238, 238, 238, 0.2);
|
112 |
+
font: normal 14px/14px Arial, Helvetica, sans-serif;
|
113 |
+
}
|
114 |
+
.smart-green textarea{
|
115 |
+
height:100px;
|
116 |
+
padding-top: 10px;
|
117 |
+
}
|
118 |
+
.smart-green select {
|
119 |
+
background: url('down-arrow.png') no-repeat right, -moz-linear-gradient(top, #FBFBFB 0%, #E9E9E9 100%);
|
120 |
+
background: url('down-arrow.png') no-repeat right, -webkit-gradient(linear, left top, left bottom, color-stop(0%,#FBFBFB), color-stop(100%,#E9E9E9));
|
121 |
+
appearance:none;
|
122 |
+
-webkit-appearance:none;
|
123 |
+
-moz-appearance: none;
|
124 |
+
text-indent: 0.01px;
|
125 |
+
text-overflow: '';
|
126 |
+
width:100%;
|
127 |
+
height:30px;
|
128 |
+
}
|
129 |
+
.smart-green .button {
|
130 |
+
background-color: #9DC45F;
|
131 |
+
border-radius: 5px;
|
132 |
+
-webkit-border-radius: 5px;
|
133 |
+
-moz-border-border-radius: 5px;
|
134 |
+
border: none;
|
135 |
+
padding: 10px 25px 10px 25px;
|
136 |
+
color: #FFF;
|
137 |
+
text-shadow: 1px 1px 1px #949494;
|
138 |
+
}
|
139 |
+
.smart-green .button:hover {
|
140 |
+
background-color:#80A24A;
|
141 |
+
}
|
142 |
+
/*sUPPORT FORM CSS START HERE */
|
143 |
+
</style>
|
package.xml
CHANGED
@@ -1,18 +1,18 @@
|
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>Mss_Connector</name>
|
4 |
-
<version>2.
|
5 |
<stability>stable</stability>
|
6 |
<license>OSL v1.0</license>
|
7 |
<channel>community</channel>
|
8 |
<extends/>
|
9 |
-
<summary>Mobile
|
10 |
-
<description>
|
11 |
-
<notes>
|
12 |
<authors><author><name>mss</name><user>mss</user><email>mss.yogendra@gmail.com</email></author></authors>
|
13 |
-
<date>2016-05-
|
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.3.0</version>
|
5 |
<stability>stable</stability>
|
6 |
<license>OSL v1.0</license>
|
7 |
<channel>community</channel>
|
8 |
<extends/>
|
9 |
+
<summary>Mobile Multi store app for Android and Iphone</summary>
|
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-05-31</date>
|
14 |
+
<time>14:43:50</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="f623044edc902f6dcda4fddb208e2341"/></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="883174bf050aae0f7e6d0afceb043d33"/><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="ebbb672b1587c84ed914cd67bd7dc529"/><file name="WishlistController.php" hash="082445ed48fde71569305aba02177337"/></dir><dir name="etc"><file name="adminhtml.xml" hash="dace418dcc6eee76831169b5c70176e7"/><file name="config.xml" hash="b083d830d185035d4a315a5fac8cfeaf"/><file name="system.xml" hash="09be5e92b65afa6e91d062b3f7082e57"/></dir><dir name="sql"><dir name="connector_setup"><file name="mysql4-install-0.1.0.php" hash="4325ba30b21f9680b11d4b124b9e8181"/><file name="mysql4-upgrade-0.1.0-0.1.1.php" hash="eaa00e880b38ba41580b67785b33ed10"/></dir></dir></dir><dir name="Mpaypal"><dir name="Helper"><file name="Data.php" hash="c3ba57e7cc86210346b1b3f279083c0f"/></dir><dir name="Model"><file name="Mpaypal.php" hash="f49b32aad7d7bed49333534139fd07b7"/><file name="Observer.php" hash="4b92aaf547f0b080d8495cf064574d10"/></dir><dir name="controllers"><file name="IndexController.php" hash="c12439366cff0f0d0813543a2fd90f7f"/></dir><dir name="etc"><file name="config.xml" hash="9ed76ff53b5e0232b4ea442a7e046b14"/><file name="system.xml" hash="2f51ad686858a69e07e8c21baf5d690e"/></dir></dir><dir name="Payu"><dir name="Block"><file name="Index.php" hash="f6a324c1ac4b0c1dcfac775c51c2a34c"/></dir><dir name="Helper"><file name="Data.php" hash="7800e0e58258b78d0f23a7fec482d120"/></dir><dir name="controllers"><file name="IndexController.php" hash="b5254620aaf3913b8639555413d36a26"/></dir><dir name="etc"><file name="config.xml" hash="c6867fb0cc7efdde39c32a3ecbf62433"/></dir></dir><dir name="Pushnotification"><dir name="Block"><dir name="Adminhtml"><file name="Pushnotificationbackend.php" hash="6b9e143ee7b5fe4fc2642eee977b44bf"/></dir></dir><dir name="Helper"><file name="Data.php" hash="c60f7196c3b01881dfe079aec2fad39f"/></dir><dir name="Model"><dir name="Entity"><file name="Resource.php" hash="93b6a261762541433fa601aefb60d0a7"/></dir><dir name="Mysql4"><dir name="Pushnotification"><file name="Collection.php" hash="392612adedcb14ec5dcaaa4ea9858091"/></dir><file name="Pushnotification.php" hash="77f6cadb7682377a1de6b275310c1cf6"/></dir><file name="Pushnotification.php" hash="ad5fe0f74049c61402ff99fc32d8164a"/><dir name="System"><dir name="Config"><dir name="Backend"><file name="File.php" hash="d7c74e49b78bb9da3453bd5f414a445f"/><file name="Image.php" hash="e1d98dbf511fe16581b37a8b7b43f5b4"/><file name="Iosmode.php" hash="ff1794ef4844019b7af64192fbd4e122"/></dir></dir></dir></dir><dir name="controllers"><dir name="Adminhtml"><file name="PushnotificationbackendController.php" hash="ec4ebd0ad1cfee78d2e67a69698a14e5"/></dir></dir><dir name="etc"><file name="config.xml" hash="f62215f94167b81c5f73aea794a334c4"/><file name="system.xml" hash="23a622dec8250a355bbaed9e83f1f82d"/></dir><dir name="sql"><dir name="pushnotification_setup"><file name="mysql4-upgrade-0.1.5-0.1.6.php" hash="418e997bb72afa725389593d4ca2f111"/></dir></dir></dir><dir name="Sociallogin"><dir name="Helper"><file name="Data.php" hash="8965f0b6a0127d0965d99987aa0a300c"/></dir><dir name="Model"><dir name="Mysql4"><file name="Sociallogin.php" hash="b881bc47c5ee70b1c4c02b59501ffbc5"/></dir><file name="Sociallogin.php" hash="0ba90dadb0f34528c2296704c5cea233"/></dir><dir name="etc"><file name="config.xml" hash="eac1dc2364bc283a9cd5326eb7e852a9"/></dir><dir name="sql"><dir name="sociallogin_setup"><file name="mysql4-install-0.1.0.php" hash="163332cb130dae297af332cbefde58f3"/></dir></dir></dir></dir></target><target name="magedesign"><dir><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="template"><dir name="pushnotification"><file name="pushnotificationbackend.phtml" hash="138add7171fdd7fb326abc4a4f9dbe5a"/></dir><dir name="connector"><file name="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>
|
skin/adminhtml/default/default/images/magentomobileshop/magento_logo.png
ADDED
Binary file
|