Version Notes
Fix for non-static method
Download this release
Release Info
Developer | Feedaty |
Extension | feedaty |
Version | 1.1.31 |
Comparing to | |
See all releases |
Code changes from version 1.1.30 to 1.1.31
- app/code/community/Feedaty/Badge/Model/Order.php +1 -1
- app/code/community/Feedaty/Badge/Model/OrderStatuses.php +1 -1
- app/code/community/Feedaty/Badge/Model/PositionProduct.php +1 -1
- app/code/community/Feedaty/Badge/Model/PositionStore.php +1 -1
- app/code/community/Feedaty/Badge/Model/StyleProduct.php +1 -1
- app/code/community/Feedaty/Badge/Model/StyleStore.php +1 -2
- package.xml +5 -5
app/code/community/Feedaty/Badge/Model/Order.php
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
<?php
|
2 |
class Feedaty_Badge_Model_Order
|
3 |
{
|
4 |
-
public function toOptionArray()
|
5 |
{
|
6 |
$return = array(
|
7 |
array("value"=>"0","label"=>Mage::helper('adminhtml')->__("Newest reviews first")),
|
1 |
<?php
|
2 |
class Feedaty_Badge_Model_Order
|
3 |
{
|
4 |
+
public static function toOptionArray()
|
5 |
{
|
6 |
$return = array(
|
7 |
array("value"=>"0","label"=>Mage::helper('adminhtml')->__("Newest reviews first")),
|
app/code/community/Feedaty/Badge/Model/OrderStatuses.php
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
<?php
|
2 |
class Feedaty_Badge_Model_OrderStatuses
|
3 |
{
|
4 |
-
public function toOptionArray()
|
5 |
{
|
6 |
$statuses = Mage::getSingleton('sales/order_config')->getStatuses();
|
7 |
|
1 |
<?php
|
2 |
class Feedaty_Badge_Model_OrderStatuses
|
3 |
{
|
4 |
+
public static function toOptionArray()
|
5 |
{
|
6 |
$statuses = Mage::getSingleton('sales/order_config')->getStatuses();
|
7 |
|
app/code/community/Feedaty/Badge/Model/PositionProduct.php
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
<?php
|
2 |
class Feedaty_Badge_Model_PositionProduct
|
3 |
{
|
4 |
-
public function toOptionArray()
|
5 |
{
|
6 |
$return = array(
|
7 |
array("value"=>"content","label"=>Mage::helper('core')->__("After Content")),
|
1 |
<?php
|
2 |
class Feedaty_Badge_Model_PositionProduct
|
3 |
{
|
4 |
+
public static function toOptionArray()
|
5 |
{
|
6 |
$return = array(
|
7 |
array("value"=>"content","label"=>Mage::helper('core')->__("After Content")),
|
app/code/community/Feedaty/Badge/Model/PositionStore.php
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
<?php
|
2 |
class Feedaty_Badge_Model_PositionStore
|
3 |
{
|
4 |
-
public function toOptionArray()
|
5 |
{
|
6 |
$return = array(
|
7 |
array("value"=>"cms_page","label"=>Mage::helper('core')->__("Position Cms page")),
|
1 |
<?php
|
2 |
class Feedaty_Badge_Model_PositionStore
|
3 |
{
|
4 |
+
public static function toOptionArray()
|
5 |
{
|
6 |
$return = array(
|
7 |
array("value"=>"cms_page","label"=>Mage::helper('core')->__("Position Cms page")),
|
app/code/community/Feedaty/Badge/Model/StyleProduct.php
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
<?php
|
2 |
class Feedaty_Badge_Model_StyleProduct
|
3 |
{
|
4 |
-
public function toOptionArray()
|
5 |
{
|
6 |
if (strlen(Mage::getStoreConfig('feedaty_global/feedaty_preferences/feedaty_code')) == 0) return array();
|
7 |
$data = Feedaty_Badge_Model_WebService::_get_FeedatyData();
|
1 |
<?php
|
2 |
class Feedaty_Badge_Model_StyleProduct
|
3 |
{
|
4 |
+
public static function toOptionArray()
|
5 |
{
|
6 |
if (strlen(Mage::getStoreConfig('feedaty_global/feedaty_preferences/feedaty_code')) == 0) return array();
|
7 |
$data = Feedaty_Badge_Model_WebService::_get_FeedatyData();
|
app/code/community/Feedaty/Badge/Model/StyleStore.php
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
<?php
|
2 |
class Feedaty_Badge_Model_StyleStore
|
3 |
{
|
4 |
-
public function toOptionArray()
|
5 |
{
|
6 |
if (strlen(Mage::getStoreConfig('feedaty_global/feedaty_preferences/feedaty_code')) == 0) return array();
|
7 |
$data = Feedaty_Badge_Model_WebService::_get_FeedatyData();
|
@@ -11,7 +11,6 @@ class Feedaty_Badge_Model_StyleStore
|
|
11 |
$return[] = array('value'=>$k,'label'=>' <img src="'.$v['thumb'].'"><br />');
|
12 |
}
|
13 |
|
14 |
-
|
15 |
return $return;
|
16 |
}
|
17 |
}
|
1 |
<?php
|
2 |
class Feedaty_Badge_Model_StyleStore
|
3 |
{
|
4 |
+
public static function toOptionArray()
|
5 |
{
|
6 |
if (strlen(Mage::getStoreConfig('feedaty_global/feedaty_preferences/feedaty_code')) == 0) return array();
|
7 |
$data = Feedaty_Badge_Model_WebService::_get_FeedatyData();
|
11 |
$return[] = array('value'=>$k,'label'=>' <img src="'.$v['thumb'].'"><br />');
|
12 |
}
|
13 |
|
|
|
14 |
return $return;
|
15 |
}
|
16 |
}
|
package.xml
CHANGED
@@ -1,18 +1,18 @@
|
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>feedaty</name>
|
4 |
-
<version>1.1.
|
5 |
<stability>stable</stability>
|
6 |
<license uri="http://www.opensource.org/licenses/gpl-license.php">GPL</license>
|
7 |
<channel>community</channel>
|
8 |
<extends/>
|
9 |
<summary>Feedaty Widget</summary>
|
10 |
<description>Feedaty is a social commerce site dedicated to online stores for the professional management of customer feedback. The service is provided through a platform Saas (Software as a Service) and may be activated quickly and easily through a short integration process.</description>
|
11 |
-
<notes>Fix
|
12 |
<authors><author><name>Feedaty</name><user>feedtest</user><email>info@feedaty.com</email></author></authors>
|
13 |
-
<date>2014-
|
14 |
-
<time>
|
15 |
-
<contents><target name="magecommunity"><dir name="Feedaty"><dir name="Badge"><dir name="Block"><file name="LinkCsv.php" hash="92bf7932d32914adcc1b9547b59c7d49"/><file name="Product.php" hash="d896175131b871bf7f309e57ef5099dd"/></dir><dir name="Helper"><file name="Data.php" hash="51386589a569b1e52baa7f30f07a946b"/></dir><dir name="Model"><file name="Generate.php" hash="7d8f1cf3780f1a4d682196d324e5a4c2"/><file name="Observe.php" hash="1ae3add6a43960915658eb50dc2d0dd1"/><file name="Order.php" hash="
|
16 |
<compatible/>
|
17 |
<dependencies><required><php><min>4.3.0</min><max>6.0.0</max></php></required></dependencies>
|
18 |
</package>
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>feedaty</name>
|
4 |
+
<version>1.1.31</version>
|
5 |
<stability>stable</stability>
|
6 |
<license uri="http://www.opensource.org/licenses/gpl-license.php">GPL</license>
|
7 |
<channel>community</channel>
|
8 |
<extends/>
|
9 |
<summary>Feedaty Widget</summary>
|
10 |
<description>Feedaty is a social commerce site dedicated to online stores for the professional management of customer feedback. The service is provided through a platform Saas (Software as a Service) and may be activated quickly and easily through a short integration process.</description>
|
11 |
+
<notes>Fix for non-static method</notes>
|
12 |
<authors><author><name>Feedaty</name><user>feedtest</user><email>info@feedaty.com</email></author></authors>
|
13 |
+
<date>2014-07-01</date>
|
14 |
+
<time>09:20:40</time>
|
15 |
+
<contents><target name="magecommunity"><dir name="Feedaty"><dir name="Badge"><dir name="Block"><file name="LinkCsv.php" hash="92bf7932d32914adcc1b9547b59c7d49"/><file name="Product.php" hash="d896175131b871bf7f309e57ef5099dd"/></dir><dir name="Helper"><file name="Data.php" hash="51386589a569b1e52baa7f30f07a946b"/></dir><dir name="Model"><file name="Generate.php" hash="7d8f1cf3780f1a4d682196d324e5a4c2"/><file name="Observe.php" hash="1ae3add6a43960915658eb50dc2d0dd1"/><file name="Order.php" hash="b74f67579d1ff681ea2b8d839d9ff363"/><file name="OrderStatuses.php" hash="970170134ccd78a01634a313991a496d"/><file name="PositionProduct.php" hash="7e60f145e0d880040cd762de6dfe8e76"/><file name="PositionStore.php" hash="35ca96e1e98f06cf3e3ea9bc6df444ef"/><file name="StyleProduct.php" hash="121b25d3fb2351f97dcf6ade2850dea6"/><file name="StyleStore.php" hash="07a7566b25148f92d674a331827f5a77"/><file name="WebService.php" hash="907375644db521e93c2040c7ea360e53"/></dir><dir name="controllers"><dir name="Adminhtml"><file name="Badge.php" hash="5b9815ddacd49bdac7f4f3450621759b"/></dir><file name="IndexController.php" hash="90fc012d603a1f5b69af10fa6701b389"/></dir><dir name="etc"><file name="adminhtml.xml" hash="bfd9f0deeaa5f8eda6baa58caa768ca0"/><file name="config.xml" hash="37ec60555a49592b98eeb89334c5e54d"/><file name="system.xml" hash="beb93d5c964b5e4fb03af4050aac1141"/><file name="widget.xml" hash="f2b00c74bc9a0e7690be5cbe474efb47"/></dir></dir></dir></target><target name="magedesign"><dir name="frontend"><dir name="default"><dir name="default"><dir name="layout"><file name="Feedaty.xml" hash="eff88446ec32cc43a30a6c54a6f4937a"/></dir><dir name="template"><dir name="feedaty"><file name="base.phtml" hash="0009ab0914e8cb8ab1f3461ff2d6822b"/><file name="product_reviews.phtml" hash="f0978d0158078ab72ab1bad86b1a3933"/></dir></dir></dir></dir></dir></target><target name="magelocale"><dir name="it_IT"><file name="Feedaty.csv" hash="8a507edc136ea22a38cacfa21411534b"/></dir></target><target name="mageetc"><dir name="modules"><file name="Feedaty_Badge.xml" hash="e4e47863d6724079e09a6d4d53152275"/></dir></target></contents>
|
16 |
<compatible/>
|
17 |
<dependencies><required><php><min>4.3.0</min><max>6.0.0</max></php></required></dependencies>
|
18 |
</package>
|