Version Notes
For changes, please see http://fishpig.co.uk/magento/extensions/ibanners/#changelog
Download this release
Release Info
Developer | fishpig |
Extension | Fishpigs_iBanners |
Version | 1.2.4.2 |
Comparing to | |
See all releases |
Code changes from version 1.2.4.1 to 1.2.4.2
- app/code/community/Fishpig/IBanners/FPAdmin/Block/Adminhtml/Extend.php +2 -2
- app/code/community/Fishpig/IBanners/FPAdmin/etc/config.xml +3 -3
- app/code/community/Fishpig/IBanners/controllers/Adminhtml/IBanners/BannerController.php +10 -0
- app/code/community/Fishpig/IBanners/controllers/Adminhtml/IBanners/GroupController.php +10 -0
- app/code/community/Fishpig/IBanners/controllers/Adminhtml/IBannersController.php +10 -0
- app/code/community/Fishpig/IBanners/etc/config.xml +1 -1
- app/code/community/Fishpig/IBanners/notes.txt +4 -1
- app/code/community/Fishpig/IBanners/sql/ibanners_setup/mysql4-upgrade-1.2.4.1-1.2.4.2.php +13 -0
- package.xml +5 -5
app/code/community/Fishpig/IBanners/FPAdmin/Block/Adminhtml/Extend.php
CHANGED
@@ -43,7 +43,7 @@ implements Mage_Adminhtml_Block_Widget_Tab_Interface
|
|
43 |
protected function _construct()
|
44 |
{
|
45 |
$this->setTemplate('small.phtml');
|
46 |
-
|
47 |
return parent::_construct();
|
48 |
}
|
49 |
|
@@ -109,7 +109,7 @@ implements Mage_Adminhtml_Block_Widget_Tab_Interface
|
|
109 |
|
110 |
return $winners;
|
111 |
}
|
112 |
-
|
113 |
return false;
|
114 |
}
|
115 |
|
43 |
protected function _construct()
|
44 |
{
|
45 |
$this->setTemplate('small.phtml');
|
46 |
+
|
47 |
return parent::_construct();
|
48 |
}
|
49 |
|
109 |
|
110 |
return $winners;
|
111 |
}
|
112 |
+
|
113 |
return false;
|
114 |
}
|
115 |
|
app/code/community/Fishpig/IBanners/FPAdmin/etc/config.xml
CHANGED
@@ -3,14 +3,14 @@
|
|
3 |
<fishpig>
|
4 |
<extend>
|
5 |
<Fishpig_Bolt>
|
6 |
-
<url><![CDATA[magento/extensions/
|
7 |
<image>bolt.png</image>
|
8 |
<title>Bolt</title>
|
9 |
<subtitle>Full Page Cache</subtitle>
|
10 |
<short_definition>Add enterprise level caching to Magento community with Bolt, Magento's fastest Full Page Cache extension.</short_definition>
|
11 |
</Fishpig_Bolt>
|
12 |
<Fishpig_Opti>
|
13 |
-
<url><![CDATA[magento/extensions/
|
14 |
<image>opti.png</image>
|
15 |
<title>Opti</title>
|
16 |
<subtitle>Minify Magento</subtitle>
|
@@ -45,7 +45,7 @@
|
|
45 |
<short_definition>Create SEO landing pages quickly and easily using AttributeSplash Pro. Decide which products you want to display based on multiple attribute filters, category filters and price filters.</short_definition>
|
46 |
</Fishpig_AttributeSplashPro>
|
47 |
<Fishpig_BasketShipping>
|
48 |
-
<url><![CDATA[magento/extensions/
|
49 |
<image>basket-shipping.png</image>
|
50 |
<title>Basket Shipping</title>
|
51 |
<subtitle>Automatically set the Shipping Method</subtitle>
|
3 |
<fishpig>
|
4 |
<extend>
|
5 |
<Fishpig_Bolt>
|
6 |
+
<url><![CDATA[magento/extensions/full-page-cache/]]></url>
|
7 |
<image>bolt.png</image>
|
8 |
<title>Bolt</title>
|
9 |
<subtitle>Full Page Cache</subtitle>
|
10 |
<short_definition>Add enterprise level caching to Magento community with Bolt, Magento's fastest Full Page Cache extension.</short_definition>
|
11 |
</Fishpig_Bolt>
|
12 |
<Fishpig_Opti>
|
13 |
+
<url><![CDATA[magento/extensions/minify/]]></url>
|
14 |
<image>opti.png</image>
|
15 |
<title>Opti</title>
|
16 |
<subtitle>Minify Magento</subtitle>
|
45 |
<short_definition>Create SEO landing pages quickly and easily using AttributeSplash Pro. Decide which products you want to display based on multiple attribute filters, category filters and price filters.</short_definition>
|
46 |
</Fishpig_AttributeSplashPro>
|
47 |
<Fishpig_BasketShipping>
|
48 |
+
<url><![CDATA[magento/extensions/automatically-set-shipping-method/]]></url>
|
49 |
<image>basket-shipping.png</image>
|
50 |
<title>Basket Shipping</title>
|
51 |
<subtitle>Automatically set the Shipping Method</subtitle>
|
app/code/community/Fishpig/IBanners/controllers/Adminhtml/IBanners/BannerController.php
CHANGED
@@ -175,4 +175,14 @@ class Fishpig_iBanners_Adminhtml_iBanners_BannerController extends Fishpig_iBann
|
|
175 |
|
176 |
return Mage::registry('ibanners_banner');
|
177 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
178 |
}
|
175 |
|
176 |
return Mage::registry('ibanners_banner');
|
177 |
}
|
178 |
+
|
179 |
+
/**
|
180 |
+
* Determine ACL permissions
|
181 |
+
*
|
182 |
+
* @return bool
|
183 |
+
*/
|
184 |
+
protected function _isAllowed()
|
185 |
+
{
|
186 |
+
return true;
|
187 |
+
}
|
188 |
}
|
app/code/community/Fishpig/IBanners/controllers/Adminhtml/IBanners/GroupController.php
CHANGED
@@ -158,4 +158,14 @@ class Fishpig_iBanners_Adminhtml_iBanners_GroupController extends Fishpig_iBanne
|
|
158 |
|
159 |
return Mage::registry('ibanners_group');
|
160 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
161 |
}
|
158 |
|
159 |
return Mage::registry('ibanners_group');
|
160 |
}
|
161 |
+
|
162 |
+
/**
|
163 |
+
* Determine ACL permissions
|
164 |
+
*
|
165 |
+
* @return bool
|
166 |
+
*/
|
167 |
+
protected function _isAllowed()
|
168 |
+
{
|
169 |
+
return true;
|
170 |
+
}
|
171 |
}
|
app/code/community/Fishpig/IBanners/controllers/Adminhtml/IBannersController.php
CHANGED
@@ -65,4 +65,14 @@ class Fishpig_iBanners_Adminhtml_iBannersController extends Fishpig_iBanners_Con
|
|
65 |
$block->toHtml()
|
66 |
);
|
67 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
68 |
}
|
65 |
$block->toHtml()
|
66 |
);
|
67 |
}
|
68 |
+
|
69 |
+
/**
|
70 |
+
* Determine ACL permissions
|
71 |
+
*
|
72 |
+
* @return bool
|
73 |
+
*/
|
74 |
+
protected function _isAllowed()
|
75 |
+
{
|
76 |
+
return true;
|
77 |
+
}
|
78 |
}
|
app/code/community/Fishpig/IBanners/etc/config.xml
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
<config>
|
3 |
<modules>
|
4 |
<Fishpig_iBanners>
|
5 |
-
<version>1.2.4.
|
6 |
</Fishpig_iBanners>
|
7 |
</modules>
|
8 |
<global>
|
2 |
<config>
|
3 |
<modules>
|
4 |
<Fishpig_iBanners>
|
5 |
+
<version>1.2.4.2</version>
|
6 |
</Fishpig_iBanners>
|
7 |
</modules>
|
8 |
<global>
|
app/code/community/Fishpig/IBanners/notes.txt
CHANGED
@@ -8,7 +8,10 @@
|
|
8 |
##
|
9 |
|
10 |
TODO
|
11 |
-
- Convert animation and control values to
|
|
|
|
|
|
|
12 |
|
13 |
21/01/2014 - 1.2.4.0
|
14 |
- Fixed menu link in Magento Admin
|
8 |
##
|
9 |
|
10 |
TODO
|
11 |
+
- Convert animation and control values to serialised single columns
|
12 |
+
|
13 |
+
02/09/2015 - 1.2.4.2
|
14 |
+
- Added in url_target field.
|
15 |
|
16 |
21/01/2014 - 1.2.4.0
|
17 |
- Fixed menu link in Magento Admin
|
app/code/community/Fishpig/IBanners/sql/ibanners_setup/mysql4-upgrade-1.2.4.1-1.2.4.2.php
ADDED
@@ -0,0 +1,13 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* @category Fishpig
|
4 |
+
* @package Fishpig_iBanners
|
5 |
+
* @license http://fishpig.co.uk/license.txt
|
6 |
+
* @author Ben Tideswell <help@fishpig.co.uk>
|
7 |
+
*/
|
8 |
+
|
9 |
+
$this->startSetup();
|
10 |
+
|
11 |
+
$this->getConnection()->addColumn($this->getTable('ibanners_banner'), 'url_target', " varchar(32) NOT NULL default ''");
|
12 |
+
|
13 |
+
$this->endSetup();
|
package.xml
CHANGED
@@ -1,18 +1,18 @@
|
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>Fishpigs_iBanners</name>
|
4 |
-
<version>1.2.4.
|
5 |
<stability>stable</stability>
|
6 |
<license uri="http://fishpig.co.uk/license.txt">FishPig EULA</license>
|
7 |
<channel>community</channel>
|
8 |
<extends/>
|
9 |
<summary>Create multiple banner slideshows for your site.</summary>
|
10 |
<description>Create multiple banner slideshows for your site.</description>
|
11 |
-
<notes>For changes, please see fishpig.co.uk/magento/extensions/ibanners/#changelog</notes>
|
12 |
<authors><author><name>fishpig</name><user>fishpig</user><email>ben@fishpig.co.uk</email></author></authors>
|
13 |
-
<date>2015-
|
14 |
-
<time>
|
15 |
-
<contents><target name="magecommunity"><dir name="Fishpig"><dir name="IBanners"><dir name="Block"><dir name="Adminhtml"><dir name="Banner"><dir name="Edit"><file name="Form.php" hash="e9cd0d7436d36048706bc474704d2b82"/><dir name="Tab"><file name="Form.php" hash="a6ab04d3bb183e32935e3e285fbdabd5"/></dir><file name="Tabs.php" hash="60a82a390e8580594885bceb19a13460"/></dir><file name="Edit.php" hash="93807e5b677fd064e49c547551507202"/><file name="Grid.php" hash="193cf462223dc0a24069c85001baf6d9"/><dir name="Helper"><file name="Image.php" hash="da1821e82b38af686705efb53f5a1ca9"/></dir></dir><file name="Banner.php" hash="181c9778d624e104ab3f8e729c58b3f7"/><file name="Dashboard.php" hash="e4e5bfd422325aeb4810022e72dbb61c"/><file name="Extend.php" hash="065897186d7dd97b354cdd4863b75b1d"/><dir name="Form"><dir name="Renderer"><file name="Useconfig.php" hash="df579ff6a4a783ed17d6c5bc6118e171"/></dir></dir><dir name="Group"><dir name="Edit"><file name="Form.php" hash="5b8f4f8649e974f80ea21de7f323788e"/><dir name="Tab"><file name="Banners.php" hash="f13f72d714e73ba5481fe488b369c879"/><file name="Form.php" hash="67ab47bbe207e41b7542cddc15401590"/></dir><file name="Tabs.php" hash="d57a68d75dde73b39127dc8a932b858e"/></dir><file name="Edit.php" hash="1f3ca94777f0eb8a3363d245d9c5bc9d"/><file name="Grid.php" hash="4f91dc562530e2713fe4bceed61bce46"/></dir><file name="Group.php" hash="6a6ea8ad3f9e1e25dcf0411fa5347b9c"/></dir><file name="View.php" hash="5dd113d04a13f11f4d267916313dc473"/></dir><dir name="Controller"><dir name="Adminhtml"><file name="Abstract.php" hash="8ac27928c37172777bf94c75bf3af06f"/></dir></dir><dir name="FPAdmin"><dir name="Block"><dir name="Adminhtml"><file name="Extend.php" hash="
|
16 |
<compatible/>
|
17 |
<dependencies><required><php><min>5.2.0</min><max>6.0.0</max></php></required></dependencies>
|
18 |
</package>
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>Fishpigs_iBanners</name>
|
4 |
+
<version>1.2.4.2</version>
|
5 |
<stability>stable</stability>
|
6 |
<license uri="http://fishpig.co.uk/license.txt">FishPig EULA</license>
|
7 |
<channel>community</channel>
|
8 |
<extends/>
|
9 |
<summary>Create multiple banner slideshows for your site.</summary>
|
10 |
<description>Create multiple banner slideshows for your site.</description>
|
11 |
+
<notes>For changes, please see http://fishpig.co.uk/magento/extensions/ibanners/#changelog</notes>
|
12 |
<authors><author><name>fishpig</name><user>fishpig</user><email>ben@fishpig.co.uk</email></author></authors>
|
13 |
+
<date>2015-09-02</date>
|
14 |
+
<time>09:45:47</time>
|
15 |
+
<contents><target name="magecommunity"><dir name="Fishpig"><dir name="IBanners"><dir name="Block"><dir name="Adminhtml"><dir name="Banner"><dir name="Edit"><file name="Form.php" hash="e9cd0d7436d36048706bc474704d2b82"/><dir name="Tab"><file name="Form.php" hash="a6ab04d3bb183e32935e3e285fbdabd5"/></dir><file name="Tabs.php" hash="60a82a390e8580594885bceb19a13460"/></dir><file name="Edit.php" hash="93807e5b677fd064e49c547551507202"/><file name="Grid.php" hash="193cf462223dc0a24069c85001baf6d9"/><dir name="Helper"><file name="Image.php" hash="da1821e82b38af686705efb53f5a1ca9"/></dir></dir><file name="Banner.php" hash="181c9778d624e104ab3f8e729c58b3f7"/><file name="Dashboard.php" hash="e4e5bfd422325aeb4810022e72dbb61c"/><file name="Extend.php" hash="065897186d7dd97b354cdd4863b75b1d"/><dir name="Form"><dir name="Renderer"><file name="Useconfig.php" hash="df579ff6a4a783ed17d6c5bc6118e171"/></dir></dir><dir name="Group"><dir name="Edit"><file name="Form.php" hash="5b8f4f8649e974f80ea21de7f323788e"/><dir name="Tab"><file name="Banners.php" hash="f13f72d714e73ba5481fe488b369c879"/><file name="Form.php" hash="67ab47bbe207e41b7542cddc15401590"/></dir><file name="Tabs.php" hash="d57a68d75dde73b39127dc8a932b858e"/></dir><file name="Edit.php" hash="1f3ca94777f0eb8a3363d245d9c5bc9d"/><file name="Grid.php" hash="4f91dc562530e2713fe4bceed61bce46"/></dir><file name="Group.php" hash="6a6ea8ad3f9e1e25dcf0411fa5347b9c"/></dir><file name="View.php" hash="5dd113d04a13f11f4d267916313dc473"/></dir><dir name="Controller"><dir name="Adminhtml"><file name="Abstract.php" hash="8ac27928c37172777bf94c75bf3af06f"/></dir></dir><dir name="FPAdmin"><dir name="Block"><dir name="Adminhtml"><file name="Extend.php" hash="8f36bb27a8522adc7a5b7f6c5866fa00"/></dir></dir><dir name="etc"><file name="config.xml" hash="ed74f1d4f313806728ef7d8b6866564e"/></dir><dir name="template"><file name="large.phtml" hash="0b2108b293d9dd694b2e31b0d3c84273"/><file name="small.phtml" hash="0aba9ac21006fa9f7811911d352bc89a"/></dir></dir><dir name="Helper"><file name="Data.php" hash="aeaa36a9c56477944b190b63442fc89d"/><file name="Image.php" hash="92a06beda3aefa58577dd91556001115"/></dir><dir name="Model"><file name="Banner.php" hash="eb4e6aa9c2ce9c849ebc773c88615456"/><file name="Group.php" hash="095c22eb1f93aafb57effca8709f5338"/><dir name="Mysql4"><dir name="Banner"><file name="Collection.php" hash="511a3aceff96f430a5fa44a3a7ff2b05"/></dir><file name="Banner.php" hash="81752a0ab34bde996d9472ac67272472"/><dir name="Group"><file name="Collection.php" hash="ab6a49e01708c118052a696a0e09184c"/></dir><file name="Group.php" hash="65169f143695653cafa08a3aeca28904"/></dir><dir name="System"><dir name="Config"><dir name="Source"><dir name="Carousel"><file name="Effect.php" hash="b615ef28aa59aed914dd95a0242cfc9e"/><file name="Transition.php" hash="290f6abe41d0d44f72f8188a77f8e475"/></dir><dir name="Controls"><file name="Position.php" hash="fe9d0c6845fd0fc28603baee7b053c32"/></dir></dir></dir></dir></dir><dir name="controllers"><dir name="Adminhtml"><dir name="IBanners"><file name="BannerController.php" hash="3cd9771b4d5d28af824e28ee39859884"/><file name="GroupController.php" hash="1883014cb46eec97e349ab1974568bd2"/></dir><file name="IBannersController.php" hash="ea8db3c2307bd83c195ffc2e3d8241fb"/></dir></dir><dir name="etc"><file name="adminhtml.xml" hash="2b7421933971edba033e7287580c3183"/><file name="config.xml" hash="d56c1c166840ae6033d509002590cf47"/><file name="system.xml" hash="e99f8867801b68adb8a0e0cd0e136685"/></dir><file name="license.txt" hash="257eae92a36bdaaf9584fbf8ba76d1c6"/><file name="notes.txt" hash="a5516a84c658b0b82eec71fbd7ff27d0"/><dir name="sql"><dir name="ibanners_setup"><file name="mysql4-install-0.1.0.php" hash="62e4961272f2d697595002b006e72731"/><file name="mysql4-upgrade-0.5.2-0.5.3.php" hash="2e85887fb121d988357a45785d9f06df"/><file name="mysql4-upgrade-0.5.4-0.5.5.php" hash="a16fd4c674ed65eed1c7cee851960d28"/><file name="mysql4-upgrade-0.5.5-0.5.6.php" hash="a002305ec4b958c7213309d874b349f8"/><file name="mysql4-upgrade-0.9.0-0.9.1.php" hash="b970018526e15b6fc938b1866c5bfd81"/><file name="mysql4-upgrade-0.9.1-0.9.2.php" hash="07ba18c243e573655e43c64ee1a0d876"/><file name="mysql4-upgrade-1.0.4-1.0.5.php" hash="7f1cb0ec0dca8a5a4cd07ea3e9444cf7"/><file name="mysql4-upgrade-1.0.5-1.0.6.php" hash="2a430094f423b90adead0fcc6defc26e"/><file name="mysql4-upgrade-1.2.4.1-1.2.4.2.php" hash="9920a17b0dd8411577f15ae37882bff2"/></dir></dir></dir></dir></target><target name="magedesign"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="layout"><file name="ibanners.xml" hash="49afe944f6ccfc7033b86c7cb719c361"/></dir><dir name="template"><dir name="ibanners"><file name="getcode.phtml" hash="79cd6c31a32d21071fa5c7645f629053"/></dir></dir></dir></dir></dir><dir name="frontend"><dir name="base"><dir name="default"><dir name="layout"><file name="ibanners.xml" hash="a68d69986eef07a540f3313cee0a0e7d"/></dir><dir name="template"><dir name="ibanners"><file name="default.phtml" hash="677f081bb8e40f62771abec88aac857c"/></dir></dir></dir></dir></dir></target><target name="mageweb"><dir name="js"><dir name="fishpig"><file name="carousel.min.js" hash="cfd7a8d08a6dca87e4211a400877716e"/></dir></dir><dir name="app"><dir name="etc"><dir name="modules"><file name="Fishpig_iBanners.xml" hash="0b9289cca030da9b13e84ab183f18892"/></dir></dir></dir></target><target name="mageskin"><dir name="frontend"><dir name="base"><dir name="default"><dir name="css"><file name="ibanners.css" hash="f39554b3dcdaad686da4093e59b4efef"/></dir><dir name="images"><dir name="ibanners"><file name="arrow-left.png" hash="a587a6ef8ed482ce83b468b2f8b90008"/><file name="arrow-right.png" hash="001286015205ecf53766877a1d92a784"/></dir></dir></dir></dir></dir><dir name="adminhtml"><dir name="default"><dir name="default"><file name="ibanners.css" hash="328b9e66068670364e620f6e5b194ce5"/></dir></dir></dir></target></contents>
|
16 |
<compatible/>
|
17 |
<dependencies><required><php><min>5.2.0</min><max>6.0.0</max></php></required></dependencies>
|
18 |
</package>
|