Version Notes
Updated template to remove image tag when no image uploaded
Added fix for Mage_Core_Model_File_Uploader error
Download this release
Release Info
Developer | Magento Core Team |
Extension | Fishpigs_iBanners |
Version | 0.9.6 |
Comparing to | |
See all releases |
Code changes from version 0.9.4 to 0.9.6
- app/code/community/Fishpig/IBanners/Helper/Image.php +1 -1
- app/code/community/Fishpig/IBanners/Model/Group.php +1 -1
- app/code/community/Fishpig/IBanners/etc/config.xml +1 -1
- app/code/community/Fishpig/IBanners/notes.txt +7 -0
- app/design/frontend/base/default/template/ibanners/default.phtml +17 -13
- package.xml +6 -5
app/code/community/Fishpig/IBanners/Helper/Image.php
CHANGED
@@ -284,7 +284,7 @@ class Fishpig_iBanners_Helper_Image extends Mage_Core_Helper_Abstract
|
|
284 |
return $result['file'];
|
285 |
}
|
286 |
catch (Exception $e) {
|
287 |
-
if ($e->getCode() !=
|
288 |
throw $e;
|
289 |
}
|
290 |
}
|
284 |
return $result['file'];
|
285 |
}
|
286 |
catch (Exception $e) {
|
287 |
+
if ($e->getCode() != Varien_File_Uploader::TMP_NAME_EMPTY) {
|
288 |
throw $e;
|
289 |
}
|
290 |
}
|
app/code/community/Fishpig/IBanners/Model/Group.php
CHANGED
@@ -84,7 +84,7 @@ class Fishpig_iBanners_Model_Group extends Mage_Core_Model_Abstract
|
|
84 |
*/
|
85 |
public function getCarouselAuto()
|
86 |
{
|
87 |
-
if (
|
88 |
$duration = (int)Mage::getStoreConfig('ibanners/carousel/auto');
|
89 |
$this->setCarouselAuto($duration ? 1 : 0);
|
90 |
}
|
84 |
*/
|
85 |
public function getCarouselAuto()
|
86 |
{
|
87 |
+
if ($this->getData('carousel_auto') == '') {
|
88 |
$duration = (int)Mage::getStoreConfig('ibanners/carousel/auto');
|
89 |
$this->setCarouselAuto($duration ? 1 : 0);
|
90 |
}
|
app/code/community/Fishpig/IBanners/etc/config.xml
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
<config>
|
3 |
<modules>
|
4 |
<Fishpig_iBanners>
|
5 |
-
<version>0.9.
|
6 |
</Fishpig_iBanners>
|
7 |
</modules>
|
8 |
<global>
|
2 |
<config>
|
3 |
<modules>
|
4 |
<Fishpig_iBanners>
|
5 |
+
<version>0.9.6</version>
|
6 |
</Fishpig_iBanners>
|
7 |
</modules>
|
8 |
<global>
|
app/code/community/Fishpig/IBanners/notes.txt
CHANGED
@@ -7,6 +7,13 @@
|
|
7 |
# Bug Reports: help@fishpig.co.uk
|
8 |
##
|
9 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
10 |
23/08/2011 - v0.9.4
|
11 |
- Added filter for disabled banners in view block
|
12 |
|
7 |
# Bug Reports: help@fishpig.co.uk
|
8 |
##
|
9 |
|
10 |
+
02/09/2011 - v0.9.6
|
11 |
+
- Updated template to remove image tag when no image uploaded
|
12 |
+
- Added fix for Mage_Core_Model_File_Uploader error
|
13 |
+
|
14 |
+
v0.9.5
|
15 |
+
- Added fix for auto start not being overridden
|
16 |
+
|
17 |
23/08/2011 - v0.9.4
|
18 |
- Added filter for disabled banners in view block
|
19 |
|
app/design/frontend/base/default/template/ibanners/default.phtml
CHANGED
@@ -27,12 +27,14 @@
|
|
27 |
<ul>
|
28 |
<?php foreach($banners as $banner): ?>
|
29 |
<li id="ibanner-<?php echo $banner->getId() ?>" class="banner">
|
30 |
-
<?php if ($banner->
|
31 |
-
|
32 |
-
|
33 |
-
|
34 |
-
|
35 |
-
|
|
|
|
|
36 |
<?php endif; ?>
|
37 |
<?php if ($banner->getHtml()): ?>
|
38 |
<div class="html"><?php echo $banner->getHtml() ?></div>
|
@@ -47,13 +49,15 @@
|
|
47 |
*/
|
48 |
?>
|
49 |
<?php $banner = $banners->getFirstItem() ?>
|
50 |
-
<li class="banner">
|
51 |
-
<?php if ($banner->
|
52 |
-
|
53 |
-
|
54 |
-
|
55 |
-
|
56 |
-
|
|
|
|
|
57 |
<?php endif; ?>
|
58 |
<?php if ($banner->getHtml()): ?>
|
59 |
<div class="html"><?php echo $banner->getHtml() ?></div>
|
27 |
<ul>
|
28 |
<?php foreach($banners as $banner): ?>
|
29 |
<li id="ibanner-<?php echo $banner->getId() ?>" class="banner">
|
30 |
+
<?php if ($banner->getImageUrl()): ?>
|
31 |
+
<?php if ($banner->hasUrl()): ?>
|
32 |
+
<a href="<?php echo $banner->getUrl() ?>" title="<?php echo $this->escapeHtml($banner->getTitle()) ?>">
|
33 |
+
<?php endif; ?>
|
34 |
+
<img src="<?php echo $banner->getImageUrl() ?>" alt="<?php echo $this->escapeHtml($banner->getAltText()) ?>" />
|
35 |
+
<?php if ($banner->hasUrl()): ?>
|
36 |
+
</a>
|
37 |
+
<?php endif; ?>
|
38 |
<?php endif; ?>
|
39 |
<?php if ($banner->getHtml()): ?>
|
40 |
<div class="html"><?php echo $banner->getHtml() ?></div>
|
49 |
*/
|
50 |
?>
|
51 |
<?php $banner = $banners->getFirstItem() ?>
|
52 |
+
<li id="ibanner-<?php echo $banner->getId() ?>-2" class="banner">
|
53 |
+
<?php if ($banner->getImageUrl()): ?>
|
54 |
+
<?php if ($banner->hasUrl()): ?>
|
55 |
+
<a href="<?php echo $banner->getUrl() ?>" title="<?php echo $this->escapeHtml($banner->getTitle()) ?>">
|
56 |
+
<?php endif; ?>
|
57 |
+
<img src="<?php echo $banner->getImageUrl() ?>" alt="<?php echo $this->escapeHtml($banner->getAltText()) ?>" />
|
58 |
+
<?php if ($banner->hasUrl()): ?>
|
59 |
+
</a>
|
60 |
+
<?php endif; ?>
|
61 |
<?php endif; ?>
|
62 |
<?php if ($banner->getHtml()): ?>
|
63 |
<div class="html"><?php echo $banner->getHtml() ?></div>
|
package.xml
CHANGED
@@ -1,18 +1,19 @@
|
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>Fishpigs_iBanners</name>
|
4 |
-
<version>0.9.
|
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 grouped banner slideshows to showcase products and special offers.</summary>
|
10 |
<description>This module allows you to create multiple banner slideshows to be placed around your Magento store. By default, the module will add a banner slideshow to your homepage, however you can easily create more banner groups and add them any where you like!</description>
|
11 |
-
<notes>
|
|
|
12 |
<authors><author><name>fishpig</name><user>auto-converted</user><email>ben@fishpig.co.uk</email></author></authors>
|
13 |
-
<date>2011-
|
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"><dir name="Tab"><file name="Form.php" hash="bce2db8d35d26fbe9da910852169ff34"/></dir><file name="Form.php" hash="e9cd0d7436d36048706bc474704d2b82"/><file name="Tabs.php" hash="60a82a390e8580594885bceb19a13460"/></dir><dir name="Helper"><file name="Image.php" hash="da1821e82b38af686705efb53f5a1ca9"/></dir><file name="Edit.php" hash="93807e5b677fd064e49c547551507202"/><file name="Grid.php" hash="59ca8a1c3822e37f1e82f464589f6525"/></dir><dir name="Form"><dir name="Renderer"><file name="Useconfig.php" hash="df579ff6a4a783ed17d6c5bc6118e171"/></dir></dir><dir name="Group"><dir name="Edit"><dir name="Tab"><file name="Banners.php" hash="f13f72d714e73ba5481fe488b369c879"/><file name="Form.php" hash="4f04a01fc20940b8b82674e58d7bc54c"/></dir><file name="Form.php" hash="5b8f4f8649e974f80ea21de7f323788e"/><file name="Tabs.php" hash="d57a68d75dde73b39127dc8a932b858e"/></dir><file name="Edit.php" hash="1f3ca94777f0eb8a3363d245d9c5bc9d"/><file name="Grid.php" hash="2d86e326cb6825c8e7738e5c73abaf67"/></dir><file name="Banner.php" hash="181c9778d624e104ab3f8e729c58b3f7"/><file name="Group.php" hash="6a6ea8ad3f9e1e25dcf0411fa5347b9c"/></dir><file name="View.php" hash="6ee6a72caf09867c230edd82346f43b6"/></dir><dir name="Helper"><file name="Data.php" hash="22b6c9355bb8eeb8bab400a824109e24"/><file name="Image.php" hash="
|
16 |
<compatible/>
|
17 |
<dependencies/>
|
18 |
</package>
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>Fishpigs_iBanners</name>
|
4 |
+
<version>0.9.6</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 grouped banner slideshows to showcase products and special offers.</summary>
|
10 |
<description>This module allows you to create multiple banner slideshows to be placed around your Magento store. By default, the module will add a banner slideshow to your homepage, however you can easily create more banner groups and add them any where you like!</description>
|
11 |
+
<notes>Updated template to remove image tag when no image uploaded
|
12 |
+
Added fix for Mage_Core_Model_File_Uploader error</notes>
|
13 |
<authors><author><name>fishpig</name><user>auto-converted</user><email>ben@fishpig.co.uk</email></author></authors>
|
14 |
+
<date>2011-09-02</date>
|
15 |
+
<time>08:54:52</time>
|
16 |
+
<contents><target name="magecommunity"><dir name="Fishpig"><dir name="IBanners"><dir name="Block"><dir name="Adminhtml"><dir name="Banner"><dir name="Edit"><dir name="Tab"><file name="Form.php" hash="bce2db8d35d26fbe9da910852169ff34"/></dir><file name="Form.php" hash="e9cd0d7436d36048706bc474704d2b82"/><file name="Tabs.php" hash="60a82a390e8580594885bceb19a13460"/></dir><dir name="Helper"><file name="Image.php" hash="da1821e82b38af686705efb53f5a1ca9"/></dir><file name="Edit.php" hash="93807e5b677fd064e49c547551507202"/><file name="Grid.php" hash="59ca8a1c3822e37f1e82f464589f6525"/></dir><dir name="Form"><dir name="Renderer"><file name="Useconfig.php" hash="df579ff6a4a783ed17d6c5bc6118e171"/></dir></dir><dir name="Group"><dir name="Edit"><dir name="Tab"><file name="Banners.php" hash="f13f72d714e73ba5481fe488b369c879"/><file name="Form.php" hash="4f04a01fc20940b8b82674e58d7bc54c"/></dir><file name="Form.php" hash="5b8f4f8649e974f80ea21de7f323788e"/><file name="Tabs.php" hash="d57a68d75dde73b39127dc8a932b858e"/></dir><file name="Edit.php" hash="1f3ca94777f0eb8a3363d245d9c5bc9d"/><file name="Grid.php" hash="2d86e326cb6825c8e7738e5c73abaf67"/></dir><file name="Banner.php" hash="181c9778d624e104ab3f8e729c58b3f7"/><file name="Group.php" hash="6a6ea8ad3f9e1e25dcf0411fa5347b9c"/></dir><file name="View.php" hash="6ee6a72caf09867c230edd82346f43b6"/></dir><dir name="Helper"><file name="Data.php" hash="22b6c9355bb8eeb8bab400a824109e24"/><file name="Image.php" hash="92a06beda3aefa58577dd91556001115"/></dir><dir name="Model"><dir name="Mysql4"><dir name="Banner"><file name="Collection.php" hash="511a3aceff96f430a5fa44a3a7ff2b05"/></dir><dir name="Group"><file name="Collection.php" hash="ab6a49e01708c118052a696a0e09184c"/></dir><file name="Banner.php" hash="81752a0ab34bde996d9472ac67272472"/><file name="Group.php" hash="b3da18c52643f8a76fe6f2e98382c5da"/></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></dir></dir><file name="Banner.php" hash="c013618422ba7dd2920312e989024166"/><file name="Group.php" hash="533eeb2eda8ea43fb1417d58cb699f40"/></dir><dir name="controllers"><dir name="Adminhtml"><file name="BannerController.php" hash="ab4015467f0f37f0cedbb344d3021e8f"/><file name="GroupController.php" hash="f58f269a86c211095314b1f41f212ffa"/></dir></dir><dir name="etc"><file name="adminhtml.xml" hash="4e6ded4671403e01776cf9361c59d33d"/><file name="config.xml" hash="29c08083bc0a10363ed3c58402ed65bb"/><file name="system.xml" hash="cc01ba370a7fe9946a3d761a9e7975f3"/></dir><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"/></dir></dir><file name="license.txt" hash="257eae92a36bdaaf9584fbf8ba76d1c6"/><file name="notes.txt" hash="a547c743559b3c8939bf8c3a2cb38bf7"/></dir></dir></target><target name="magedesign"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="layout"><file name="ibanners.xml" hash="daa28ce83b6f288108c87bc352475ca8"/></dir></dir></dir></dir><dir name="frontend"><dir name="base"><dir name="default"><dir name="layout"><file name="ibanners.xml" hash="17174e0baab8b5e672912963a74603bc"/></dir><dir name="template"><dir name="ibanners"><file name="default.phtml" hash="1b96c82b241215187e5aa7653e2939e7"/></dir></dir></dir></dir></dir></target><target name="mage"><dir name="app"><dir name="etc"><dir name="modules"><file name="Fishpig_iBanners.xml" hash="d3476db8a3f950a7bf249b5382b5c42e"/></dir></dir></dir></target><target name="mageweb"><dir name="js"><dir name="fishpig"><file name="carousel.min.js" hash="cfd7a8d08a6dca87e4211a400877716e"/></dir></dir></target><target name="mageskin"><dir name="frontend"><dir name="base"><dir name="default"><dir name="css"><file name="ibanners.css" hash="6bdf6ea79a22cb035d41f1f37b7d6a11"/></dir></dir></dir></dir></target></contents>
|
17 |
<compatible/>
|
18 |
<dependencies/>
|
19 |
</package>
|