Version Notes
none
Download this release
Release Info
Developer | Magento Core Team |
Extension | Beck_LiveChat |
Version | 1.5.8 |
Comparing to | |
See all releases |
Code changes from version 1.5.7 to 1.5.8
- app/code/community/Beck/LiveChat/Block/Operator/List.php +7 -1
- app/code/community/Beck/LiveChat/Block/Widget/Grid/Column/Filter/Affectedstore.php +10 -0
- app/code/community/Beck/LiveChat/Block/Widget/Grid/Column/Renderer/Affectedstore.php +68 -0
- app/code/community/Beck/LiveChat/Model/Api.php +1 -0
- app/code/community/Beck/LiveChat/Model/Mysql4/Operator.php +26 -0
- app/code/community/Beck/LiveChat/etc/config.xml +1 -1
- app/etc/modules/ZBeck_LiveChat.xml +1 -1
- app/locale/fr_FR/Beck_LiveChat.csv +6 -1
- package.xml +10 -4
app/code/community/Beck/LiveChat/Block/Operator/List.php
CHANGED
@@ -53,13 +53,19 @@ class Beck_LiveChat_Block_Operator_List extends Mage_Adminhtml_Block_Widget_Grid
|
|
53 |
$this->addColumn('is_online',
|
54 |
array(
|
55 |
'header'=> Mage::helper('livechat')->__('Status'),
|
56 |
-
'type' => 'text',
|
57 |
'index' => 'is_online',
|
58 |
'type' => 'select',
|
59 |
'renderer'=>'livechat/widget_grid_column_renderer_online',
|
60 |
'filter'=>'livechat/widget_grid_column_filter_online',
|
61 |
'options'=>Beck_LiveChat_Model_Source_Online::toOptionsArray()
|
62 |
));
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
63 |
|
64 |
return parent::_prepareColumns();
|
65 |
}
|
53 |
$this->addColumn('is_online',
|
54 |
array(
|
55 |
'header'=> Mage::helper('livechat')->__('Status'),
|
|
|
56 |
'index' => 'is_online',
|
57 |
'type' => 'select',
|
58 |
'renderer'=>'livechat/widget_grid_column_renderer_online',
|
59 |
'filter'=>'livechat/widget_grid_column_filter_online',
|
60 |
'options'=>Beck_LiveChat_Model_Source_Online::toOptionsArray()
|
61 |
));
|
62 |
+
$this->addColumn('store_allowed',
|
63 |
+
array(
|
64 |
+
'header'=> Mage::helper('livechat')->__('Affected stores'),
|
65 |
+
'index' => 'store_allowed',
|
66 |
+
'renderer'=>'livechat/widget_grid_column_renderer_affectedstore',
|
67 |
+
'filter'=>'livechat/widget_grid_column_filter_affectedstore'
|
68 |
+
));
|
69 |
|
70 |
return parent::_prepareColumns();
|
71 |
}
|
app/code/community/Beck/LiveChat/Block/Widget/Grid/Column/Filter/Affectedstore.php
ADDED
@@ -0,0 +1,10 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
|
3 |
+
class Beck_LiveChat_Block_Widget_Grid_Column_Filter_Affectedstore extends Mage_Adminhtml_Block_Widget_Grid_Column_Filter_Abstract
|
4 |
+
{
|
5 |
+
public function getHtml()
|
6 |
+
{
|
7 |
+
$html = ' ';
|
8 |
+
return $html;
|
9 |
+
}
|
10 |
+
}
|
app/code/community/Beck/LiveChat/Block/Widget/Grid/Column/Renderer/Affectedstore.php
ADDED
@@ -0,0 +1,68 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
|
3 |
+
class Beck_LiveChat_Block_Widget_Grid_Column_Renderer_Affectedstore extends Mage_Adminhtml_Block_Widget_Grid_Column_Renderer_Abstract
|
4 |
+
{
|
5 |
+
public function render(Varien_Object $row)
|
6 |
+
{
|
7 |
+
$html = '';
|
8 |
+
|
9 |
+
$stores = $this->_getStores(explode('-', $row->getStore_allowed()));
|
10 |
+
if (count($stores) <= 0)
|
11 |
+
{
|
12 |
+
$html = $this->__('No store affected');
|
13 |
+
}
|
14 |
+
else
|
15 |
+
{
|
16 |
+
$first = true;
|
17 |
+
foreach ($stores as $group)
|
18 |
+
{
|
19 |
+
if ($first)
|
20 |
+
{
|
21 |
+
$html .= '<i>'.$group['label'].'</i>';
|
22 |
+
$first = false;
|
23 |
+
}
|
24 |
+
else
|
25 |
+
{
|
26 |
+
$html .= '<br /><i>'.$group['label'].'</i>';
|
27 |
+
}
|
28 |
+
foreach ($group['value'] as $store)
|
29 |
+
{
|
30 |
+
$html .= '<br /> '. $store['label'];
|
31 |
+
}
|
32 |
+
}
|
33 |
+
}
|
34 |
+
return $html;
|
35 |
+
}
|
36 |
+
|
37 |
+
protected function _getStores(array $affected_store)
|
38 |
+
{
|
39 |
+
$values = array();
|
40 |
+
$websiteCollection = Mage::getModel('core/website')->getResourceCollection();
|
41 |
+
foreach ($websiteCollection as $website)
|
42 |
+
{
|
43 |
+
$groupCollection = $website->getGroupCollection();
|
44 |
+
foreach ($groupCollection as $group)
|
45 |
+
{
|
46 |
+
$storeCollection = $group->getStoreCollection();
|
47 |
+
$values[$group->getId()]['value'] = array();
|
48 |
+
$values[$group->getId()]['label'] = $group->getName();
|
49 |
+
foreach ($storeCollection as $store)
|
50 |
+
{
|
51 |
+
$index = count($values[$group->getId()]['value']);
|
52 |
+
if (in_array((string)$store->getId(), $affected_store))
|
53 |
+
{
|
54 |
+
$values[$group->getId()]['value'][$index]['value'] = $store->getId();
|
55 |
+
$values[$group->getId()]['value'][$index]['label'] = $store->getName();
|
56 |
+
$values[$group->getId()]['value'][$index]['title'] = $store->getName();
|
57 |
+
}
|
58 |
+
}
|
59 |
+
if (count($values[$group->getId()]['value']) <= 0)
|
60 |
+
{
|
61 |
+
unset($values[$group->getId()]);
|
62 |
+
}
|
63 |
+
}
|
64 |
+
}
|
65 |
+
//Zend_Debug::dump($this->_values);
|
66 |
+
return $values;
|
67 |
+
}
|
68 |
+
}
|
app/code/community/Beck/LiveChat/Model/Api.php
CHANGED
@@ -101,6 +101,7 @@ class Beck_LiveChat_Model_Api extends Mage_Api_Model_Resource_Abstract
|
|
101 |
{
|
102 |
$operator->setName($name)
|
103 |
->save();
|
|
|
104 |
}
|
105 |
$operator->Connected();
|
106 |
}
|
101 |
{
|
102 |
$operator->setName($name)
|
103 |
->save();
|
104 |
+
|
105 |
}
|
106 |
$operator->Connected();
|
107 |
}
|
app/code/community/Beck/LiveChat/Model/Mysql4/Operator.php
CHANGED
@@ -6,4 +6,30 @@ class Beck_LiveChat_Model_Mysql4_Operator extends Mage_Core_Model_Mysql4_Abstrac
|
|
6 |
{
|
7 |
$this->_init('livechat/livechat_operators', 'id');
|
8 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
9 |
}
|
6 |
{
|
7 |
$this->_init('livechat/livechat_operators', 'id');
|
8 |
}
|
9 |
+
|
10 |
+
public function save(Mage_Core_Model_Abstract $object)
|
11 |
+
{
|
12 |
+
$message = false;
|
13 |
+
if ($object->getId() == null)
|
14 |
+
{
|
15 |
+
$message = true;
|
16 |
+
}
|
17 |
+
parent::save($object);
|
18 |
+
if ($message)
|
19 |
+
{
|
20 |
+
$desc = Mage::Helper('livechat')->__('The created operator %s must be affected to a store, whithout that he will never be considered online.', $object->getName());
|
21 |
+
$url =Mage::getModel('adminhtml/url')->getUrl('livechat/operator_list/edit', array('id' =>$object->getId()));
|
22 |
+
$feedData = array(
|
23 |
+
'severity' => Mage_AdminNotification_Model_Inbox::SEVERITY_MAJOR,
|
24 |
+
'date_added' => date('Y-m-d H:i:s'),
|
25 |
+
'title' => Mage::Helper('livechat')->__('New operator must be affected to a store'),
|
26 |
+
'description' => $desc,
|
27 |
+
'url' => $url,
|
28 |
+
);
|
29 |
+
$message = Mage::getModel('adminnotification/inbox')->setData($feedData);
|
30 |
+
$message->save();
|
31 |
+
Mage::getSingleton('adminhtml/session')->addWarning($desc . '<br /><a href="'.$url.'">'.Mage::Helper('livechat')->__('Configure').'</a>');
|
32 |
+
}
|
33 |
+
return $this;
|
34 |
+
}
|
35 |
}
|
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 |
</Beck_LiveChat>
|
7 |
</modules>
|
8 |
<admin>
|
2 |
<config>
|
3 |
<modules>
|
4 |
<Beck_LiveChat>
|
5 |
+
<version>1.5.8</version>
|
6 |
</Beck_LiveChat>
|
7 |
</modules>
|
8 |
<admin>
|
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.
|
9 |
</Beck_LiveChat>
|
10 |
</modules>
|
11 |
</config>
|
5 |
<active>true</active>
|
6 |
<codePool>community</codePool>
|
7 |
<depends />
|
8 |
+
<version>1.5.8</version>
|
9 |
</Beck_LiveChat>
|
10 |
</modules>
|
11 |
</config>
|
app/locale/fr_FR/Beck_LiveChat.csv
CHANGED
@@ -124,4 +124,9 @@
|
|
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"
|
|
|
|
|
|
|
|
|
|
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"
|
128 |
+
"New operator must be affected to a store","Un nouvel opérateur doit être affecté à un magasin"
|
129 |
+
"The created operator %s must be affected to a store, whithout that he will never be considered online.","L'opérateur %s nouvellement créé doit être affecté à un magasin, sans cela il ne sera jamais considéré comme étant en ligne."
|
130 |
+
"Configure","Configurer"
|
131 |
+
"No store affected","Aucune affectation magasin"
|
132 |
+
"Affected stores","Magasins d'affectation"
|
package.xml
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>Beck_LiveChat</name>
|
4 |
-
<version>1.5.
|
5 |
<stability>stable</stability>
|
6 |
<license uri="http://www.opensource.org/licenses/osl-3.0.php">OSL v3.0</license>
|
7 |
<channel>community</channel>
|
@@ -21,6 +21,12 @@ Allow your customer to chat with your store's operators.
|
|
21 |
<h3>Improve you convert rate</h3>
|
22 |
By providing tips online.
|
23 |
Interact with your customer by sending them link to your product pages.
|
|
|
|
|
|
|
|
|
|
|
|
|
24 |
<h3>Change in v1.5.6</h3>
|
25 |
Added layout for LiveChat in popup windows (available at url [...]/livechat/popup/ )
|
26 |
<h3>Change in v1.5.5</h3>
|
@@ -30,9 +36,9 @@ Removed a forgotten debug code
|
|
30 |
<li>Added german translation</li></ul></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-
|
34 |
-
<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>
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>Beck_LiveChat</name>
|
4 |
+
<version>1.5.8</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>
|
21 |
<h3>Improve you convert rate</h3>
|
22 |
By providing tips online.
|
23 |
Interact with your customer by sending them link to your product pages.
|
24 |
+
<h3>Change in v1.5.8</h3>
|
25 |
+
Improved : when a new operator is created there is some message who says that you must affect him to a store.
|
26 |
+
The operator list allow you to see what store is affected for each operator.
|
27 |
+
<h3>Change in v1.5.7</h3>
|
28 |
+
Added an option to disabled displaying of LiveChat if no operator are present
|
29 |
+
Corrected : the page to delete operator’s store assignement don’t work
|
30 |
<h3>Change in v1.5.6</h3>
|
31 |
Added layout for LiveChat in popup windows (available at url [...]/livechat/popup/ )
|
32 |
<h3>Change in v1.5.5</h3>
|
36 |
<li>Added german translation</li></ul></description>
|
37 |
<notes>none</notes>
|
38 |
<authors><author><name>Fabrice Beck</name><user>auto-converted</user><email>fabrice.beck@fia-net.com</email></author></authors>
|
39 |
+
<date>2009-07-09</date>
|
40 |
+
<time>11:45:07</time>
|
41 |
+
<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="468b2d2fd54544ac9ec024cce5027599"/><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="Affectedstore.php" hash="78e58ead5038ee977d55e001d9528232"/><file name="Dispatched.php" hash="9052fa22cd9e07375d0de4f312c8bcf3"/><file name="Online.php" hash="1810c742fe22fd536798f2f76a11479c"/><file name="State.php" hash="c4367ea40d730b6b42e887fb0f57f758"/></dir><dir name="Renderer"><file name="Affectedstore.php" hash="d9ae8cae1bb11993e4d332b88f7a6108"/><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="1cb96970bf2ce33d47e84e754a7b5b96"/><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="1d3bd68781bc00c30979a03b6a3a66d2"/><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="4dd000825f0fa25ca8142aaf17793295"/><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="01fd2e9fb434cc507eb936f850f947e1"/></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="453f3e9cec8705f409713c37485c8947"/></dir></target></contents>
|
42 |
<compatible/>
|
43 |
<dependencies/>
|
44 |
</package>
|