Version Notes
-Bug Fixing
-Notification Issue
Download this release
Release Info
Developer | Biztech |
Extension | magento_mobile_assistant_manager |
Version | 0.1.7 |
Comparing to | |
See all releases |
Code changes from version 0.1.6 to 0.1.7
- app/code/local/Biztech/Mobileassistant/Helper/Data.php +9 -0
- app/code/local/Biztech/Mobileassistant/Model/Observer.php +53 -48
- app/code/local/Biztech/Mobileassistant/controllers/OrderController.php +3 -3
- app/code/local/Biztech/Mobileassistant/etc/config.xml +151 -151
- app/etc/modules/Biztech_Mobileassistant.xml +1 -1
- package.xml +6 -5
app/code/local/Biztech/Mobileassistant/Helper/Data.php
CHANGED
@@ -23,6 +23,15 @@
|
|
23 |
|
24 |
}
|
25 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
26 |
public function isEnable()
|
27 |
{
|
28 |
return Mage::getStoreConfig('mobileassistant/mobileassistant_general/enabled');
|
23 |
|
24 |
}
|
25 |
|
26 |
+
public function getActualOrderDate($updated_date)
|
27 |
+
{
|
28 |
+
$date = Mage::app()->getLocale()->date(strtotime($updated_date));
|
29 |
+
$timestamp = $date->get(Zend_Date::TIMESTAMP) + $date->get(Zend_Date::TIMEZONE_SECS);
|
30 |
+
$updated_date = date("Y-m-d H:i:s", $timestamp);
|
31 |
+
return $updated_date;
|
32 |
+
|
33 |
+
}
|
34 |
+
|
35 |
public function isEnable()
|
36 |
{
|
37 |
return Mage::getStoreConfig('mobileassistant/mobileassistant_general/enabled');
|
app/code/local/Biztech/Mobileassistant/Model/Observer.php
CHANGED
@@ -1,48 +1,53 @@
|
|
1 |
-
<?php
|
2 |
-
class Biztech_Mobileassistant_Model_Observer
|
3 |
-
{
|
4 |
-
private static $_handleCustomerFirstOrderCounter = 1;
|
5 |
-
private static $_handleCustomerFirstRegisterNotificationCounter = 1;
|
6 |
-
public function sales_order_save_after(Varien_Event_Observer $observer)
|
7 |
-
{
|
8 |
-
|
9 |
-
|
10 |
-
|
11 |
-
|
12 |
-
|
13 |
-
|
14 |
-
|
15 |
-
|
16 |
-
|
17 |
-
$
|
18 |
-
|
19 |
-
|
20 |
-
|
21 |
-
|
22 |
-
|
23 |
-
|
24 |
-
|
25 |
-
|
26 |
-
|
27 |
-
|
28 |
-
|
29 |
-
|
30 |
-
|
31 |
-
|
32 |
-
|
33 |
-
|
34 |
-
|
35 |
-
|
36 |
-
|
37 |
-
|
38 |
-
|
39 |
-
|
40 |
-
|
41 |
-
|
42 |
-
|
43 |
-
|
44 |
-
|
45 |
-
|
46 |
-
|
47 |
-
|
48 |
-
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
class Biztech_Mobileassistant_Model_Observer
|
3 |
+
{
|
4 |
+
private static $_handleCustomerFirstOrderCounter = 1;
|
5 |
+
private static $_handleCustomerFirstRegisterNotificationCounter = 1;
|
6 |
+
public function sales_order_save_after(Varien_Event_Observer $observer)
|
7 |
+
{
|
8 |
+
if(Mage::getStoreConfig('mobileassistant/mobileassistant_general/enabled')){
|
9 |
+
|
10 |
+
$action = Mage::app()->getFrontController()->getAction();
|
11 |
+
if ($action->getFullActionName() == 'checkout_onepage_saveOrder')
|
12 |
+
{
|
13 |
+
if (self::$_handleCustomerFirstOrderCounter > 1) {
|
14 |
+
return $this;
|
15 |
+
}
|
16 |
+
self::$_handleCustomerFirstOrderCounter++;
|
17 |
+
$result = Mage::helper('mobileassistant')->pushNotification('order',$observer->getEvent()->getOrder()->getId());
|
18 |
+
|
19 |
+
$quoteId = $observer->getEvent()->getOrder()->getData('quote_id');
|
20 |
+
$quote = Mage::getModel('sales/quote')->load($quoteId);
|
21 |
+
$method = $quote->getCheckoutMethod(true);
|
22 |
+
|
23 |
+
if ($method=='register'){
|
24 |
+
Mage::dispatchEvent('customer_register_checkout',
|
25 |
+
array(
|
26 |
+
'customer' => $observer->getEvent()->getOrder()->getCustomer()
|
27 |
+
)
|
28 |
+
);
|
29 |
+
}
|
30 |
+
}
|
31 |
+
}
|
32 |
+
}
|
33 |
+
|
34 |
+
public function customerRegisterNotification(Varien_Event_Observer $observer){
|
35 |
+
if(Mage::getStoreConfig('mobileassistant/mobileassistant_general/enabled')){
|
36 |
+
$customer = $observer->getEvent()->getCustomer();
|
37 |
+
if ($customer){
|
38 |
+
$customer_id = $customer->getId();
|
39 |
+
}
|
40 |
+
if ($customer_id){
|
41 |
+
$result = Mage::helper('mobileassistant')->pushNotification('customer',$customer_id);
|
42 |
+
}
|
43 |
+
}
|
44 |
+
}
|
45 |
+
|
46 |
+
public function customerRegisterNotificationCheckout(Varien_Event_Observer $observer){
|
47 |
+
$customer = $observer->getEvent()->getCustomer();
|
48 |
+
if ($customer){
|
49 |
+
$customer_id = $customer->getId();
|
50 |
+
$result = Mage::helper('mobileassistant')->pushNotification('customer',$customer_id);
|
51 |
+
}
|
52 |
+
}
|
53 |
+
}
|
app/code/local/Biztech/Mobileassistant/controllers/OrderController.php
CHANGED
@@ -37,7 +37,7 @@
|
|
37 |
'store_id' => $order->getStoreId(),
|
38 |
'customer_name' => $order->getBillingName(),
|
39 |
'status' => $order->getStatus(),
|
40 |
-
'order_date' =>
|
41 |
'grand_total' => Mage::helper('mobileassistant')->getPrice($order->getGrandTotal()),
|
42 |
'toal_qty' => Mage::getModel('sales/order')->load($order->getEntityId())->getTotalQtyOrdered()
|
43 |
);
|
@@ -106,7 +106,7 @@
|
|
106 |
'store_id' => $order->getStoreId(),
|
107 |
'customer_name' => $order->getBillingName(),
|
108 |
'status' => $order->getStatus(),
|
109 |
-
'order_date' =>
|
110 |
'grand_total' => Mage::helper('mobileassistant')->getPrice($order->getGrandTotal()),
|
111 |
'toal_qty' => Mage::getModel('sales/order')->load($order->getEntityId())->getTotalQtyOrdered()
|
112 |
);
|
@@ -137,7 +137,7 @@
|
|
137 |
'entity_id' => $order->getEntityId(),
|
138 |
'increment_id' => $order->getIncrementId(),
|
139 |
'status' => $order->getStatus(),
|
140 |
-
'order_date' =>
|
141 |
'total_qty' => $order->getTotalQtyOrdered(),
|
142 |
'grand_total' => Mage::helper('mobileassistant')->getPrice($order->getGrandTotal()),
|
143 |
'sub_total' => Mage::helper('mobileassistant')->getPrice($order->getSubtotal()),
|
37 |
'store_id' => $order->getStoreId(),
|
38 |
'customer_name' => $order->getBillingName(),
|
39 |
'status' => $order->getStatus(),
|
40 |
+
'order_date' => Mage::helper('mobileassistant')->getActualOrderDate($order->getCreatedAt()),
|
41 |
'grand_total' => Mage::helper('mobileassistant')->getPrice($order->getGrandTotal()),
|
42 |
'toal_qty' => Mage::getModel('sales/order')->load($order->getEntityId())->getTotalQtyOrdered()
|
43 |
);
|
106 |
'store_id' => $order->getStoreId(),
|
107 |
'customer_name' => $order->getBillingName(),
|
108 |
'status' => $order->getStatus(),
|
109 |
+
'order_date' => Mage::helper('mobileassistant')->getActualOrderDate($order->getCreatedAt()),
|
110 |
'grand_total' => Mage::helper('mobileassistant')->getPrice($order->getGrandTotal()),
|
111 |
'toal_qty' => Mage::getModel('sales/order')->load($order->getEntityId())->getTotalQtyOrdered()
|
112 |
);
|
137 |
'entity_id' => $order->getEntityId(),
|
138 |
'increment_id' => $order->getIncrementId(),
|
139 |
'status' => $order->getStatus(),
|
140 |
+
'order_date' => Mage::helper('mobileassistant')->getActualOrderDate($order->getCreatedAt()),
|
141 |
'total_qty' => $order->getTotalQtyOrdered(),
|
142 |
'grand_total' => Mage::helper('mobileassistant')->getPrice($order->getGrandTotal()),
|
143 |
'sub_total' => Mage::helper('mobileassistant')->getPrice($order->getSubtotal()),
|
app/code/local/Biztech/Mobileassistant/etc/config.xml
CHANGED
@@ -1,152 +1,152 @@
|
|
1 |
-
<?xml version="1.0"?>
|
2 |
-
<!--
|
3 |
-
/**
|
4 |
-
* @category Biztech
|
5 |
-
* @package Biztech_Mobileassistant
|
6 |
-
* @author ModuleCreator
|
7 |
-
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
8 |
-
*/
|
9 |
-
-->
|
10 |
-
<config>
|
11 |
-
<modules>
|
12 |
-
<Biztech_Mobileassistant>
|
13 |
-
<version>0.1.
|
14 |
-
</Biztech_Mobileassistant>
|
15 |
-
</modules>
|
16 |
-
<frontend>
|
17 |
-
<routers>
|
18 |
-
<mobileassistant>
|
19 |
-
<use>standard</use>
|
20 |
-
<args>
|
21 |
-
<module>Biztech_Mobileassistant</module>
|
22 |
-
<frontName>mobileassistant</frontName>
|
23 |
-
</args>
|
24 |
-
</mobileassistant>
|
25 |
-
</routers>
|
26 |
-
<layout>
|
27 |
-
<updates>
|
28 |
-
<mobileassistant>
|
29 |
-
<file>mobileassistant.xml</file>
|
30 |
-
</mobileassistant>
|
31 |
-
</updates>
|
32 |
-
</layout>
|
33 |
-
</frontend>
|
34 |
-
<admin>
|
35 |
-
<routers>
|
36 |
-
<mobileassistant>
|
37 |
-
<use>admin</use>
|
38 |
-
<args>
|
39 |
-
<module>Biztech_Mobileassistant</module>
|
40 |
-
<frontName>mobileassistant</frontName>
|
41 |
-
</args>
|
42 |
-
</mobileassistant>
|
43 |
-
</routers>
|
44 |
-
</admin>
|
45 |
-
<adminhtml>
|
46 |
-
<acl>
|
47 |
-
<resources>
|
48 |
-
<all>
|
49 |
-
<title>Allow Everything</title>
|
50 |
-
</all>
|
51 |
-
<admin>
|
52 |
-
<children>
|
53 |
-
<Biztech_Mobileassistant>
|
54 |
-
<title>Mobileassistant Module</title>
|
55 |
-
<sort_order>10</sort_order>
|
56 |
-
</Biztech_Mobileassistant>
|
57 |
-
<system>
|
58 |
-
<children>
|
59 |
-
<config>
|
60 |
-
<children>
|
61 |
-
<mobileassistant>
|
62 |
-
<title>Mobileassistant</title>
|
63 |
-
</mobileassistant>
|
64 |
-
</children>
|
65 |
-
</config>
|
66 |
-
</children>
|
67 |
-
</system>
|
68 |
-
</children>
|
69 |
-
</admin>
|
70 |
-
</resources>
|
71 |
-
</acl>
|
72 |
-
<layout>
|
73 |
-
<updates>
|
74 |
-
<mobileassistant>
|
75 |
-
<file>mobileassistant.xml</file>
|
76 |
-
</mobileassistant>
|
77 |
-
</updates>
|
78 |
-
</layout>
|
79 |
-
</adminhtml>
|
80 |
-
<global>
|
81 |
-
<models>
|
82 |
-
<mobileassistant>
|
83 |
-
<class>Biztech_Mobileassistant_Model</class>
|
84 |
-
<resourceModel>mobileassistant_mysql4</resourceModel>
|
85 |
-
</mobileassistant>
|
86 |
-
<mobileassistant_mysql4>
|
87 |
-
<class>Biztech_Mobileassistant_Model_Mysql4</class>
|
88 |
-
<entities>
|
89 |
-
<mobileassistant>
|
90 |
-
<table>mobileassistant</table>
|
91 |
-
</mobileassistant>
|
92 |
-
</entities>
|
93 |
-
</mobileassistant_mysql4>
|
94 |
-
</models>
|
95 |
-
<resources>
|
96 |
-
<mobileassistant_setup>
|
97 |
-
<setup>
|
98 |
-
<module>Biztech_Mobileassistant</module>
|
99 |
-
</setup>
|
100 |
-
<connection>
|
101 |
-
<use>core_setup</use>
|
102 |
-
</connection>
|
103 |
-
</mobileassistant_setup>
|
104 |
-
<mobileassistant_write>
|
105 |
-
<connection>
|
106 |
-
<use>core_write</use>
|
107 |
-
</connection>
|
108 |
-
</mobileassistant_write>
|
109 |
-
<mobileassistant_read>
|
110 |
-
<connection>
|
111 |
-
<use>core_read</use>
|
112 |
-
</connection>
|
113 |
-
</mobileassistant_read>
|
114 |
-
</resources>
|
115 |
-
<blocks>
|
116 |
-
<mobileassistant>
|
117 |
-
<class>Biztech_Mobileassistant_Block</class>
|
118 |
-
</mobileassistant>
|
119 |
-
</blocks>
|
120 |
-
<helpers>
|
121 |
-
<mobileassistant>
|
122 |
-
<class>Biztech_Mobileassistant_Helper</class>
|
123 |
-
</mobileassistant>
|
124 |
-
</helpers>
|
125 |
-
<events>
|
126 |
-
<sales_order_save_after>
|
127 |
-
<observers>
|
128 |
-
<mobileassistant>
|
129 |
-
<class>mobileassistant/observer</class>
|
130 |
-
<method>sales_order_save_after</method>
|
131 |
-
</mobileassistant>
|
132 |
-
</observers>
|
133 |
-
</sales_order_save_after>
|
134 |
-
<customer_register_success>
|
135 |
-
<observers>
|
136 |
-
<mobileassistant_customer_notification_checkout>
|
137 |
-
<class>mobileassistant/observer</class>
|
138 |
-
<method>customerRegisterNotification</method>
|
139 |
-
</mobileassistant_customer_notification_checkout>
|
140 |
-
</observers>
|
141 |
-
</customer_register_success>
|
142 |
-
<customer_register_checkout>
|
143 |
-
<observers>
|
144 |
-
<customer_register_checkout>
|
145 |
-
<class>mobileassistant/observer</class>
|
146 |
-
<method>customerRegisterNotificationCheckout</method>
|
147 |
-
</customer_register_checkout>
|
148 |
-
</observers>
|
149 |
-
</customer_register_checkout>
|
150 |
-
</events>
|
151 |
-
</global>
|
152 |
</config>
|
1 |
+
<?xml version="1.0"?>
|
2 |
+
<!--
|
3 |
+
/**
|
4 |
+
* @category Biztech
|
5 |
+
* @package Biztech_Mobileassistant
|
6 |
+
* @author ModuleCreator
|
7 |
+
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
8 |
+
*/
|
9 |
+
-->
|
10 |
+
<config>
|
11 |
+
<modules>
|
12 |
+
<Biztech_Mobileassistant>
|
13 |
+
<version>0.1.7</version>
|
14 |
+
</Biztech_Mobileassistant>
|
15 |
+
</modules>
|
16 |
+
<frontend>
|
17 |
+
<routers>
|
18 |
+
<mobileassistant>
|
19 |
+
<use>standard</use>
|
20 |
+
<args>
|
21 |
+
<module>Biztech_Mobileassistant</module>
|
22 |
+
<frontName>mobileassistant</frontName>
|
23 |
+
</args>
|
24 |
+
</mobileassistant>
|
25 |
+
</routers>
|
26 |
+
<layout>
|
27 |
+
<updates>
|
28 |
+
<mobileassistant>
|
29 |
+
<file>mobileassistant.xml</file>
|
30 |
+
</mobileassistant>
|
31 |
+
</updates>
|
32 |
+
</layout>
|
33 |
+
</frontend>
|
34 |
+
<admin>
|
35 |
+
<routers>
|
36 |
+
<mobileassistant>
|
37 |
+
<use>admin</use>
|
38 |
+
<args>
|
39 |
+
<module>Biztech_Mobileassistant</module>
|
40 |
+
<frontName>mobileassistant</frontName>
|
41 |
+
</args>
|
42 |
+
</mobileassistant>
|
43 |
+
</routers>
|
44 |
+
</admin>
|
45 |
+
<adminhtml>
|
46 |
+
<acl>
|
47 |
+
<resources>
|
48 |
+
<all>
|
49 |
+
<title>Allow Everything</title>
|
50 |
+
</all>
|
51 |
+
<admin>
|
52 |
+
<children>
|
53 |
+
<Biztech_Mobileassistant>
|
54 |
+
<title>Mobileassistant Module</title>
|
55 |
+
<sort_order>10</sort_order>
|
56 |
+
</Biztech_Mobileassistant>
|
57 |
+
<system>
|
58 |
+
<children>
|
59 |
+
<config>
|
60 |
+
<children>
|
61 |
+
<mobileassistant>
|
62 |
+
<title>Mobileassistant</title>
|
63 |
+
</mobileassistant>
|
64 |
+
</children>
|
65 |
+
</config>
|
66 |
+
</children>
|
67 |
+
</system>
|
68 |
+
</children>
|
69 |
+
</admin>
|
70 |
+
</resources>
|
71 |
+
</acl>
|
72 |
+
<layout>
|
73 |
+
<updates>
|
74 |
+
<mobileassistant>
|
75 |
+
<file>mobileassistant.xml</file>
|
76 |
+
</mobileassistant>
|
77 |
+
</updates>
|
78 |
+
</layout>
|
79 |
+
</adminhtml>
|
80 |
+
<global>
|
81 |
+
<models>
|
82 |
+
<mobileassistant>
|
83 |
+
<class>Biztech_Mobileassistant_Model</class>
|
84 |
+
<resourceModel>mobileassistant_mysql4</resourceModel>
|
85 |
+
</mobileassistant>
|
86 |
+
<mobileassistant_mysql4>
|
87 |
+
<class>Biztech_Mobileassistant_Model_Mysql4</class>
|
88 |
+
<entities>
|
89 |
+
<mobileassistant>
|
90 |
+
<table>mobileassistant</table>
|
91 |
+
</mobileassistant>
|
92 |
+
</entities>
|
93 |
+
</mobileassistant_mysql4>
|
94 |
+
</models>
|
95 |
+
<resources>
|
96 |
+
<mobileassistant_setup>
|
97 |
+
<setup>
|
98 |
+
<module>Biztech_Mobileassistant</module>
|
99 |
+
</setup>
|
100 |
+
<connection>
|
101 |
+
<use>core_setup</use>
|
102 |
+
</connection>
|
103 |
+
</mobileassistant_setup>
|
104 |
+
<mobileassistant_write>
|
105 |
+
<connection>
|
106 |
+
<use>core_write</use>
|
107 |
+
</connection>
|
108 |
+
</mobileassistant_write>
|
109 |
+
<mobileassistant_read>
|
110 |
+
<connection>
|
111 |
+
<use>core_read</use>
|
112 |
+
</connection>
|
113 |
+
</mobileassistant_read>
|
114 |
+
</resources>
|
115 |
+
<blocks>
|
116 |
+
<mobileassistant>
|
117 |
+
<class>Biztech_Mobileassistant_Block</class>
|
118 |
+
</mobileassistant>
|
119 |
+
</blocks>
|
120 |
+
<helpers>
|
121 |
+
<mobileassistant>
|
122 |
+
<class>Biztech_Mobileassistant_Helper</class>
|
123 |
+
</mobileassistant>
|
124 |
+
</helpers>
|
125 |
+
<events>
|
126 |
+
<sales_order_save_after>
|
127 |
+
<observers>
|
128 |
+
<mobileassistant>
|
129 |
+
<class>mobileassistant/observer</class>
|
130 |
+
<method>sales_order_save_after</method>
|
131 |
+
</mobileassistant>
|
132 |
+
</observers>
|
133 |
+
</sales_order_save_after>
|
134 |
+
<customer_register_success>
|
135 |
+
<observers>
|
136 |
+
<mobileassistant_customer_notification_checkout>
|
137 |
+
<class>mobileassistant/observer</class>
|
138 |
+
<method>customerRegisterNotification</method>
|
139 |
+
</mobileassistant_customer_notification_checkout>
|
140 |
+
</observers>
|
141 |
+
</customer_register_success>
|
142 |
+
<customer_register_checkout>
|
143 |
+
<observers>
|
144 |
+
<customer_register_checkout>
|
145 |
+
<class>mobileassistant/observer</class>
|
146 |
+
<method>customerRegisterNotificationCheckout</method>
|
147 |
+
</customer_register_checkout>
|
148 |
+
</observers>
|
149 |
+
</customer_register_checkout>
|
150 |
+
</events>
|
151 |
+
</global>
|
152 |
</config>
|
app/etc/modules/Biztech_Mobileassistant.xml
CHANGED
@@ -10,7 +10,7 @@
|
|
10 |
<config>
|
11 |
<modules>
|
12 |
<Biztech_Mobileassistant>
|
13 |
-
<active>
|
14 |
<codePool>local</codePool>
|
15 |
</Biztech_Mobileassistant>
|
16 |
</modules>
|
10 |
<config>
|
11 |
<modules>
|
12 |
<Biztech_Mobileassistant>
|
13 |
+
<active>false</active>
|
14 |
<codePool>local</codePool>
|
15 |
</Biztech_Mobileassistant>
|
16 |
</modules>
|
package.xml
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>magento_mobile_assistant_manager</name>
|
4 |
-
<version>0.1.
|
5 |
<stability>stable</stability>
|
6 |
<license uri="http://opensource.org/licenses/osl-3.0.php">OSL v3.0</license>
|
7 |
<channel>community</channel>
|
@@ -25,11 +25,12 @@ To ensure smooth working of this extension you need to download this extension i
|
|
25 |
Application Download Link:
|
26 |
https://itunes.apple.com/us/app/magentomobilemanager/id695074519?mt=8&ign-mpt=uo%3D4
|
27 |
</description>
|
28 |
-
<notes>-Bug Fixing
|
|
|
29 |
<authors><author><name>Biztech</name><user>biztechcon</user><email>sales@biztechconsultancy.com</email></author></authors>
|
30 |
-
<date>
|
31 |
-
<time>
|
32 |
-
<contents><target name="mageetc"><dir name="modules"><file name="Biztech_Mobileassistant.xml" hash="
|
33 |
<compatible/>
|
34 |
<dependencies><required><php><min>5.3.0</min><max>6.0.0</max></php></required></dependencies>
|
35 |
</package>
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>magento_mobile_assistant_manager</name>
|
4 |
+
<version>0.1.7</version>
|
5 |
<stability>stable</stability>
|
6 |
<license uri="http://opensource.org/licenses/osl-3.0.php">OSL v3.0</license>
|
7 |
<channel>community</channel>
|
25 |
Application Download Link:
|
26 |
https://itunes.apple.com/us/app/magentomobilemanager/id695074519?mt=8&ign-mpt=uo%3D4
|
27 |
</description>
|
28 |
+
<notes>-Bug Fixing
|
29 |
+
-Notification Issue</notes>
|
30 |
<authors><author><name>Biztech</name><user>biztechcon</user><email>sales@biztechconsultancy.com</email></author></authors>
|
31 |
+
<date>2015-03-11</date>
|
32 |
+
<time>07:47:04</time>
|
33 |
+
<contents><target name="mageetc"><dir name="modules"><file name="Biztech_Mobileassistant.xml" hash="2285d9a2952551fbe3db104941a0a8c8"/><file name="Biztech_All.xml" hash="f4c3b9c029e56da8f09d7d71336c00f7"/></dir></target><target name="magelocal"><dir name="Biztech"><dir name="Mobileassistant"><dir name="Helper"><file name="Data.php" hash="1ab379facebede475163d34daf031ef2"/></dir><dir name="Model"><dir name="Mobileassistant"><file name="Api.php" hash="57926db8e2acff7b284088500ed7302d"/></dir><file name="Mobileassistant.php" hash="3f221d0fa184e94ec3004bb0256abbf3"/><dir name="Mysql4"><dir name="Mobileassistant"><file name="Collection.php" hash="373ce57310145f3d007952e8c7beffbf"/></dir><file name="Mobileassistant.php" hash="3ef12554d281a2fa7ef47943763be76d"/></dir><file name="Observer.php" hash="0be4e676f0cee9f06e36c39d38993f05"/></dir><dir name="controllers"><file name="CustomerController.php" hash="aaf24e12476bd8e91d19b0f68faf9ea4"/><file name="DashboardController.php" hash="54bd48f6fe2c6ce6182543db3c2d29d1"/><file name="IndexController.php" hash="36864c2030911b40a39aed1302517b33"/><file name="OrderController.php" hash="956ef3a2b8c5a9a162069b774804113a"/><file name="ProductController.php" hash="d061880b478856434353fda608e8e0c9"/></dir><dir name="etc"><file name="api.xml" hash="f7d93508ce53982484f0d1f9ab3a17cd"/><file name="config.xml" hash="4253d3bd13d131be1b33b1606590dbd0"/><file name="system.xml" hash="4e573f38da2155aff11f0e73b632c2b4"/></dir><dir name="sql"><dir name="mobileassistant_setup"><file name="mysql4-install-0.1.0.php" hash="c25eff9c480cc82b6edfaef1e87e27a7"/><file name="mysql4-upgrade-0.1.0-0.1.4.php" hash="9b2df01d956af38e26546bdb8e64d389"/><file name="mysql4-upgrade-0.1.4-0.1.5.php" hash="fc505b6c69fbd4d9070ce2a0e6f331f5"/><file name="mysql4-upgrade-0.1.5-0.1.6.php" hash="9b2df01d956af38e26546bdb8e64d389"/></dir></dir></dir><dir name="All"><dir name="Helper"><file name="Data.php" hash="e856726fd089e7f73ca7de450b696419"/></dir><dir name="Model"><file name="All.php" hash="a9aeeb9c6d7be9cf20414f405efc878d"/><dir name="Mysql4"><dir name="All"><file name="Collection.php" hash="a1909236183d126f38e628b85bb57e81"/></dir><file name="All.php" hash="f02542393eb26eadfb9b92d901d2ac12"/></dir><dir name="Source"><dir name="Updates"><file name="Type.php" hash="fa695bf4764c2d93c7436ed54bde89ba"/></dir></dir><file name="Status.php" hash="30a6f0da7d9d45e1082da532d5f8dabc"/><file name="Update.php" hash="83ceddbab4d621545b9c7c4bccdec7c0"/></dir><dir name="etc"><file name="config.xml" hash="27e403cedb861da03753d28527d9c664"/><file name="system.xml" hash="17262087dc933d934e09ac04cafb4c51"/></dir></dir></dir></target><target name="mage"><dir name="lib"><dir name="mobileassistant"><file name="pushcert.pem" hash="37a517e3bdd6ee2e4c61af6699f7f21b"/></dir></dir></target></contents>
|
34 |
<compatible/>
|
35 |
<dependencies><required><php><min>5.3.0</min><max>6.0.0</max></php></required></dependencies>
|
36 |
</package>
|