Version Notes
Fixes bug with Magento compiler
Download this release
Release Info
Developer | Olark Live Chat |
Extension | Olark_Chatbox |
Version | 1.0.9 |
Comparing to | |
See all releases |
Code changes from version 1.0.8 to 1.0.9
app/code/community/Olark/Chatbox/.DS_Store
ADDED
Binary file
|
app/code/community/Olark/Chatbox/Block/.Chatbox.php.swp
ADDED
Binary file
|
app/code/community/Olark/Chatbox/Block/Chatbox.php
CHANGED
@@ -133,11 +133,12 @@ class Olark_Chatbox_Block_Chatbox
|
|
133 |
}
|
134 |
|
135 |
// Capture extra Magento-specific data for Olark config.
|
|
|
136 |
$magentoData = array(
|
137 |
'total' => $totalValueOfItems,
|
138 |
'formatted_total' => formatPrice($totalValueOfItems),
|
139 |
'extra_items' => $extraItems,
|
140 |
-
'recent_events' => $
|
141 |
);
|
142 |
|
143 |
// Build and return HTML that represents the Olark embed and
|
133 |
}
|
134 |
|
135 |
// Capture extra Magento-specific data for Olark config.
|
136 |
+
$recentEvents = $this->_popRecentEvents();
|
137 |
$magentoData = array(
|
138 |
'total' => $totalValueOfItems,
|
139 |
'formatted_total' => formatPrice($totalValueOfItems),
|
140 |
'extra_items' => $extraItems,
|
141 |
+
'recent_events' => $recentEvents
|
142 |
);
|
143 |
|
144 |
// Build and return HTML that represents the Olark embed and
|
app/code/community/Olark/Chatbox/etc/config.sunir
ADDED
@@ -0,0 +1,259 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?xml version="1.0"?>
|
2 |
+
<!--
|
3 |
+
/**
|
4 |
+
* Widget that adds Olark Live Chat to Magento stores.
|
5 |
+
*
|
6 |
+
* NOTICE OF LICENSE
|
7 |
+
*
|
8 |
+
* This source file is subject to the Academic Free License (AFL 3.0)
|
9 |
+
* that is bundled with this package in the file LICENSE_AFL.txt.
|
10 |
+
* It is also available through the world-wide-web at this URL:
|
11 |
+
* http://opensource.org/licenses/afl-3.0.php
|
12 |
+
* If you did not receive a copy of the license and are unable to
|
13 |
+
* obtain it through the world-wide-web, please send an email
|
14 |
+
* to support@olark.com so we can send you a copy immediately.
|
15 |
+
*
|
16 |
+
* @category Olark
|
17 |
+
* @package Olark_Chatbox
|
18 |
+
* @copyright Copyright 2012. Habla, Inc. (http://www.olark.com)
|
19 |
+
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
20 |
+
*/
|
21 |
+
-->
|
22 |
+
<config>
|
23 |
+
<modules>
|
24 |
+
<Olark_Chatbox>
|
25 |
+
<version>1.0.7</version>
|
26 |
+
<cache_lifetime>0</cache_lifetime>
|
27 |
+
</Olark_Chatbox>
|
28 |
+
</modules>
|
29 |
+
<global>
|
30 |
+
<helpers>
|
31 |
+
<chatbox>
|
32 |
+
<class>Olark_Chatbox_Helper</class>
|
33 |
+
</chatbox>
|
34 |
+
</helpers>
|
35 |
+
<blocks>
|
36 |
+
<chatbox>
|
37 |
+
<class>Olark_Chatbox_Block</class>
|
38 |
+
</chatbox>
|
39 |
+
</blocks>
|
40 |
+
<models>
|
41 |
+
<olark_chatbox_model_observer>
|
42 |
+
<class>Olark_Chatbox_Model_Observer</class>
|
43 |
+
</olark_chatbox_model_observer>
|
44 |
+
</models>
|
45 |
+
<events>
|
46 |
+
|
47 |
+
<checkout_quote_destroy>
|
48 |
+
<observers>
|
49 |
+
<olark_chatbox_checkout_quote_destroy>
|
50 |
+
<type>singleton</type>
|
51 |
+
<class>olark_chatbox_model_observer</class>
|
52 |
+
<method>recordEvent</method>
|
53 |
+
</olark_chatbox_checkout_quote_destroy>
|
54 |
+
</observers>
|
55 |
+
</checkout_quote_destroy>
|
56 |
+
|
57 |
+
<controller_action_predispatch_checkout_onepage_index>
|
58 |
+
<observers>
|
59 |
+
<olark_chatbox_controller_action_predispatch_checkout_onepage_index>
|
60 |
+
<type>singleton</type>
|
61 |
+
<class>olark_chatbox_model_observer</class>
|
62 |
+
<method>recordEvent</method>
|
63 |
+
</olark_chatbox_controller_action_predispatch_checkout_onepage_index>
|
64 |
+
</observers>
|
65 |
+
</controller_action_predispatch_checkout_onepage_index>
|
66 |
+
|
67 |
+
<controller_action_predispatch_checkout_onepage_success>
|
68 |
+
<observers>
|
69 |
+
<olark_chatbox_controller_action_predispatch_checkout_onepage_success>
|
70 |
+
<type>singleton</type>
|
71 |
+
<class>olark_chatbox_model_observer</class>
|
72 |
+
<method>recordEvent</method>
|
73 |
+
</olark_chatbox_controller_action_predispatch_checkout_onepage_success>
|
74 |
+
</observers>
|
75 |
+
</controller_action_predispatch_checkout_onepage_success>
|
76 |
+
|
77 |
+
<controller_action_predispatch_checkout_multishipping_index>
|
78 |
+
<observers>
|
79 |
+
<olark_chatbox_controller_action_predispatch_checkout_multishipping_index>
|
80 |
+
<type>singleton</type>
|
81 |
+
<class>olark_chatbox_model_observer</class>
|
82 |
+
<method>recordEvent</method>
|
83 |
+
</olark_chatbox_controller_action_predispatch_checkout_multishipping_index>
|
84 |
+
</observers>
|
85 |
+
</controller_action_predispatch_checkout_multishipping_index>
|
86 |
+
|
87 |
+
<controller_action_predispatch_checkout_controller_action_index>
|
88 |
+
<observers>
|
89 |
+
<olark_chatbox_controller_action_predispatch_checkout_controller_action_index>
|
90 |
+
<type>singleton</type>
|
91 |
+
<class>olark_chatbox_model_observer</class>
|
92 |
+
<method>recordEvent</method>
|
93 |
+
</olark_chatbox_controller_action_predispatch_checkout_controller_action_index>
|
94 |
+
</observers>
|
95 |
+
</controller_action_predispatch_checkout_controller_action_index>
|
96 |
+
|
97 |
+
<googlecheckout_checkout_before>
|
98 |
+
<observers>
|
99 |
+
<olark_chatbox_googlecheckout_checkout_before>
|
100 |
+
<type>singleton</type>
|
101 |
+
<class>olark_chatbox_model_observer</class>
|
102 |
+
<method>recordEvent</method>
|
103 |
+
</olark_chatbox_googlecheckout_checkout_before>
|
104 |
+
</observers>
|
105 |
+
</googlecheckout_checkout_before>
|
106 |
+
|
107 |
+
<controller_action_layout_render_before_onestepcheckout_index_index>
|
108 |
+
<observers>
|
109 |
+
<olark_chatbox_controller_action_layout_render_before_onestepcheckout_index_index>
|
110 |
+
<type>singleton</type>
|
111 |
+
<class>olark_chatbox_model_observer</class>
|
112 |
+
<method>recordEvent</method>
|
113 |
+
</olark_chatbox_controller_action_layout_render_before_onestepcheckout_index_index>
|
114 |
+
</observers>
|
115 |
+
</controller_action_layout_render_before_onestepcheckout_index_index>
|
116 |
+
|
117 |
+
<checkout_type_onepage_save_order>
|
118 |
+
<observers>
|
119 |
+
<olark_chatbox_checkout_type_onepage_save_order>
|
120 |
+
<type>singleton</type>
|
121 |
+
<class>olark_chatbox_model_observer</class>
|
122 |
+
<method>recordEvent</method>
|
123 |
+
</olark_chatbox_checkout_type_onepage_save_order>
|
124 |
+
</observers>
|
125 |
+
</checkout_type_onepage_save_order>
|
126 |
+
|
127 |
+
<paypal_prepare_line_items>
|
128 |
+
<observers>
|
129 |
+
<olark_chatbox_paypal_prepare_line_items>
|
130 |
+
<type>singleton</type>
|
131 |
+
<class>olark_chatbox_model_observer</class>
|
132 |
+
<method>recordEvent</method>
|
133 |
+
</olark_chatbox_paypal_prepare_line_items>
|
134 |
+
</observers>
|
135 |
+
</paypal_prepare_line_items>
|
136 |
+
|
137 |
+
<sales_order_place_after>
|
138 |
+
<observers>
|
139 |
+
<olark_chatbox_sales_order_place_after>
|
140 |
+
<type>singleton</type>
|
141 |
+
<class>olark_chatbox_model_observer</class>
|
142 |
+
<method>recordEvent</method>
|
143 |
+
</olark_chatbox_sales_order_place_after>
|
144 |
+
</observers>
|
145 |
+
</sales_order_place_after>
|
146 |
+
|
147 |
+
<sales_quote_delete_after>
|
148 |
+
<observers>
|
149 |
+
<olark_chatbox_sales_quote_delete_after>
|
150 |
+
<type>singleton</type>
|
151 |
+
<class>olark_chatbox_model_observer</class>
|
152 |
+
<method>recordEvent</method>
|
153 |
+
</olark_chatbox_sales_quote_delete_after>
|
154 |
+
</observers>
|
155 |
+
</sales_quote_delete_after>
|
156 |
+
|
157 |
+
<checkout_type_onepage_save_order>
|
158 |
+
<observers>
|
159 |
+
<olark_chatbox_checkout_type_onepage_save_order>
|
160 |
+
<type>singleton</type>
|
161 |
+
<class>olark_chatbox_model_observer</class>
|
162 |
+
<method>recordEvent</method>
|
163 |
+
</olark_chatbox_checkout_type_onepage_save_order>
|
164 |
+
</observers>
|
165 |
+
</checkout_type_onepage_save_order>
|
166 |
+
|
167 |
+
<checkout_submit_all_after>
|
168 |
+
<observers>
|
169 |
+
<olark_chatbox_checkout_submit_all_after>
|
170 |
+
<type>singleton</type>
|
171 |
+
<class>olark_chatbox_model_observer</class>
|
172 |
+
<method>recordEvent</method>
|
173 |
+
</olark_chatbox_checkout_submit_all_after>
|
174 |
+
</observers>
|
175 |
+
</checkout_submit_all_after>
|
176 |
+
|
177 |
+
<sales_order_payment_cancel>
|
178 |
+
<observers>
|
179 |
+
<olark_chatbox_sales_order_payment_cancel>
|
180 |
+
<type>singleton</type>
|
181 |
+
<class>olark_chatbox_model_observer</class>
|
182 |
+
<method>recordEvent</method>
|
183 |
+
</olark_chatbox_sales_order_payment_cancel>
|
184 |
+
</observers>
|
185 |
+
</sales_order_payment_cancel>
|
186 |
+
|
187 |
+
<order_cancel_after>
|
188 |
+
<observers>
|
189 |
+
<olark_chatbox_order_cancel_after>
|
190 |
+
<type>singleton</type>
|
191 |
+
<class>olark_chatbox_model_observer</class>
|
192 |
+
<method>recordEvent</method>
|
193 |
+
</olark_chatbox_order_cancel_after>
|
194 |
+
</observers>
|
195 |
+
</order_cancel_after>
|
196 |
+
|
197 |
+
<sales_order_payment_cancel_invoice>
|
198 |
+
<observers>
|
199 |
+
<olark_chatbox_sales_order_payment_cancel_invoice>
|
200 |
+
<type>singleton</type>
|
201 |
+
<class>olark_chatbox_model_observer</class>
|
202 |
+
<method>recordEvent</method>
|
203 |
+
</olark_chatbox_sales_order_payment_cancel_invoice>
|
204 |
+
</observers>
|
205 |
+
</sales_order_payment_cancel_invoice>
|
206 |
+
|
207 |
+
<sales_order_payment_void>
|
208 |
+
<observers>
|
209 |
+
<olark_chatbox_sales_order_payment_void>
|
210 |
+
<type>singleton</type>
|
211 |
+
<class>olark_chatbox_model_observer</class>
|
212 |
+
<method>recordEvent</method>
|
213 |
+
</olark_chatbox_sales_order_payment_void>
|
214 |
+
</observers>
|
215 |
+
</sales_order_payment_void>
|
216 |
+
|
217 |
+
<sales_order_payment_refund>
|
218 |
+
<observers>
|
219 |
+
<olark_chatbox_sales_order_payment_refund>
|
220 |
+
<type>singleton</type>
|
221 |
+
<class>olark_chatbox_model_observer</class>
|
222 |
+
<method>recordEvent</method>
|
223 |
+
</olark_chatbox_sales_order_payment_refund>
|
224 |
+
</observers>
|
225 |
+
</sales_order_payment_refund>
|
226 |
+
|
227 |
+
<sales_order_payment_cancel>
|
228 |
+
<observers>
|
229 |
+
<olark_chatbox_sales_order_payment_cancel>
|
230 |
+
<type>singleton</type>
|
231 |
+
<class>olark_chatbox_model_observer</class>
|
232 |
+
<method>recordEvent</method>
|
233 |
+
</olark_chatbox_sales_order_payment_cancel>
|
234 |
+
</observers>
|
235 |
+
</sales_order_payment_cancel>
|
236 |
+
|
237 |
+
<sales_order_invoice_cancel>
|
238 |
+
<observers>
|
239 |
+
<olark_chatbox_sales_order_invoice_cancel>
|
240 |
+
<type>singleton</type>
|
241 |
+
<class>olark_chatbox_model_observer</class>
|
242 |
+
<method>recordEvent</method>
|
243 |
+
</olark_chatbox_sales_order_invoice_cancel>
|
244 |
+
</observers>
|
245 |
+
</sales_order_invoice_cancel>
|
246 |
+
|
247 |
+
<sales_order_item_cancel>
|
248 |
+
<observers>
|
249 |
+
<olark_chatbox_sales_order_item_cancel>
|
250 |
+
<type>singleton</type>
|
251 |
+
<class>olark_chatbox_model_observer</class>
|
252 |
+
<method>recordEvent</method>
|
253 |
+
</olark_chatbox_sales_order_item_cancel>
|
254 |
+
</observers>
|
255 |
+
</sales_order_item_cancel>
|
256 |
+
|
257 |
+
</events>
|
258 |
+
</global>
|
259 |
+
</config>
|
app/code/community/Olark/Chatbox/etc/config.xml
CHANGED
@@ -22,7 +22,7 @@
|
|
22 |
<config>
|
23 |
<modules>
|
24 |
<Olark_Chatbox>
|
25 |
-
<version>1.0.
|
26 |
<cache_lifetime>0</cache_lifetime>
|
27 |
</Olark_Chatbox>
|
28 |
</modules>
|
@@ -37,18 +37,13 @@
|
|
37 |
<class>Olark_Chatbox_Block</class>
|
38 |
</chatbox>
|
39 |
</blocks>
|
40 |
-
<models>
|
41 |
-
<olark_chatbox_model_observer>
|
42 |
-
<class>Olark_Chatbox_Model_Observer</class>
|
43 |
-
</olark_chatbox_model_observer>
|
44 |
-
</models>
|
45 |
<events>
|
46 |
|
47 |
<checkout_quote_destroy>
|
48 |
<observers>
|
49 |
<olark_chatbox_checkout_quote_destroy>
|
50 |
<type>singleton</type>
|
51 |
-
<class>
|
52 |
<method>recordEvent</method>
|
53 |
</olark_chatbox_checkout_quote_destroy>
|
54 |
</observers>
|
@@ -58,7 +53,7 @@
|
|
58 |
<observers>
|
59 |
<olark_chatbox_controller_action_predispatch_checkout_onepage_index>
|
60 |
<type>singleton</type>
|
61 |
-
<class>
|
62 |
<method>recordEvent</method>
|
63 |
</olark_chatbox_controller_action_predispatch_checkout_onepage_index>
|
64 |
</observers>
|
@@ -68,7 +63,7 @@
|
|
68 |
<observers>
|
69 |
<olark_chatbox_controller_action_predispatch_checkout_onepage_success>
|
70 |
<type>singleton</type>
|
71 |
-
<class>
|
72 |
<method>recordEvent</method>
|
73 |
</olark_chatbox_controller_action_predispatch_checkout_onepage_success>
|
74 |
</observers>
|
@@ -78,7 +73,7 @@
|
|
78 |
<observers>
|
79 |
<olark_chatbox_controller_action_predispatch_checkout_multishipping_index>
|
80 |
<type>singleton</type>
|
81 |
-
<class>
|
82 |
<method>recordEvent</method>
|
83 |
</olark_chatbox_controller_action_predispatch_checkout_multishipping_index>
|
84 |
</observers>
|
@@ -88,7 +83,7 @@
|
|
88 |
<observers>
|
89 |
<olark_chatbox_controller_action_predispatch_checkout_controller_action_index>
|
90 |
<type>singleton</type>
|
91 |
-
<class>
|
92 |
<method>recordEvent</method>
|
93 |
</olark_chatbox_controller_action_predispatch_checkout_controller_action_index>
|
94 |
</observers>
|
@@ -98,7 +93,7 @@
|
|
98 |
<observers>
|
99 |
<olark_chatbox_googlecheckout_checkout_before>
|
100 |
<type>singleton</type>
|
101 |
-
<class>
|
102 |
<method>recordEvent</method>
|
103 |
</olark_chatbox_googlecheckout_checkout_before>
|
104 |
</observers>
|
@@ -108,27 +103,17 @@
|
|
108 |
<observers>
|
109 |
<olark_chatbox_controller_action_layout_render_before_onestepcheckout_index_index>
|
110 |
<type>singleton</type>
|
111 |
-
<class>
|
112 |
<method>recordEvent</method>
|
113 |
</olark_chatbox_controller_action_layout_render_before_onestepcheckout_index_index>
|
114 |
</observers>
|
115 |
</controller_action_layout_render_before_onestepcheckout_index_index>
|
116 |
|
117 |
-
<checkout_type_onepage_save_order>
|
118 |
-
<observers>
|
119 |
-
<olark_chatbox_checkout_type_onepage_save_order>
|
120 |
-
<type>singleton</type>
|
121 |
-
<class>olark_chatbox_model_observer</class>
|
122 |
-
<method>recordEvent</method>
|
123 |
-
</olark_chatbox_checkout_type_onepage_save_order>
|
124 |
-
</observers>
|
125 |
-
</checkout_type_onepage_save_order>
|
126 |
-
|
127 |
<paypal_prepare_line_items>
|
128 |
<observers>
|
129 |
<olark_chatbox_paypal_prepare_line_items>
|
130 |
<type>singleton</type>
|
131 |
-
<class>
|
132 |
<method>recordEvent</method>
|
133 |
</olark_chatbox_paypal_prepare_line_items>
|
134 |
</observers>
|
@@ -138,7 +123,7 @@
|
|
138 |
<observers>
|
139 |
<olark_chatbox_sales_order_place_after>
|
140 |
<type>singleton</type>
|
141 |
-
<class>
|
142 |
<method>recordEvent</method>
|
143 |
</olark_chatbox_sales_order_place_after>
|
144 |
</observers>
|
@@ -148,7 +133,7 @@
|
|
148 |
<observers>
|
149 |
<olark_chatbox_sales_quote_delete_after>
|
150 |
<type>singleton</type>
|
151 |
-
<class>
|
152 |
<method>recordEvent</method>
|
153 |
</olark_chatbox_sales_quote_delete_after>
|
154 |
</observers>
|
@@ -158,7 +143,7 @@
|
|
158 |
<observers>
|
159 |
<olark_chatbox_checkout_type_onepage_save_order>
|
160 |
<type>singleton</type>
|
161 |
-
<class>
|
162 |
<method>recordEvent</method>
|
163 |
</olark_chatbox_checkout_type_onepage_save_order>
|
164 |
</observers>
|
@@ -168,7 +153,7 @@
|
|
168 |
<observers>
|
169 |
<olark_chatbox_checkout_submit_all_after>
|
170 |
<type>singleton</type>
|
171 |
-
<class>
|
172 |
<method>recordEvent</method>
|
173 |
</olark_chatbox_checkout_submit_all_after>
|
174 |
</observers>
|
@@ -178,7 +163,7 @@
|
|
178 |
<observers>
|
179 |
<olark_chatbox_sales_order_payment_cancel>
|
180 |
<type>singleton</type>
|
181 |
-
<class>
|
182 |
<method>recordEvent</method>
|
183 |
</olark_chatbox_sales_order_payment_cancel>
|
184 |
</observers>
|
@@ -188,7 +173,7 @@
|
|
188 |
<observers>
|
189 |
<olark_chatbox_order_cancel_after>
|
190 |
<type>singleton</type>
|
191 |
-
<class>
|
192 |
<method>recordEvent</method>
|
193 |
</olark_chatbox_order_cancel_after>
|
194 |
</observers>
|
@@ -198,7 +183,7 @@
|
|
198 |
<observers>
|
199 |
<olark_chatbox_sales_order_payment_cancel_invoice>
|
200 |
<type>singleton</type>
|
201 |
-
<class>
|
202 |
<method>recordEvent</method>
|
203 |
</olark_chatbox_sales_order_payment_cancel_invoice>
|
204 |
</observers>
|
@@ -208,7 +193,7 @@
|
|
208 |
<observers>
|
209 |
<olark_chatbox_sales_order_payment_void>
|
210 |
<type>singleton</type>
|
211 |
-
<class>
|
212 |
<method>recordEvent</method>
|
213 |
</olark_chatbox_sales_order_payment_void>
|
214 |
</observers>
|
@@ -218,7 +203,7 @@
|
|
218 |
<observers>
|
219 |
<olark_chatbox_sales_order_payment_refund>
|
220 |
<type>singleton</type>
|
221 |
-
<class>
|
222 |
<method>recordEvent</method>
|
223 |
</olark_chatbox_sales_order_payment_refund>
|
224 |
</observers>
|
@@ -228,7 +213,7 @@
|
|
228 |
<observers>
|
229 |
<olark_chatbox_sales_order_payment_cancel>
|
230 |
<type>singleton</type>
|
231 |
-
<class>
|
232 |
<method>recordEvent</method>
|
233 |
</olark_chatbox_sales_order_payment_cancel>
|
234 |
</observers>
|
@@ -238,7 +223,7 @@
|
|
238 |
<observers>
|
239 |
<olark_chatbox_sales_order_invoice_cancel>
|
240 |
<type>singleton</type>
|
241 |
-
<class>
|
242 |
<method>recordEvent</method>
|
243 |
</olark_chatbox_sales_order_invoice_cancel>
|
244 |
</observers>
|
@@ -248,7 +233,7 @@
|
|
248 |
<observers>
|
249 |
<olark_chatbox_sales_order_item_cancel>
|
250 |
<type>singleton</type>
|
251 |
-
<class>
|
252 |
<method>recordEvent</method>
|
253 |
</olark_chatbox_sales_order_item_cancel>
|
254 |
</observers>
|
22 |
<config>
|
23 |
<modules>
|
24 |
<Olark_Chatbox>
|
25 |
+
<version>1.0.9</version>
|
26 |
<cache_lifetime>0</cache_lifetime>
|
27 |
</Olark_Chatbox>
|
28 |
</modules>
|
37 |
<class>Olark_Chatbox_Block</class>
|
38 |
</chatbox>
|
39 |
</blocks>
|
|
|
|
|
|
|
|
|
|
|
40 |
<events>
|
41 |
|
42 |
<checkout_quote_destroy>
|
43 |
<observers>
|
44 |
<olark_chatbox_checkout_quote_destroy>
|
45 |
<type>singleton</type>
|
46 |
+
<class>Olark_Chatbox_Model_Observer</class>
|
47 |
<method>recordEvent</method>
|
48 |
</olark_chatbox_checkout_quote_destroy>
|
49 |
</observers>
|
53 |
<observers>
|
54 |
<olark_chatbox_controller_action_predispatch_checkout_onepage_index>
|
55 |
<type>singleton</type>
|
56 |
+
<class>Olark_Chatbox_Model_Observer</class>
|
57 |
<method>recordEvent</method>
|
58 |
</olark_chatbox_controller_action_predispatch_checkout_onepage_index>
|
59 |
</observers>
|
63 |
<observers>
|
64 |
<olark_chatbox_controller_action_predispatch_checkout_onepage_success>
|
65 |
<type>singleton</type>
|
66 |
+
<class>Olark_Chatbox_Model_Observer</class>
|
67 |
<method>recordEvent</method>
|
68 |
</olark_chatbox_controller_action_predispatch_checkout_onepage_success>
|
69 |
</observers>
|
73 |
<observers>
|
74 |
<olark_chatbox_controller_action_predispatch_checkout_multishipping_index>
|
75 |
<type>singleton</type>
|
76 |
+
<class>Olark_Chatbox_Model_Observer</class>
|
77 |
<method>recordEvent</method>
|
78 |
</olark_chatbox_controller_action_predispatch_checkout_multishipping_index>
|
79 |
</observers>
|
83 |
<observers>
|
84 |
<olark_chatbox_controller_action_predispatch_checkout_controller_action_index>
|
85 |
<type>singleton</type>
|
86 |
+
<class>Olark_Chatbox_Model_Observer</class>
|
87 |
<method>recordEvent</method>
|
88 |
</olark_chatbox_controller_action_predispatch_checkout_controller_action_index>
|
89 |
</observers>
|
93 |
<observers>
|
94 |
<olark_chatbox_googlecheckout_checkout_before>
|
95 |
<type>singleton</type>
|
96 |
+
<class>Olark_Chatbox_Model_Observer</class>
|
97 |
<method>recordEvent</method>
|
98 |
</olark_chatbox_googlecheckout_checkout_before>
|
99 |
</observers>
|
103 |
<observers>
|
104 |
<olark_chatbox_controller_action_layout_render_before_onestepcheckout_index_index>
|
105 |
<type>singleton</type>
|
106 |
+
<class>Olark_Chatbox_Model_Observer</class>
|
107 |
<method>recordEvent</method>
|
108 |
</olark_chatbox_controller_action_layout_render_before_onestepcheckout_index_index>
|
109 |
</observers>
|
110 |
</controller_action_layout_render_before_onestepcheckout_index_index>
|
111 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
112 |
<paypal_prepare_line_items>
|
113 |
<observers>
|
114 |
<olark_chatbox_paypal_prepare_line_items>
|
115 |
<type>singleton</type>
|
116 |
+
<class>Olark_Chatbox_Model_Observer</class>
|
117 |
<method>recordEvent</method>
|
118 |
</olark_chatbox_paypal_prepare_line_items>
|
119 |
</observers>
|
123 |
<observers>
|
124 |
<olark_chatbox_sales_order_place_after>
|
125 |
<type>singleton</type>
|
126 |
+
<class>Olark_Chatbox_Model_Observer</class>
|
127 |
<method>recordEvent</method>
|
128 |
</olark_chatbox_sales_order_place_after>
|
129 |
</observers>
|
133 |
<observers>
|
134 |
<olark_chatbox_sales_quote_delete_after>
|
135 |
<type>singleton</type>
|
136 |
+
<class>Olark_Chatbox_Model_Observer</class>
|
137 |
<method>recordEvent</method>
|
138 |
</olark_chatbox_sales_quote_delete_after>
|
139 |
</observers>
|
143 |
<observers>
|
144 |
<olark_chatbox_checkout_type_onepage_save_order>
|
145 |
<type>singleton</type>
|
146 |
+
<class>Olark_Chatbox_Model_Observer</class>
|
147 |
<method>recordEvent</method>
|
148 |
</olark_chatbox_checkout_type_onepage_save_order>
|
149 |
</observers>
|
153 |
<observers>
|
154 |
<olark_chatbox_checkout_submit_all_after>
|
155 |
<type>singleton</type>
|
156 |
+
<class>Olark_Chatbox_Model_Observer</class>
|
157 |
<method>recordEvent</method>
|
158 |
</olark_chatbox_checkout_submit_all_after>
|
159 |
</observers>
|
163 |
<observers>
|
164 |
<olark_chatbox_sales_order_payment_cancel>
|
165 |
<type>singleton</type>
|
166 |
+
<class>Olark_Chatbox_Model_Observer</class>
|
167 |
<method>recordEvent</method>
|
168 |
</olark_chatbox_sales_order_payment_cancel>
|
169 |
</observers>
|
173 |
<observers>
|
174 |
<olark_chatbox_order_cancel_after>
|
175 |
<type>singleton</type>
|
176 |
+
<class>Olark_Chatbox_Model_Observer</class>
|
177 |
<method>recordEvent</method>
|
178 |
</olark_chatbox_order_cancel_after>
|
179 |
</observers>
|
183 |
<observers>
|
184 |
<olark_chatbox_sales_order_payment_cancel_invoice>
|
185 |
<type>singleton</type>
|
186 |
+
<class>Olark_Chatbox_Model_Observer</class>
|
187 |
<method>recordEvent</method>
|
188 |
</olark_chatbox_sales_order_payment_cancel_invoice>
|
189 |
</observers>
|
193 |
<observers>
|
194 |
<olark_chatbox_sales_order_payment_void>
|
195 |
<type>singleton</type>
|
196 |
+
<class>Olark_Chatbox_Model_Observer</class>
|
197 |
<method>recordEvent</method>
|
198 |
</olark_chatbox_sales_order_payment_void>
|
199 |
</observers>
|
203 |
<observers>
|
204 |
<olark_chatbox_sales_order_payment_refund>
|
205 |
<type>singleton</type>
|
206 |
+
<class>Olark_Chatbox_Model_Observer</class>
|
207 |
<method>recordEvent</method>
|
208 |
</olark_chatbox_sales_order_payment_refund>
|
209 |
</observers>
|
213 |
<observers>
|
214 |
<olark_chatbox_sales_order_payment_cancel>
|
215 |
<type>singleton</type>
|
216 |
+
<class>Olark_Chatbox_Model_Observer</class>
|
217 |
<method>recordEvent</method>
|
218 |
</olark_chatbox_sales_order_payment_cancel>
|
219 |
</observers>
|
223 |
<observers>
|
224 |
<olark_chatbox_sales_order_invoice_cancel>
|
225 |
<type>singleton</type>
|
226 |
+
<class>Olark_Chatbox_Model_Observer</class>
|
227 |
<method>recordEvent</method>
|
228 |
</olark_chatbox_sales_order_invoice_cancel>
|
229 |
</observers>
|
233 |
<observers>
|
234 |
<olark_chatbox_sales_order_item_cancel>
|
235 |
<type>singleton</type>
|
236 |
+
<class>Olark_Chatbox_Model_Observer</class>
|
237 |
<method>recordEvent</method>
|
238 |
</olark_chatbox_sales_order_item_cancel>
|
239 |
</observers>
|
package.xml
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>Olark_Chatbox</name>
|
4 |
-
<version>1.0.
|
5 |
<stability>stable</stability>
|
6 |
<license uri="http://opensource.org/licenses/afl-3.0.php">Academic Free License (AFL 3.0)</license>
|
7 |
<channel>community</channel>
|
@@ -15,11 +15,11 @@ Be their favorite salesperson as you can follow along as your customers add and
|
|
15 |

|
16 |
Over 5,000 customers rely on Olark to make their customers happier and buying more.
|
17 |
</description>
|
18 |
-
<notes>
|
19 |
<authors><author><name>Olark Live Chat</name><user>olark</user><email>support@olark.com</email></author></authors>
|
20 |
-
<date>2013-
|
21 |
-
<time>
|
22 |
-
<contents><target name="mageetc"><dir name="modules"><file name="Olark_Chatbox.xml" hash="220e124817be0b67876250efca078b83"/></dir></target><target name="magecommunity"><dir name="Olark"><dir name="Chatbox"><dir name="Block"><file name="Chatbox.php" hash="
|
23 |
<compatible/>
|
24 |
<dependencies><required><php><min>5.1.0</min><max>6.0.0</max></php></required></dependencies>
|
25 |
</package>
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>Olark_Chatbox</name>
|
4 |
+
<version>1.0.9</version>
|
5 |
<stability>stable</stability>
|
6 |
<license uri="http://opensource.org/licenses/afl-3.0.php">Academic Free License (AFL 3.0)</license>
|
7 |
<channel>community</channel>
|
15 |

|
16 |
Over 5,000 customers rely on Olark to make their customers happier and buying more.
|
17 |
</description>
|
18 |
+
<notes>Fixes bug with Magento compiler</notes>
|
19 |
<authors><author><name>Olark Live Chat</name><user>olark</user><email>support@olark.com</email></author></authors>
|
20 |
+
<date>2013-06-04</date>
|
21 |
+
<time>21:24:21</time>
|
22 |
+
<contents><target name="mageetc"><dir name="modules"><file name="Olark_Chatbox.xml" hash="220e124817be0b67876250efca078b83"/></dir></target><target name="magecommunity"><dir name="Olark"><dir name="Chatbox"><dir name="Block"><file name="Chatbox.php" hash="d0a62cece258d792d63a89fb4f46378b"/><file name=".Chatbox.php.swp" hash="c8e6a26700cdc554b0093bf6127eedb2"/></dir><dir name="Helper"><file name="Data.php" hash="6d1e1005a4c4f22ccdd7af419a2ed28a"/></dir><dir name="Model"><file name="Observer.php" hash="e179b730ccc182588dc819d4a44355ba"/></dir><dir name="etc"><file name="config.sunir" hash="3c2ea255f957e37b176ae9e2aaa64a5e"/><file name="config.xml" hash="607b866c3b054789bd403cd54d2f6185"/><file name="widget.xml" hash="e0dd79dcf207489b3067b256b7000377"/></dir><file name=".DS_Store" hash="f41f525169d6272ff2c77dc5440285c6"/></dir></dir></target></contents>
|
23 |
<compatible/>
|
24 |
<dependencies><required><php><min>5.1.0</min><max>6.0.0</max></php></required></dependencies>
|
25 |
</package>
|