Version Notes
Adding storeView hidden variable improving the promotions feature
Download this release
Release Info
Developer | Miguel Ángel Martínez Triviño |
Extension | Beecoder_Beeshopy |
Version | 3.0.0 |
Comparing to | |
See all releases |
Code changes from version 2.9.0 to 3.0.0
- app/code/community/Beecoder/Beeshopy/Block/BeetailerCode.php +11 -0
- app/code/community/Beecoder/Beeshopy/Model/Api.php +1 -1
- app/code/community/Beecoder/Beeshopy/changelog.txt +4 -0
- app/design/frontend/base/default/layout/beeshopy.xml +1 -5
- app/design/frontend/base/default/template/beeshopy/beetailercode.phtml +4 -0
- package.xml +8 -7
app/code/community/Beecoder/Beeshopy/Block/BeetailerCode.php
ADDED
@@ -0,0 +1,11 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Beetailer checkout tracking code
|
4 |
+
*
|
5 |
+
* @category Beetailer
|
6 |
+
* @package Beecoder_Beeshopy
|
7 |
+
*/
|
8 |
+
|
9 |
+
class Beecoder_Beeshopy_Block_BeetailerCode extends Mage_Core_Block_Template
|
10 |
+
{
|
11 |
+
}
|
app/code/community/Beecoder/Beeshopy/Model/Api.php
CHANGED
@@ -110,7 +110,7 @@ class Beecoder_Beeshopy_Model_Api extends Mage_Catalog_Model_Api_Resource
|
|
110 |
/* Used to know if module is installed*/
|
111 |
public function checkModule()
|
112 |
{
|
113 |
-
return array("api_version" => '
|
114 |
}
|
115 |
|
116 |
/*Auxiliar functions*/
|
110 |
/* Used to know if module is installed*/
|
111 |
public function checkModule()
|
112 |
{
|
113 |
+
return array("api_version" => '3.0.0', "magento_version" => Mage::getVersion());
|
114 |
}
|
115 |
|
116 |
/*Auxiliar functions*/
|
app/code/community/Beecoder/Beeshopy/changelog.txt
CHANGED
@@ -1,5 +1,9 @@
|
|
1 |
== Module changelog ==
|
2 |
|
|
|
|
|
|
|
|
|
3 |
=== 2.9.0 (11-06-12) ===
|
4 |
|
5 |
* Fixed productUrl method lock in Magento 1.4.1.1
|
1 |
== Module changelog ==
|
2 |
|
3 |
+
=== 3.0.0 (04-15-13) ===
|
4 |
+
|
5 |
+
* Adding storeView hidden variable improving the promotions feature
|
6 |
+
|
7 |
=== 2.9.0 (11-06-12) ===
|
8 |
|
9 |
* Fixed productUrl method lock in Magento 1.4.1.1
|
app/design/frontend/base/default/layout/beeshopy.xml
CHANGED
@@ -8,11 +8,7 @@
|
|
8 |
|
9 |
<default>
|
10 |
<reference name="before_body_end">
|
11 |
-
<block type="
|
12 |
-
<action method="setText">
|
13 |
-
<text><![CDATA[ <script type='text/javascript' src='//www.beetailer.com/javascripts/beetailer.js'></script> ]]> </text>
|
14 |
-
</action>
|
15 |
-
</block>
|
16 |
</reference>
|
17 |
</default>
|
18 |
</layout>
|
8 |
|
9 |
<default>
|
10 |
<reference name="before_body_end">
|
11 |
+
<block type="beecoder_beeshopy/beetailerCode" name="beecoderbeeshopy_beetailercode" template='beeshopy/beetailercode.phtml'/>
|
|
|
|
|
|
|
|
|
12 |
</reference>
|
13 |
</default>
|
14 |
</layout>
|
app/design/frontend/base/default/template/beeshopy/beetailercode.phtml
ADDED
@@ -0,0 +1,4 @@
|
|
|
|
|
|
|
|
|
1 |
+
<!-- Beetailer code -->
|
2 |
+
<script type='text/javascript'> var beetailer_storeview = '<?php echo(Mage::app()->getStore()->getStoreId());?>';</script>
|
3 |
+
<script type='text/javascript' src='//www.beetailer.com/javascripts/beetailer.js'></script>
|
4 |
+
<!-- EO Beetailer code -->
|
package.xml
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>Beecoder_Beeshopy</name>
|
4 |
-
<version>
|
5 |
<stability>stable</stability>
|
6 |
<license>OSL v3.0</license>
|
7 |
<channel>community</channel>
|
@@ -11,11 +11,12 @@ Beeshopy extension for Magento, it allows you to integrates your magento store w
|
|
11 |
<description>Custom Module that allows you to connect with beeshopy service and integrates your magento store with Facebook. 
|
12 |

|
13 |
It contains a custom API and cart processing.</description>
|
14 |
-
<notes>
|
15 |
-
|
16 |
-
<
|
17 |
-
<
|
18 |
-
<
|
|
|
19 |
<compatible/>
|
20 |
-
<dependencies
|
21 |
</package>
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>Beecoder_Beeshopy</name>
|
4 |
+
<version>3.0.0</version>
|
5 |
<stability>stable</stability>
|
6 |
<license>OSL v3.0</license>
|
7 |
<channel>community</channel>
|
11 |
<description>Custom Module that allows you to connect with beeshopy service and integrates your magento store with Facebook. 
|
12 |

|
13 |
It contains a custom API and cart processing.</description>
|
14 |
+
<notes>Adding storeView hidden variable improving the promotions feature
|
15 |
+
</notes>
|
16 |
+
<authors><author><name>Miguel Ángel Martínez Triviño</name><user>n3uro5i5</user><email>migmartri@gmail.com</email></author></authors>
|
17 |
+
<date>2013-04-17</date>
|
18 |
+
<time>01:58:51</time>
|
19 |
+
<contents><target name="magecommunity"><dir><dir name="Beecoder"><dir name="Beeshopy"><dir name="Block"><file name="BeetailerCode.php" hash="5ebd139c74329ed65008af77e8d98eb0"/><file name="Track.php" hash="a40d400b02f73d5b4dea35c348ffee00"/></dir><dir name="Helper"><file name="Data.php" hash="ead88c0b629856526d39e7fb6f3a4ca5"/></dir><dir name="Model"><file name="Api.php" hash="eec49c031eff1a5dbc7b3d690c13d364"/></dir><file name="changelog.txt" hash="409c546652a1d1d9f0013f9a7cdb3e1e"/><dir name="controllers"><file name="AdminController.php" hash="ec76e2b55bb772b244d9fc2e06a2223e"/><file name="IndexController.php" hash="0c177b543cf62d6bcd5617c6713032d3"/></dir><dir name="etc"><file name="api.xml" hash="507ae656ea724a77def33efd8429d674"/><file name="config.xml" hash="1abbaa83f8ce922322007d06933909ac"/></dir><file name=".changelog.txt.swp" hash="d3c007df4226cb4c2198c4c2e1528870"/></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Beecoder_Beeshopy.xml" hash="55666ef45f08dab44b138e49532ca3b8"/></dir></target><target name="magedesign"><dir name="frontend"><dir name="base"><dir name="default"><dir name="layout"><file name="beeshopy.xml" hash="39dceda3708b265ef734334905c566f3"/></dir><dir name="template"><dir name="beeshopy"><file name="track.phtml" hash="47c95001bb55042c5ae7d8ee4b03cccf"/><file name="beetailercode.phtml" hash="ae2644a2449ff3b0d9929da9cba85a59"/></dir></dir></dir></dir></dir></target></contents>
|
20 |
<compatible/>
|
21 |
+
<dependencies><required><php><min>5.2.0</min><max>6.0.0</max></php></required></dependencies>
|
22 |
</package>
|