Beck_LiveChat - Version 1.5.7

Version Notes

none

Download this release

Release Info

Developer Magento Core Team
Extension Beck_LiveChat
Version 1.5.7
Comparing to
See all releases


Code changes from version 1.5.6 to 1.5.7

app/code/community/Beck/LiveChat/Block/Template.php CHANGED
@@ -15,7 +15,10 @@ class Beck_LiveChat_Block_Template extends Mage_Core_Block_Template
15
  {
16
  parent::_construct();
17
  $this->isActive = $this->getConfigData('livechatconfiguration/general/active') == '1' ? true : false;
18
-
 
 
 
19
  $limited_to_registered_user = $this->getConfigData('livechatconfiguration/display/limitregisteredusers') == '1' ? true : false;
20
  if ($limited_to_registered_user == true)
21
  {
15
  {
16
  parent::_construct();
17
  $this->isActive = $this->getConfigData('livechatconfiguration/general/active') == '1' ? true : false;
18
+ if (!$this->AreOperatorOnline())
19
+ {
20
+ $this->isActive = $this->getConfigData('livechatconfiguration/display/hidewhennooperatoronline') == '1' ? false : true;
21
+ }
22
  $limited_to_registered_user = $this->getConfigData('livechatconfiguration/display/limitregisteredusers') == '1' ? true : false;
23
  if ($limited_to_registered_user == true)
24
  {
app/code/community/Beck/LiveChat/controllers/Operator/ListController.php CHANGED
@@ -22,6 +22,13 @@ class Beck_LiveChat_Operator_ListController extends Mage_Adminhtml_Controller_Ac
22
  $this->renderLayout();
23
  }
24
 
 
 
 
 
 
 
 
25
  public function saveAction()
26
  {
27
  $post = $this->getRequest()->getPost();
22
  $this->renderLayout();
23
  }
24
 
25
+ public function deleteAction()
26
+ {
27
+ $operator = Mage::getModel('livechat/operator')->load($this->getRequest()->getParam('id'));
28
+ $operator->setStore_allowed('')->save();
29
+ $this->_redirect('livechat/operator_list/edit/id/'.$this->getRequest()->getParam('id'));
30
+ }
31
+
32
  public function saveAction()
33
  {
34
  $post = $this->getRequest()->getPost();
app/code/community/Beck/LiveChat/etc/config.xml CHANGED
@@ -2,7 +2,7 @@
2
  <config>
3
  <modules>
4
  <Beck_LiveChat>
5
- <version>1.5.6</version>
6
  </Beck_LiveChat>
7
  </modules>
8
  <admin>
@@ -249,6 +249,7 @@
249
  <systemwaitmessage>Your message has been sent, an operator will answer you soon</systemwaitmessage>
250
  <systemautosessionmessage>Welcome, you can now discuss with an operator</systemautosessionmessage>
251
  <limitregisteredusers>0</limitregisteredusers>
 
252
  </display>
253
  </livechatconfiguration>
254
  <livechatevents>
2
  <config>
3
  <modules>
4
  <Beck_LiveChat>
5
+ <version>1.5.7</version>
6
  </Beck_LiveChat>
7
  </modules>
8
  <admin>
249
  <systemwaitmessage>Your message has been sent, an operator will answer you soon</systemwaitmessage>
250
  <systemautosessionmessage>Welcome, you can now discuss with an operator</systemautosessionmessage>
251
  <limitregisteredusers>0</limitregisteredusers>
252
+ <hidewhennooperatoronline>0</hidewhennooperatoronline>
253
  </display>
254
  </livechatconfiguration>
255
  <livechatevents>
app/code/community/Beck/LiveChat/etc/system.xml CHANGED
@@ -177,6 +177,16 @@
177
  <show_in_store>1</show_in_store>
178
  <comment>If yes, only connected customer can see the chatbox.</comment>
179
  </limitregisteredusers>
 
 
 
 
 
 
 
 
 
 
180
  </fields>
181
  </display>
182
  </groups>
177
  <show_in_store>1</show_in_store>
178
  <comment>If yes, only connected customer can see the chatbox.</comment>
179
  </limitregisteredusers>
180
+ <hidewhennooperatoronline translate="label comment" module="livechat">
181
+ <label>Hide LiveChat box when no operator are presents</label>
182
+ <frontend_type>select</frontend_type>
183
+ <source_model>adminhtml/system_config_source_yesno</source_model>
184
+ <sort_order>9</sort_order>
185
+ <show_in_default>1</show_in_default>
186
+ <show_in_website>1</show_in_website>
187
+ <show_in_store>1</show_in_store>
188
+ <comment>If yes, the chatbox will disapear when no operator are present.</comment>
189
+ </hidewhennooperatoronline>
190
  </fields>
191
  </display>
192
  </groups>
app/etc/modules/ZBeck_LiveChat.xml CHANGED
@@ -5,7 +5,7 @@
5
  <active>true</active>
6
  <codePool>community</codePool>
7
  <depends />
8
- <version>1.5.6</version>
9
  </Beck_LiveChat>
10
  </modules>
11
  </config>
5
  <active>true</active>
6
  <codePool>community</codePool>
7
  <depends />
8
+ <version>1.5.7</version>
9
  </Beck_LiveChat>
10
  </modules>
11
  </config>
app/locale/fr_FR/Beck_LiveChat.csv CHANGED
@@ -122,4 +122,6 @@
122
  "Reporting","Statistiques"
123
  "Convert rate","Taux de transformation"
124
  "Chat with order","Chat avec commande"
125
- "Chat without order","Chat sans commande"
 
 
122
  "Reporting","Statistiques"
123
  "Convert rate","Taux de transformation"
124
  "Chat with order","Chat avec commande"
125
+ "Chat without order","Chat sans commande"
126
+ "Hide LiveChat box when no operator are presents","Cacher la boîte LiveChat quand aucun operateur n'est en ligne"
127
+ "If yes, the chatbox will disapear when no operator are present.","Si oui, la boîte LiveChat sera cachée aux internautes si aucun opérateur n'est en ligne"
package.xml CHANGED
@@ -1,7 +1,7 @@
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>Beck_LiveChat</name>
4
- <version>1.5.6</version>
5
  <stability>stable</stability>
6
  <license uri="http://www.opensource.org/licenses/osl-3.0.php">OSL v3.0</license>
7
  <channel>community</channel>
@@ -30,9 +30,9 @@ Removed a forgotten debug code
30
  &lt;li&gt;Added german translation&lt;/li&gt;&lt;/ul&gt;</description>
31
  <notes>none</notes>
32
  <authors><author><name>Fabrice Beck</name><user>auto-converted</user><email>fabrice.beck@fia-net.com</email></author></authors>
33
- <date>2009-05-28</date>
34
- <time>12:13:19</time>
35
- <contents><target name="mageskin"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="images"><dir name="livechat"><file name="base_mini_actions_bg.gif" hash="da2970eac0a22c850b19ee3680475d51"/><file name="base_mini_head_bg.gif" hash="f8c1f130ad69464fe7aff2f589b2ec75"/><file name="chat.png" hash="0b6147abc4b325b6adc53101020214fd"/><file name="close.png" hash="453440e151c84241d7e96fbef87e3ce4"/><file name="close_hover.png" hash="504658759baedc0fae5461fc25d1258d"/></dir></dir><dir name="livechat"><file name="livechat.css" hash="dc9579be4ca477338f78cb63d63dc5f4"/></dir><dir name="media"><dir name="livechat"><dir name="charts_library"><file name="ar3d.swf" hash="fb7a5ccea0ef3623a100861ad1b3177f"/><file name="arno.swf" hash="6f456468baea864aacf66638bac2b589"/><file name="ars3.swf" hash="f987c6b33b986081b16ffc7c32816e1c"/><file name="arst.swf" hash="fbea762106f595c8a80d0836765888b0"/><file name="brfl.swf" hash="0f670edbeeb28e39e3bd67af6f2edbe7"/><file name="brno.swf" hash="048dee265c0261516f3d7372ab3be8b5"/><file name="brst.swf" hash="f2dba1bfc8edb0afc338b419fb48e2fa"/><file name="buno.swf" hash="3d9300f94accd4088b35c46aac3e44a4"/><file name="cl3d.swf" hash="ebe6bf32cf48b06471cb6a0573014a1b"/><file name="clfl.swf" hash="7f5f46d5aa493d70ee5c7b2ddbdc78dc"/><file name="clim.swf" hash="36ee76079777bb8e64050b61c4cc1c97"/><file name="clno.swf" hash="deb606ffde80297088a35286e50a9ca3"/><file name="clp3.swf" hash="b341e66d7a3463bfa2e27fbde386df8c"/><file name="cls3.swf" hash="043fcd28ed20a2b1367eb31039caac03"/><file name="clst.swf" hash="c69eed5bbac1cfb3e00a5ce06bf0948e"/><file name="cnno.swf" hash="10b9081bbaac03b8899b2801e949ca78"/><file name="dollar.jpg" hash="2e5353fa0aaff541926f0a90693211fe"/><file name="dono.swf" hash="9d1f9c75850599448c9faed3c050e1af"/><file name="lnno.swf" hash="c23393fe4574aae26d59b9e8f6fb40bf"/><file name="mxno.swf" hash="1f4c2d4283fa10f48a3b92562a59c0a2"/><file name="pi3d.swf" hash="bcb13d2e348979745c11a9368a24d2ff"/><file name="pie.jpg" hash="b1c6fc913c3b3a8ef5d674be32bffe0f"/><file name="piim.swf" hash="83ca329f031841560721ffd3ca4473ed"/><file name="pino.swf" hash="2c9b396e3b5194380d78a0331cd2ec37"/><file name="pono.swf" hash="3cdef367c4ff70b4772d64e48291bc58"/><file name="scno.swf" hash="c50bcebd97ee6def9079a51f54c4db8f"/></dir><file name="charts.swf" hash="2570563b5c23598a97e3c74cf47a2dc8"/></dir></dir></dir></dir></dir><dir name="frontend"><dir name="default"><dir name="default"><dir name="css"><dir name="livechat"><file name="livechat.css" hash="b4e4554301897980dfb271a5f33549b4"/></dir></dir><dir name="images"><dir name="livechat"><file name="ajax-loader.gif" hash="622c5fd994ddbd1dd7295e975a855394"/><file name="chat.png" hash="0b6147abc4b325b6adc53101020214fd"/><file name="livechat_icon_1_offline.gif" hash="6f29645dd823de420f87406adeefbd74"/><file name="livechat_icon_1_online.gif" hash="0fb04fadb0291cae8fb18f077e5cb287"/><file name="livechat_icon_2_offline.gif" hash="ccac8aead3064b6b573b36790c259a4f"/><file name="livechat_icon_2_online.gif" hash="ccffb2ccd56232a48a2886b987095398"/><file name="livechat_icon_3_offline.gif" hash="fee4fd690feaad68955e4d3f17ea61ba"/><file name="livechat_icon_3_online.gif" hash="7218d4f034d4eb13e3d5b0c309687c61"/><file name="livechat_icon_4_offline.gif" hash="17bc9d490e7c66482aaa813c4c542e93"/><file name="livechat_icon_4_online.gif" hash="dd529dbdf1ffc62c593fd6c4548dfd52"/><file name="Thumbs.db" hash="2089b8492f53243c46f05e1d86ae85dc"/></dir></dir></dir><dir name="modern"><dir name="css"><dir name="livechat"><file name="livechat.css" hash="f0595e7964bdae458d1c7fb4a0e71060"/></dir></dir><dir name="images"><dir name="livechat"><file name="ajax-loader.gif" hash="622c5fd994ddbd1dd7295e975a855394"/><file name="chat.png" hash="0b6147abc4b325b6adc53101020214fd"/><file name="livechat_icon_1_offline.gif" hash="6f29645dd823de420f87406adeefbd74"/><file name="livechat_icon_1_online.gif" hash="0fb04fadb0291cae8fb18f077e5cb287"/><file name="livechat_icon_2_offline.gif" hash="ccac8aead3064b6b573b36790c259a4f"/><file name="livechat_icon_2_online.gif" hash="ccffb2ccd56232a48a2886b987095398"/><file name="livechat_icon_3_offline.gif" hash="fee4fd690feaad68955e4d3f17ea61ba"/><file name="livechat_icon_3_online.gif" hash="7218d4f034d4eb13e3d5b0c309687c61"/><file name="livechat_icon_4_offline.gif" hash="17bc9d490e7c66482aaa813c4c542e93"/><file name="livechat_icon_4_online.gif" hash="dd529dbdf1ffc62c593fd6c4548dfd52"/><file name="Thumbs.db" hash="5d6de5587cb6edace482aa9ceb9d5363"/></dir></dir></dir></dir></dir></target><target name="magedesign"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="layout"><file name="livechat.xml" hash="af3e2fb377187626cb2dd1568b041789"/></dir><dir name="template"><dir name="livechat"><file name="operator.phtml" hash="7013c5fe4dbd2cba0fe06336dba4c7a7"/><file name="reporting.phtml" hash="9d85c067799b93afa051f06c8fe69f91"/><file name="session.phtml" hash="bed057fb47975a3a7a09187b82c76483"/><dir name="notification"><file name="toolbar.phtml" hash="17cf821d5949f14a61fcd5e8b36e5038"/></dir><dir name="session"><file name="detail.phtml" hash="278dbb25de95e687d02b291a67261518"/></dir><dir name="widget"><file name="chatlive.phtml" hash="309a7cfb21f706f63f90d937112d9d26"/><file name="sessionslive.phtml" hash="692226dc8625b3765030d6b48711cea4"/></dir></dir></dir></dir></dir></dir><dir name="frontend"><dir name="default"><dir name="default"><dir name="layout"><file name="livechat.xml" hash="a2f7ae4a224d63f616c0ba35eff5c186"/></dir><dir name="template"><dir name="livechat"><file name="chat.phtml" hash="9b1d6d6bfdee8d10093efa73143ba096"/></dir></dir></dir><dir name="modern"><dir name="layout"><file name="livechat.xml" hash="37e80dc38dd51095f830c1ca6349cbe5"/></dir><dir name="template"><dir name="livechat"><file name="chat.phtml" hash="9b1d6d6bfdee8d10093efa73143ba096"/></dir></dir></dir></dir></dir></target><target name="magecommunity"><dir name="Beck"><dir name="LiveChat"><dir name="Block"><file name="Operator.php" hash="359b81c070d1e6599fec6186adbb76cb"/><file name="Reporting.php" hash="563ca4dfcd96a16544e0665eeb73cba4"/><file name="Session.php" hash="4ef2dd4fbfc349b31acc707882860d9c"/><file name="Template.php" hash="15224f9c4ba9e97c7ed3aa5af20acced"/><file name="Template.zip" hash="aea099fa127cf610c8d7b06b50008776"/><dir name="Notification"><file name="Toolbar.php" hash="4b158993a40a24fe1f355fa8d29623af"/></dir><dir name="Operator"><file name="Edit.php" hash="540a5246fcff5b1a8e821445e07ebd12"/><file name="List.php" hash="e4f392b7522aa002744abcb33fa5ce70"/><dir name="Edit"><file name="Form.php" hash="beb33ee90e506d838365f87add8eb49a"/></dir></dir><dir name="Session"><file name="Detail.php" hash="821d5c92c500cafa72ed50ba29eab352"/><file name="Grid.php" hash="b2116c31cbd297ed046296083bbf2fcf"/><dir name="Detail"><file name="Grid.php" hash="15786bd48ac663b9e9292d0d27fe8a30"/></dir></dir><dir name="Widget"><file name="Chat.php" hash="926f6fc13b7490d2f97035f1276078e7"/><file name="Sessions.php" hash="97e5f2686cc6f2762731b1fa536d91dc"/><dir name="Grid"><dir name="Column"><dir name="Filter"><file name="Dispatched.php" hash="9052fa22cd9e07375d0de4f312c8bcf3"/><file name="Online.php" hash="1810c742fe22fd536798f2f76a11479c"/><file name="State.php" hash="c4367ea40d730b6b42e887fb0f57f758"/></dir><dir name="Renderer"><file name="Dispatched.php" hash="21e79c6d3662fd71737f1f6021509883"/><file name="Online.php" hash="e16ef426e2d329986774670c75188901"/><file name="State.php" hash="4efb918376b7b23ec182ad7d1c981ec9"/></dir></dir></dir></dir></dir><dir name="controllers"><file name="ChatController.php" hash="6ec1063832d7133d2f0ad866cc460376"/><file name="OperatorController.php" hash="68e72482a399d247bd8972032c0ea797"/><file name="PopupController.php" hash="a4a71bc3faa2d81e63bb9f95acc59d83"/><file name="ReportingController.php" hash="4b4ed6c8ae7d765e173c5befd0f40fea"/><file name="TestController.php" hash="b636abdbd22fefe47d74ce4bc1d5a605"/><dir name="Operator"><file name="ListController.php" hash="6e82400d65838594f0f139d3884fd75f"/></dir><dir name="Session"><file name="ListController.php" hash="174608c0fb4446193f4ad2dfbbd127f9"/><file name="LiveController.php" hash="d3642bbfca2c6e54bd902187c46c4276"/></dir></dir><dir name="etc"><file name="api.xml" hash="557b013a006d6cb0700b9bd80be41ace"/><file name="config.xml" hash="1392fc453229aae3c5595038616922b0"/><file name="system.xml" hash="0ace3cfb75089b603ae902f1d31c0af1"/></dir><dir name="Helper"><file name="Data.php" hash="9b8122364bcd6d142aaf2221229fb79e"/></dir><dir name="Model"><file name="AdminSession.php" hash="c6edda40339ae92777ff627d56fd69f7"/><file name="Api.php" hash="141e0881638f58ba2cfba370bfc209d1"/><file name="Event.php" hash="1f9664d6b3455d4bf7e34aa2500163d1"/><file name="Message.php" hash="14b9b7ffef2638e2178ed449945f2189"/><file name="Operator.php" hash="0a79de761f0f1b8b2cfb5318529c6c16"/><file name="Session.php" hash="38e464f28d70d3993d6797cd2a4ed77f"/><dir name="Archives"><file name="Message.php" hash="77405730511ada4e8f973189cc04a70a"/><file name="Session.php" hash="e7e342df2a427a31c6d0392ae230f084"/></dir><dir name="Mysql4"><file name="Message.php" hash="15f54ff4ac2e42d499a465ba02f54545"/><file name="Operator.php" hash="183d4556a4adb362080db8b29b3d363b"/><file name="Session.php" hash="23470233413431cb15fd64d6f6a9e57a"/><dir name="Archives"><file name="Message.php" hash="08a24b0294485713fa948a6bdc321d95"/><file name="Session.php" hash="1e9179810d16098a15e318aec9fecb7d"/><dir name="Message"><file name="Collection.php" hash="312e6198632cc2cbd4fc7b5ace253383"/></dir><dir name="Session"><file name="Collection.php" hash="2f25d488fde87349bfa0e39faa7b6a11"/></dir></dir><dir name="Message"><file name="Collection.php" hash="fe88b353a34e33a8c1dd3ff7fb31dcd4"/></dir><dir name="Operator"><file name="Collection.php" hash="1f85ba68d6c707589b7650fc3fbf1929"/></dir><dir name="Session"><file name="Collection.php" hash="4409f4ba36832a8c0ff8e186b4945de8"/></dir></dir><dir name="Session"><file name="List.php" hash="c97c0507a2ead10e3df948a985f94aae"/></dir><dir name="Source"><file name="Images.php" hash="a78214110d992b5f1267360fac8ffb10"/><file name="Online.php" hash="16a3933b4c4801ce20c714635ea52a47"/><file name="SessionCreation.php" hash="bf20fc0949be23a892b5744e9a68ed4b"/></dir></dir><dir name="sql"><dir name="livechat_setup"><file name="mysql4-install-1.0.0.php" hash="5a967b18d8bc56b345cd3870d1c9ebb7"/><file name="mysql4-upgrade-1.0.0-1.2.4.php" hash="852891c2299a597fe671ca3e06101f82"/><file name="mysql4-upgrade-1.2.4-1.2.9.php" hash="573b71d02e8690e8c4903cf0447a928e"/><file name="mysql4-upgrade-1.2.9-1.3.0.php" hash="d487ca45bb75f68b8f813d4bd3c04ca7"/><file name="mysql4-upgrade-1.3.0-1.3.5.php" hash="aeacf36dc4f8c9df0dcae5dc2c1620ab"/><file name="mysql4-upgrade-1.3.1-1.3.5.php" hash="aeacf36dc4f8c9df0dcae5dc2c1620ab"/><file name="mysql4-upgrade-1.3.2-1.3.5.php" hash="aeacf36dc4f8c9df0dcae5dc2c1620ab"/><file name="mysql4-upgrade-1.3.3-1.3.5.php" hash="aeacf36dc4f8c9df0dcae5dc2c1620ab"/><file name="mysql4-upgrade-1.3.4-1.3.5.php" hash="aeacf36dc4f8c9df0dcae5dc2c1620ab"/></dir></dir></dir></dir></target><target name="magelocale"><dir name="da_DK"><file name="Beck_LiveChat.csv" hash="cc3e27db788935eb162d3bf2b45b289a"/></dir><dir name="de_DE"><file name="Beck_LiveChat.csv" hash="4dacbe0e9a050475d06d60b80f1f55db"/></dir><dir name="es_ES"><file name="Beck_LiveChat.csv" hash="0de4700d9dd2fbac7d55868d6b7e8e50"/></dir><dir name="fr_FR"><file name="Beck_LiveChat.csv" hash="34e520dc019a8824be7d55f833005406"/></dir><dir name="hu_HU"><file name="Beck_LiveChat.csv" hash="54ac103d11ce3b50f7dea53743f61ed5"/></dir><dir name="lt_LT"><file name="Beck_LiveChat.csv" hash="49c8f61e6d80cf79f52502a268f65aa7"/></dir><dir name="nl_NL"><file name="Beck_LiveChat.csv" hash="8e7fdb53f6bd85f5a5b5a3a2bb0920e7"/></dir><dir name="pt_BR"><file name="Beck_LiveChat.csv" hash="dcc95caec18cf727489eb48a523368fe"/></dir><dir name="vi_VN"><file name="Beck_LiveChat.csv" hash="7174a4d1b4dc358c4246729be74721be"/></dir></target><target name="mage"><dir name="js"><dir name="livechat"><file name="js.js" hash="e2e673b8f54faa02279c669e5db595fa"/></dir></dir></target><target name="mageetc"><dir name="modules"><file name="ZBeck_LiveChat.xml" hash="1ad39182a6081bd89d2e3f053abd01fd"/></dir></target></contents>
36
  <compatible/>
37
  <dependencies/>
38
  </package>
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>Beck_LiveChat</name>
4
+ <version>1.5.7</version>
5
  <stability>stable</stability>
6
  <license uri="http://www.opensource.org/licenses/osl-3.0.php">OSL v3.0</license>
7
  <channel>community</channel>
30
  &lt;li&gt;Added german translation&lt;/li&gt;&lt;/ul&gt;</description>
31
  <notes>none</notes>
32
  <authors><author><name>Fabrice Beck</name><user>auto-converted</user><email>fabrice.beck@fia-net.com</email></author></authors>
33
+ <date>2009-07-03</date>
34
+ <time>09:41:56</time>
35
+ <contents><target name="mageskin"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="images"><dir name="livechat"><file name="base_mini_actions_bg.gif" hash="da2970eac0a22c850b19ee3680475d51"/><file name="base_mini_head_bg.gif" hash="f8c1f130ad69464fe7aff2f589b2ec75"/><file name="chat.png" hash="0b6147abc4b325b6adc53101020214fd"/><file name="close.png" hash="453440e151c84241d7e96fbef87e3ce4"/><file name="close_hover.png" hash="504658759baedc0fae5461fc25d1258d"/></dir></dir><dir name="livechat"><file name="livechat.css" hash="dc9579be4ca477338f78cb63d63dc5f4"/></dir><dir name="media"><dir name="livechat"><dir name="charts_library"><file name="ar3d.swf" hash="fb7a5ccea0ef3623a100861ad1b3177f"/><file name="arno.swf" hash="6f456468baea864aacf66638bac2b589"/><file name="ars3.swf" hash="f987c6b33b986081b16ffc7c32816e1c"/><file name="arst.swf" hash="fbea762106f595c8a80d0836765888b0"/><file name="brfl.swf" hash="0f670edbeeb28e39e3bd67af6f2edbe7"/><file name="brno.swf" hash="048dee265c0261516f3d7372ab3be8b5"/><file name="brst.swf" hash="f2dba1bfc8edb0afc338b419fb48e2fa"/><file name="buno.swf" hash="3d9300f94accd4088b35c46aac3e44a4"/><file name="cl3d.swf" hash="ebe6bf32cf48b06471cb6a0573014a1b"/><file name="clfl.swf" hash="7f5f46d5aa493d70ee5c7b2ddbdc78dc"/><file name="clim.swf" hash="36ee76079777bb8e64050b61c4cc1c97"/><file name="clno.swf" hash="deb606ffde80297088a35286e50a9ca3"/><file name="clp3.swf" hash="b341e66d7a3463bfa2e27fbde386df8c"/><file name="cls3.swf" hash="043fcd28ed20a2b1367eb31039caac03"/><file name="clst.swf" hash="c69eed5bbac1cfb3e00a5ce06bf0948e"/><file name="cnno.swf" hash="10b9081bbaac03b8899b2801e949ca78"/><file name="dollar.jpg" hash="2e5353fa0aaff541926f0a90693211fe"/><file name="dono.swf" hash="9d1f9c75850599448c9faed3c050e1af"/><file name="lnno.swf" hash="c23393fe4574aae26d59b9e8f6fb40bf"/><file name="mxno.swf" hash="1f4c2d4283fa10f48a3b92562a59c0a2"/><file name="pi3d.swf" hash="bcb13d2e348979745c11a9368a24d2ff"/><file name="pie.jpg" hash="b1c6fc913c3b3a8ef5d674be32bffe0f"/><file name="piim.swf" hash="83ca329f031841560721ffd3ca4473ed"/><file name="pino.swf" hash="2c9b396e3b5194380d78a0331cd2ec37"/><file name="pono.swf" hash="3cdef367c4ff70b4772d64e48291bc58"/><file name="scno.swf" hash="c50bcebd97ee6def9079a51f54c4db8f"/></dir><file name="charts.swf" hash="2570563b5c23598a97e3c74cf47a2dc8"/></dir></dir></dir></dir></dir><dir name="frontend"><dir name="default"><dir name="default"><dir name="css"><dir name="livechat"><file name="livechat.css" hash="b4e4554301897980dfb271a5f33549b4"/></dir></dir><dir name="images"><dir name="livechat"><file name="ajax-loader.gif" hash="622c5fd994ddbd1dd7295e975a855394"/><file name="chat.png" hash="0b6147abc4b325b6adc53101020214fd"/><file name="livechat_icon_1_offline.gif" hash="6f29645dd823de420f87406adeefbd74"/><file name="livechat_icon_1_online.gif" hash="0fb04fadb0291cae8fb18f077e5cb287"/><file name="livechat_icon_2_offline.gif" hash="ccac8aead3064b6b573b36790c259a4f"/><file name="livechat_icon_2_online.gif" hash="ccffb2ccd56232a48a2886b987095398"/><file name="livechat_icon_3_offline.gif" hash="fee4fd690feaad68955e4d3f17ea61ba"/><file name="livechat_icon_3_online.gif" hash="7218d4f034d4eb13e3d5b0c309687c61"/><file name="livechat_icon_4_offline.gif" hash="17bc9d490e7c66482aaa813c4c542e93"/><file name="livechat_icon_4_online.gif" hash="dd529dbdf1ffc62c593fd6c4548dfd52"/><file name="Thumbs.db" hash="2089b8492f53243c46f05e1d86ae85dc"/></dir></dir></dir><dir name="modern"><dir name="css"><dir name="livechat"><file name="livechat.css" hash="f0595e7964bdae458d1c7fb4a0e71060"/></dir></dir><dir name="images"><dir name="livechat"><file name="ajax-loader.gif" hash="622c5fd994ddbd1dd7295e975a855394"/><file name="chat.png" hash="0b6147abc4b325b6adc53101020214fd"/><file name="livechat_icon_1_offline.gif" hash="6f29645dd823de420f87406adeefbd74"/><file name="livechat_icon_1_online.gif" hash="0fb04fadb0291cae8fb18f077e5cb287"/><file name="livechat_icon_2_offline.gif" hash="ccac8aead3064b6b573b36790c259a4f"/><file name="livechat_icon_2_online.gif" hash="ccffb2ccd56232a48a2886b987095398"/><file name="livechat_icon_3_offline.gif" hash="fee4fd690feaad68955e4d3f17ea61ba"/><file name="livechat_icon_3_online.gif" hash="7218d4f034d4eb13e3d5b0c309687c61"/><file name="livechat_icon_4_offline.gif" hash="17bc9d490e7c66482aaa813c4c542e93"/><file name="livechat_icon_4_online.gif" hash="dd529dbdf1ffc62c593fd6c4548dfd52"/><file name="Thumbs.db" hash="5d6de5587cb6edace482aa9ceb9d5363"/></dir></dir></dir></dir></dir></target><target name="magedesign"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="layout"><file name="livechat.xml" hash="af3e2fb377187626cb2dd1568b041789"/></dir><dir name="template"><dir name="livechat"><file name="operator.phtml" hash="7013c5fe4dbd2cba0fe06336dba4c7a7"/><file name="reporting.phtml" hash="9d85c067799b93afa051f06c8fe69f91"/><file name="session.phtml" hash="bed057fb47975a3a7a09187b82c76483"/><dir name="notification"><file name="toolbar.phtml" hash="17cf821d5949f14a61fcd5e8b36e5038"/></dir><dir name="session"><file name="detail.phtml" hash="278dbb25de95e687d02b291a67261518"/></dir><dir name="widget"><file name="chatlive.phtml" hash="309a7cfb21f706f63f90d937112d9d26"/><file name="sessionslive.phtml" hash="692226dc8625b3765030d6b48711cea4"/></dir></dir></dir></dir></dir></dir><dir name="frontend"><dir name="default"><dir name="default"><dir name="layout"><file name="livechat.xml" hash="a2f7ae4a224d63f616c0ba35eff5c186"/></dir><dir name="template"><dir name="livechat"><file name="chat.phtml" hash="9b1d6d6bfdee8d10093efa73143ba096"/></dir></dir></dir><dir name="modern"><dir name="layout"><file name="livechat.xml" hash="37e80dc38dd51095f830c1ca6349cbe5"/></dir><dir name="template"><dir name="livechat"><file name="chat.phtml" hash="9b1d6d6bfdee8d10093efa73143ba096"/></dir></dir></dir></dir></dir></target><target name="magecommunity"><dir name="Beck"><dir name="LiveChat"><dir name="Block"><file name="Operator.php" hash="359b81c070d1e6599fec6186adbb76cb"/><file name="Reporting.php" hash="563ca4dfcd96a16544e0665eeb73cba4"/><file name="Session.php" hash="4ef2dd4fbfc349b31acc707882860d9c"/><file name="Template.php" hash="a7d8c9d299de4e40b33f08d7e5777edb"/><file name="Template.zip" hash="aea099fa127cf610c8d7b06b50008776"/><dir name="Notification"><file name="Toolbar.php" hash="4b158993a40a24fe1f355fa8d29623af"/></dir><dir name="Operator"><file name="Edit.php" hash="540a5246fcff5b1a8e821445e07ebd12"/><file name="List.php" hash="e4f392b7522aa002744abcb33fa5ce70"/><dir name="Edit"><file name="Form.php" hash="beb33ee90e506d838365f87add8eb49a"/></dir></dir><dir name="Session"><file name="Detail.php" hash="821d5c92c500cafa72ed50ba29eab352"/><file name="Grid.php" hash="b2116c31cbd297ed046296083bbf2fcf"/><dir name="Detail"><file name="Grid.php" hash="15786bd48ac663b9e9292d0d27fe8a30"/></dir></dir><dir name="Widget"><file name="Chat.php" hash="926f6fc13b7490d2f97035f1276078e7"/><file name="Sessions.php" hash="97e5f2686cc6f2762731b1fa536d91dc"/><dir name="Grid"><dir name="Column"><dir name="Filter"><file name="Dispatched.php" hash="9052fa22cd9e07375d0de4f312c8bcf3"/><file name="Online.php" hash="1810c742fe22fd536798f2f76a11479c"/><file name="State.php" hash="c4367ea40d730b6b42e887fb0f57f758"/></dir><dir name="Renderer"><file name="Dispatched.php" hash="21e79c6d3662fd71737f1f6021509883"/><file name="Online.php" hash="e16ef426e2d329986774670c75188901"/><file name="State.php" hash="4efb918376b7b23ec182ad7d1c981ec9"/></dir></dir></dir></dir></dir><dir name="controllers"><file name="ChatController.php" hash="6ec1063832d7133d2f0ad866cc460376"/><file name="OperatorController.php" hash="68e72482a399d247bd8972032c0ea797"/><file name="PopupController.php" hash="a4a71bc3faa2d81e63bb9f95acc59d83"/><file name="ReportingController.php" hash="4b4ed6c8ae7d765e173c5befd0f40fea"/><file name="TestController.php" hash="b636abdbd22fefe47d74ce4bc1d5a605"/><dir name="Operator"><file name="ListController.php" hash="5dcd3b4b826b9d662193d4e0799aa36b"/></dir><dir name="Session"><file name="ListController.php" hash="174608c0fb4446193f4ad2dfbbd127f9"/><file name="LiveController.php" hash="d3642bbfca2c6e54bd902187c46c4276"/></dir></dir><dir name="etc"><file name="api.xml" hash="557b013a006d6cb0700b9bd80be41ace"/><file name="config.xml" hash="e97f4254d879103331f72e5b38a37df1"/><file name="system.xml" hash="2e7425028537c45a6cc59b57c501b518"/></dir><dir name="Helper"><file name="Data.php" hash="9b8122364bcd6d142aaf2221229fb79e"/></dir><dir name="Model"><file name="AdminSession.php" hash="c6edda40339ae92777ff627d56fd69f7"/><file name="Api.php" hash="141e0881638f58ba2cfba370bfc209d1"/><file name="Event.php" hash="1f9664d6b3455d4bf7e34aa2500163d1"/><file name="Message.php" hash="14b9b7ffef2638e2178ed449945f2189"/><file name="Operator.php" hash="0a79de761f0f1b8b2cfb5318529c6c16"/><file name="Session.php" hash="38e464f28d70d3993d6797cd2a4ed77f"/><dir name="Archives"><file name="Message.php" hash="77405730511ada4e8f973189cc04a70a"/><file name="Session.php" hash="e7e342df2a427a31c6d0392ae230f084"/></dir><dir name="Mysql4"><file name="Message.php" hash="15f54ff4ac2e42d499a465ba02f54545"/><file name="Operator.php" hash="183d4556a4adb362080db8b29b3d363b"/><file name="Session.php" hash="23470233413431cb15fd64d6f6a9e57a"/><dir name="Archives"><file name="Message.php" hash="08a24b0294485713fa948a6bdc321d95"/><file name="Session.php" hash="1e9179810d16098a15e318aec9fecb7d"/><dir name="Message"><file name="Collection.php" hash="312e6198632cc2cbd4fc7b5ace253383"/></dir><dir name="Session"><file name="Collection.php" hash="2f25d488fde87349bfa0e39faa7b6a11"/></dir></dir><dir name="Message"><file name="Collection.php" hash="fe88b353a34e33a8c1dd3ff7fb31dcd4"/></dir><dir name="Operator"><file name="Collection.php" hash="1f85ba68d6c707589b7650fc3fbf1929"/></dir><dir name="Session"><file name="Collection.php" hash="4409f4ba36832a8c0ff8e186b4945de8"/></dir></dir><dir name="Session"><file name="List.php" hash="c97c0507a2ead10e3df948a985f94aae"/></dir><dir name="Source"><file name="Images.php" hash="a78214110d992b5f1267360fac8ffb10"/><file name="Online.php" hash="16a3933b4c4801ce20c714635ea52a47"/><file name="SessionCreation.php" hash="bf20fc0949be23a892b5744e9a68ed4b"/></dir></dir><dir name="sql"><dir name="livechat_setup"><file name="mysql4-install-1.0.0.php" hash="5a967b18d8bc56b345cd3870d1c9ebb7"/><file name="mysql4-upgrade-1.0.0-1.2.4.php" hash="852891c2299a597fe671ca3e06101f82"/><file name="mysql4-upgrade-1.2.4-1.2.9.php" hash="573b71d02e8690e8c4903cf0447a928e"/><file name="mysql4-upgrade-1.2.9-1.3.0.php" hash="d487ca45bb75f68b8f813d4bd3c04ca7"/><file name="mysql4-upgrade-1.3.0-1.3.5.php" hash="aeacf36dc4f8c9df0dcae5dc2c1620ab"/><file name="mysql4-upgrade-1.3.1-1.3.5.php" hash="aeacf36dc4f8c9df0dcae5dc2c1620ab"/><file name="mysql4-upgrade-1.3.2-1.3.5.php" hash="aeacf36dc4f8c9df0dcae5dc2c1620ab"/><file name="mysql4-upgrade-1.3.3-1.3.5.php" hash="aeacf36dc4f8c9df0dcae5dc2c1620ab"/><file name="mysql4-upgrade-1.3.4-1.3.5.php" hash="aeacf36dc4f8c9df0dcae5dc2c1620ab"/></dir></dir></dir></dir></target><target name="magelocale"><dir name="da_DK"><file name="Beck_LiveChat.csv" hash="cc3e27db788935eb162d3bf2b45b289a"/></dir><dir name="de_DE"><file name="Beck_LiveChat.csv" hash="4dacbe0e9a050475d06d60b80f1f55db"/></dir><dir name="es_ES"><file name="Beck_LiveChat.csv" hash="0de4700d9dd2fbac7d55868d6b7e8e50"/></dir><dir name="fr_FR"><file name="Beck_LiveChat.csv" hash="a51fe2feeaaaf1873a46934b3a80dff6"/></dir><dir name="hu_HU"><file name="Beck_LiveChat.csv" hash="54ac103d11ce3b50f7dea53743f61ed5"/></dir><dir name="lt_LT"><file name="Beck_LiveChat.csv" hash="49c8f61e6d80cf79f52502a268f65aa7"/></dir><dir name="nl_NL"><file name="Beck_LiveChat.csv" hash="8e7fdb53f6bd85f5a5b5a3a2bb0920e7"/></dir><dir name="pt_BR"><file name="Beck_LiveChat.csv" hash="dcc95caec18cf727489eb48a523368fe"/></dir><dir name="vi_VN"><file name="Beck_LiveChat.csv" hash="7174a4d1b4dc358c4246729be74721be"/></dir></target><target name="mage"><dir name="js"><dir name="livechat"><file name="js.js" hash="e2e673b8f54faa02279c669e5db595fa"/></dir></dir></target><target name="mageetc"><dir name="modules"><file name="ZBeck_LiveChat.xml" hash="19adb51788ba5bb92b9668ef0634272a"/></dir></target></contents>
36
  <compatible/>
37
  <dependencies/>
38
  </package>