Version Notes
Follow Steps for Installation and Configuration
Copy all stuff from the source file and Paste directly on Root directory of your Website - System will automatically place all necessary files and directories on required locations, To Display this Block on CMS Page - Add this block declaration {{block type="bannerslider/bannerslider" name="bannerslider" template="bannerslider/bannerslider.phtml"}} in Any CMS page from Admin.
Download this release
Release Info
Developer | Perception |
Extension | Perception_Bannerpro |
Version | 1.0.1 |
Comparing to | |
See all releases |
Code changes from version 1.0.0 to 1.0.1
- app/code/local/Perception/Bannerpro/Block/Adminhtml/Bannerpro/Edit/Tab/Form.php +3 -1
- app/code/local/Perception/Bannerpro/Block/Adminhtml/Bannerpro/Grid.php +1 -0
- app/code/local/Perception/Bannerpro/Block/Bannerpro.php +6 -0
- app/code/local/Perception/Bannerpro/etc/system.xml +5 -5
- app/design/frontend/default/default/template/bannerpro/bannerpro.phtml +37 -33
- package.xml +23 -47
- skin/frontend/default/default/banner/bannerpro.css +1 -1
app/code/local/Perception/Bannerpro/Block/Adminhtml/Bannerpro/Edit/Tab/Form.php
CHANGED
@@ -47,7 +47,9 @@ class Perception_Bannerpro_Block_Adminhtml_Bannerpro_Edit_Tab_Form extends Mage_
|
|
47 |
'name' => 'stores[]',
|
48 |
'value' => Mage::app()->getStore(true)->getId()
|
49 |
));
|
50 |
-
|
|
|
|
|
51 |
}
|
52 |
|
53 |
$fieldset->addField('effects', 'select', array(
|
47 |
'name' => 'stores[]',
|
48 |
'value' => Mage::app()->getStore(true)->getId()
|
49 |
));
|
50 |
+
if(Mage::app()->getStore(true)->getId() != 1) {
|
51 |
+
$model->setStoreId(Mage::app()->getStore(true)->getId());
|
52 |
+
}
|
53 |
}
|
54 |
|
55 |
$fieldset->addField('effects', 'select', array(
|
app/code/local/Perception/Bannerpro/Block/Adminhtml/Bannerpro/Grid.php
CHANGED
@@ -76,6 +76,7 @@ class Perception_Bannerpro_Block_Adminhtml_Bannerpro_Grid extends Mage_Adminhtml
|
|
76 |
'header' => Mage::helper('bannerpro')->__('Store View'),
|
77 |
'index' => 'store_id',
|
78 |
'type' => 'store',
|
|
|
79 |
'store_all' => true,
|
80 |
'store_view' => true,
|
81 |
'sortable' => false,
|
76 |
'header' => Mage::helper('bannerpro')->__('Store View'),
|
77 |
'index' => 'store_id',
|
78 |
'type' => 'store',
|
79 |
+
'width' => '150px',
|
80 |
'store_all' => true,
|
81 |
'store_view' => true,
|
82 |
'sortable' => false,
|
app/code/local/Perception/Bannerpro/Block/Bannerpro.php
CHANGED
@@ -13,4 +13,10 @@ class Perception_Bannerpro_Block_Bannerpro extends Mage_Core_Block_Template
|
|
13 |
}
|
14 |
return $this->getData('bannerpro');
|
15 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
16 |
}
|
13 |
}
|
14 |
return $this->getData('bannerpro');
|
15 |
}
|
16 |
+
public function getCollection() {
|
17 |
+
$collection = Mage::getModel('bannerpro/bannerpro')->getCollection()
|
18 |
+
->addStoreFilter(Mage::app()->getStore()->getStoreId())
|
19 |
+
->addFieldToFilter('status','1');
|
20 |
+
return $collection;
|
21 |
+
}
|
22 |
}
|
app/code/local/Perception/Bannerpro/etc/system.xml
CHANGED
@@ -11,7 +11,7 @@
|
|
11 |
<label>Banner Management</label>
|
12 |
<tab>perception</tab>
|
13 |
<frontend_type>text</frontend_type>
|
14 |
-
<sort_order>
|
15 |
<show_in_default>1</show_in_default>
|
16 |
<show_in_website>1</show_in_website>
|
17 |
<show_in_store>1</show_in_store>
|
@@ -25,8 +25,8 @@
|
|
25 |
<show_in_store>1</show_in_store>
|
26 |
<fields>
|
27 |
<time_delay translate="label, comment">
|
28 |
-
<label>
|
29 |
-
<comment><![CDATA[in
|
30 |
<frontend_type>text</frontend_type>
|
31 |
<sort_order>1</sort_order>
|
32 |
<show_in_default>1</show_in_default>
|
@@ -35,7 +35,7 @@
|
|
35 |
</time_delay>
|
36 |
<show_description translate="label, comment">
|
37 |
<label>Show description</label>
|
38 |
-
<comment><![CDATA[
|
39 |
<frontend_type>select</frontend_type>
|
40 |
<source_model>adminhtml/system_config_source_yesno</source_model>
|
41 |
<sort_order>2</sort_order>
|
@@ -58,4 +58,4 @@
|
|
58 |
</groups>
|
59 |
</bannerpro>
|
60 |
</sections>
|
61 |
-
</config>
|
11 |
<label>Banner Management</label>
|
12 |
<tab>perception</tab>
|
13 |
<frontend_type>text</frontend_type>
|
14 |
+
<sort_order>200</sort_order>
|
15 |
<show_in_default>1</show_in_default>
|
16 |
<show_in_website>1</show_in_website>
|
17 |
<show_in_store>1</show_in_store>
|
25 |
<show_in_store>1</show_in_store>
|
26 |
<fields>
|
27 |
<time_delay translate="label, comment">
|
28 |
+
<label>Delay time per image</label>
|
29 |
+
<comment><![CDATA[in milisecond - default (5000)]]></comment>
|
30 |
<frontend_type>text</frontend_type>
|
31 |
<sort_order>1</sort_order>
|
32 |
<show_in_default>1</show_in_default>
|
35 |
</time_delay>
|
36 |
<show_description translate="label, comment">
|
37 |
<label>Show description</label>
|
38 |
+
<comment><![CDATA[Show description in front of image]]></comment>
|
39 |
<frontend_type>select</frontend_type>
|
40 |
<source_model>adminhtml/system_config_source_yesno</source_model>
|
41 |
<sort_order>2</sort_order>
|
58 |
</groups>
|
59 |
</bannerpro>
|
60 |
</sections>
|
61 |
+
</config>
|
app/design/frontend/default/default/template/bannerpro/bannerpro.phtml
CHANGED
@@ -1,46 +1,50 @@
|
|
1 |
<?php
|
2 |
-
$bannerCollection =
|
3 |
$configData = Mage::getStoreConfig('bannerpro');
|
|
|
|
|
|
|
|
|
|
|
|
|
4 |
$i = 1;
|
5 |
?>
|
6 |
-
<div id="top_banner" style="padding: 0px; background: transparent none repeat scroll 0% 0%; position: relative;">
|
7 |
-
|
8 |
-
|
9 |
-
|
10 |
-
|
11 |
-
|
12 |
-
|
13 |
-
|
14 |
-
|
15 |
-
|
16 |
-
|
17 |
-
|
18 |
-
|
19 |
-
|
20 |
-
|
21 |
-
|
22 |
-
<a class="
|
23 |
-
|
24 |
-
|
25 |
-
|
26 |
-
|
27 |
-
|
28 |
-
<li class="
|
29 |
-
|
30 |
-
|
31 |
-
|
32 |
-
|
33 |
</div>
|
34 |
-
|
35 |
-
</div>
|
36 |
-
<div class="clear"></div>
|
37 |
<script type="text/javascript">
|
38 |
// <![CDATA[
|
39 |
$bn2(document).ready(function() {
|
40 |
var slider = $bn2("#divSimpleSlider").cycle({
|
41 |
fx: '<?php echo $effects; ?>',
|
42 |
speed: 1000,
|
43 |
-
timeout:
|
44 |
prev: '.prev',
|
45 |
next: '.next',
|
46 |
pager: '#divSimpleSliderRotate',
|
@@ -49,7 +53,7 @@
|
|
49 |
pause: 0,
|
50 |
pause_btn: '#pause_btn',
|
51 |
play_btn: '#play_btn',
|
52 |
-
randomizeEffects: false
|
53 |
});
|
54 |
});
|
55 |
$bn2('#pause_btn').click(function() {
|
1 |
<?php
|
2 |
+
$bannerCollection = $this->getCollection();
|
3 |
$configData = Mage::getStoreConfig('bannerpro');
|
4 |
+
if($configData['settings']['time_delay'] != null) {
|
5 |
+
$timeDelay = $configData['settings']['time_delay'];
|
6 |
+
}
|
7 |
+
else {
|
8 |
+
$timeDelay = 5000;
|
9 |
+
}
|
10 |
$i = 1;
|
11 |
?>
|
12 |
+
<div id="top_banner" style="padding: 0px; background: transparent none repeat scroll 0% 0%; position: relative; height:255px;">
|
13 |
+
<div id="divSimpleSlider">
|
14 |
+
<?php foreach ($bannerCollection as $banner): $effects .= $banner->getEffects().", "; ?>
|
15 |
+
<div class="banner">
|
16 |
+
<a href="<?php echo $banner->getWeblink() ?>" title="<?php echo $banner->getWeblink() ?>">
|
17 |
+
<img title="<?php echo $banner->getTitle() ?>" alt="<?php echo $banner->getTitle() ?>" src="<?php echo Mage::getBaseUrl(Mage_Core_Model_Store::URL_TYPE_MEDIA) . $banner->getFilename() ?>" width="100%" />
|
18 |
+
</a>
|
19 |
+
<?php if ($configData['settings']['show_description'] == '1' && $banner->getText() != ""):?>
|
20 |
+
<div class="banner_content">
|
21 |
+
<?php echo $banner->getText() ?>
|
22 |
+
</div>
|
23 |
+
<?php endif; ?>
|
24 |
+
</div>
|
25 |
+
<?php $i++; endforeach; ?>
|
26 |
+
</div>
|
27 |
+
<div class="control" id="control">
|
28 |
+
<a id="pause_btn" class="pause" title="Pause"> </a>
|
29 |
+
<a id="play_btn" class="no-display" title="Play"> </a>
|
30 |
+
</div>
|
31 |
+
|
32 |
+
<ul class="navigate">
|
33 |
+
<li class="prev"><a href="#" title="Previous"> </a></li>
|
34 |
+
<li class="next"><a href="#" title="Next"> </a></li>
|
35 |
+
</ul>
|
36 |
+
<div class="banner_down">
|
37 |
+
<div id="divSimpleSliderRotate"> </div>
|
38 |
+
</div>
|
39 |
</div>
|
40 |
+
<div class="clear-all"> </div>
|
|
|
|
|
41 |
<script type="text/javascript">
|
42 |
// <![CDATA[
|
43 |
$bn2(document).ready(function() {
|
44 |
var slider = $bn2("#divSimpleSlider").cycle({
|
45 |
fx: '<?php echo $effects; ?>',
|
46 |
speed: 1000,
|
47 |
+
timeout: <?php echo $timeDelay ?>,
|
48 |
prev: '.prev',
|
49 |
next: '.next',
|
50 |
pager: '#divSimpleSliderRotate',
|
53 |
pause: 0,
|
54 |
pause_btn: '#pause_btn',
|
55 |
play_btn: '#play_btn',
|
56 |
+
randomizeEffects: false
|
57 |
});
|
58 |
});
|
59 |
$bn2('#pause_btn').click(function() {
|
package.xml
CHANGED
@@ -1,56 +1,32 @@
|
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>Perception_Bannerpro</name>
|
4 |
-
<version>1.0.
|
5 |
<stability>stable</stability>
|
6 |
<license uri="http://www.opensource.org/licenses/osl-3.0.php">OSL-3.0</license>
|
7 |
<channel>community</channel>
|
8 |
<extends/>
|
9 |
-
<summary>
|
10 |
-
<description>All in One Banner Pro – Magento
|
11 |
-

|
12 |
-
|
13 |
-

|
14 |
-
|
15 |
-

|
16 |
-
|
17 |
-
|
18 |
-
|
19 |
-

|
20 |
-
|
21 |
-
|
22 |
-
|
23 |
-
|
24 |
-

|
25 |
-
|
26 |
-
|
27 |
-
|
28 |
-
|
29 |
-
|
30 |
-

|
31 |
-
7. Open source 100%.
|
32 |
-

|
33 |
-
8. Easy to install and configure.
|
34 |
-

|
35 |
-
9. User friendly Interface.
|
36 |
-

|
37 |
-
Follow Steps for Installation and Configuration 
|
38 |
-
Copy stuff from the source and Paste directly on your root directory of Website - System will automatically place all necessary files and directories on required place to continue with this extension,
|
39 |
-

|
40 |
-
To Display this Block on CMS Page - Add this block declaration {{block type="bannerslider/bannerslider" name="bannerslider" template="bannerslider/bannerslider.phtml"}} in Any CMS page from Admin.</description>
|
41 |
-
<notes>First Release
|
42 |
-

|
43 |
-
All in One Banner Pro – Magento Extension by Perception System
|
44 |
-

|
45 |
-
All in One Banner Pro Extension allows you to manage unlimited banners with list of sliding effects will make up your site effective and attractive in look.
|
46 |
-

|
47 |
-
Support 26 effects with jQuery
|
48 |
-

|
49 |
-
Blind X, Blind Y, Blind Z, Cover, Curtain X, Curtain Y, Fade, Fade Zoom, Grow X, Grow Y, Scroll Up, Scroll Down, Scroll Left, Scroll Right, Scroll Horizontal, Scroll Vertical, Shuffle, Toss, Turn Up, Turn Down, Turn Left, Turn Right, Uncover, Wipe, Zoom</notes>
|
50 |
-
<authors><author><name>Perception</name><user>auto-converted</user><email>tarang@perceptionsystem.com</email></author></authors>
|
51 |
-
<date>2013-01-01</date>
|
52 |
-
<time>07:40:09</time>
|
53 |
-
<contents><target name="magelocal"><dir name="Perception"><dir name="Bannerpro"><dir name="Block"><dir name="Adminhtml"><dir name="Bannerpro"><dir name="Edit"><dir name="Tab"><file name="Form.php" hash="41c9c50b6584c1d9b3971bcaaa719cdb"/></dir><file name="Form.php" hash="0cb756b54788b9c28296a9d82761cff1"/><file name="Tabs.php" hash="3ae0f322defc4e3273fb36e446377ce5"/></dir><file name="Edit.php" hash="7119b65e265c1f16216cc8b30f9b3be4"/><file name="Grid.php" hash="b2be8d07124f94799f08a1ae7f20e63f"/></dir><dir name="Grid"><dir name="Renderer"><file name="Image.php" hash="d68a90baf887ab74e62d3fd0424dae89"/></dir></dir><file name="Bannerpro.php" hash="823077939a9a69dd453153ead306a334"/></dir><dir name="Widget"><dir name="Grid"><dir name="Column"><dir name="Filter"><file name="Image.php" hash="26c1d8d6c4982fb96dc68d9e4c8e6898"/></dir><dir name="Renderer"><file name="Action.php" hash="67da9d1e599d03f09040875fae22c3be"/><file name="Image.php" hash="fc2106b8338943fb6a7a139ad4ca6983"/></dir></dir><file name="Column.php" hash="25c746da2f3ce51ee40da93316057444"/></dir></dir><file name="Bannerpro.php" hash="f899c6526ddec4ff10d252076e10366b"/></dir><dir name="controllers"><dir name="Adminhtml"><file name="BannerproController.php" hash="fd5a0005a6b1a46f18dde3dbc22e2230"/></dir><file name="IndexController.php" hash="0a7aa9e63a06a6e5f5535e0000e7e4d6"/></dir><dir name="etc"><file name="config.xml" hash="bece3595164368e6560920629e7521a6"/><file name="system.xml" hash="f49069b525b401422c073bbc3bd43ec8"/></dir><dir name="Helper"><dir name="Wysiwyg"><file name="Images.php" hash="d003d07bc253202bed88cae5a3c830b6"/></dir><file name="Data.php" hash="cc2aaac213b802569b4f92352cd4a145"/><file name="Image.php" hash="c11bc7b3026cceb1408228c65cda94e8"/></dir><dir name="Model"><dir name="Entity"><dir name="Attribute"><dir name="Source"><dir name="Boolean"><file name="Config.php" hash="c3dc31bc0e8a7ba77b2326fe4617bd9b"/></dir></dir></dir></dir><dir name="Mysql4"><dir name="Bannerpro"><file name="Collection.php" hash="ea8176a20f7514b11f43d2dc4945f04c"/></dir><file name="Bannerpro.php" hash="7f3cf13e27b309285aa5ba0274535575"/></dir><dir name="System"><dir name="Backend"><file name="Links.php" hash="6cc70f3272bd7e737c7b467ccd346cd3"/></dir><dir name="Config"><dir name="Source"><file name="Effect.php" hash="835d1cf695f7546f74d490fb408274ba"/></dir></dir></dir><dir name="Wysiwyg"><dir name="Images"><dir name="Storage"><file name="Collection.php" hash="1cb2bf3190f92a93b0ddd9f9aa2751bf"/></dir><file name="Storage.php" hash="94c39b8f54357ac3e31c0aeec4572406"/></dir><file name="Config.php" hash="f029863da2aee82dd6209218beef1442"/></dir><file name="Status.php" hash="80eb332156be6e55a6f74f61d8731c0a"/><file name="Image.php" hash="d826b6cd0b46ff5932f22753aa61c58a"/><file name="Bannerpro.php" hash="662e55180c900170155b6bde157280c2"/></dir><dir name="sql"><dir name="bannerpro_setup"><file name="mysql4-install-1.0.3.php" hash="111ce9f0b3ac42f3f97eb78efb0bed8e"/></dir></dir></dir></dir></target><target name="magedesign"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="layout"><file name="bannerpro.xml" hash="e79e904e07211ccca52519d1ebd798b8"/></dir></dir></dir></dir><dir name="frontend"><dir name="default"><dir name="default"><dir name="layout"><file name="bannerpro.xml" hash="147a707f9f383201d109cb5e510f0bff"/></dir><dir name="template"><dir name="bannerpro"><file name="bannerpro.phtml" hash="f21452aa434e10be5ed082755cbb028e"/></dir></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Perception_Bannerpro.xml" hash="a1eea61529056f4ae7dc48fc774883b7"/></dir></target><target name="mageskin"><dir name="frontend"><dir name="default"><dir name="default"><dir name="banner"><dir name="images"><file name="next-prev-btn.png" hash="f6300a1bafe436cec7c573a1fb35d71d"/><file name="pause.png" hash="40e4bdb63d600638ebf3cef86e09b35e"/><file name="play.png" hash="75c7a42ba1ecc7ce61a9952d97f86faf"/></dir><file name="banner_effects.js" hash="33483415fe699c1c7df27a2fcb95eb9a"/><file name="bannerpro.css" hash="98d9a5559367516a04e1c9c201cdbc69"/><file name="bannerpro.js" hash="b0018c7b9088375db12a272c3254f7ac"/></dir></dir></dir></dir></target></contents>
|
54 |
<compatible/>
|
55 |
-
<dependencies
|
56 |
</package>
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>Perception_Bannerpro</name>
|
4 |
+
<version>1.0.1</version>
|
5 |
<stability>stable</stability>
|
6 |
<license uri="http://www.opensource.org/licenses/osl-3.0.php">OSL-3.0</license>
|
7 |
<channel>community</channel>
|
8 |
<extends/>
|
9 |
+
<summary>All in One Banner Pro Extension allows you to manage unlimited banners with list of sliding effects with attractive and effective look of site Home page.</summary>
|
10 |
+
<description>Why All in One Banner Pro – Magento Module?
|
11 |
+
Do you want to add Advertising Banners in your website? Do you want effective look of your website with number of sliding effects? All in One Banner Pro extension can assist you more than that! This module allows you to add unlimited banners with list of valuable features noted below
|
12 |
+
1. Support Multi store, Multi lingual – Allows to create banners for specific store view
|
13 |
+
2. Support list of effects with jQuery 
|
14 |
+

|
15 |
+
Blind X, Blind Y, Blind Z, Cover, Curtain X, Curtain Y, Fade, Fade Zoom, Grow X, Grow Y, Scroll Up, Scroll Down, Scroll Left, Scroll Right, Scroll Horizontal, Scroll Vertical, Shuffle, Toss, Turn Up, Turn Down, Turn Left, Turn Right, Uncover, Wipe, Zoom
|
16 |
+

|
17 |
+
3. Allows Dynamic Content management on Banners with Title and Banner Description.
|
18 |
+
4. Easy Banner sorting list 
|
19 |
+
5. Clickable Banners – Support Banner URL
|
20 |
+
6. Backend Management – Allow managing Banners with Insert, Update, and Delete
|
21 |
+
7. Open source 100%.
|
22 |
+
8. Easy to install and configure.
|
23 |
+
9. User friendly Interface.</description>
|
24 |
+
<notes>Follow Steps for Installation and Configuration 
|
25 |
+
Copy all stuff from the source file and Paste directly on Root directory of your Website - System will automatically place all necessary files and directories on required locations, To Display this Block on CMS Page - Add this block declaration {{block type="bannerslider/bannerslider" name="bannerslider" template="bannerslider/bannerslider.phtml"}} in Any CMS page from Admin.</notes>
|
26 |
+
<authors><author><name>Perception</name><user>magentoexpertps</user><email>tarang@perceptionsystem.com</email></author></authors>
|
27 |
+
<date>2013-07-12</date>
|
28 |
+
<time>09:48:28</time>
|
29 |
+
<contents><target name="magelocal"><dir name="Perception"><dir name="Bannerpro"><dir name="Block"><dir name="Adminhtml"><dir name="Bannerpro"><dir name="Edit"><file name="Form.php" hash="0cb756b54788b9c28296a9d82761cff1"/><dir name="Tab"><file name="Form.php" hash="f3ccefcde239a79b099079daa811beee"/></dir><file name="Tabs.php" hash="3ae0f322defc4e3273fb36e446377ce5"/></dir><file name="Edit.php" hash="7119b65e265c1f16216cc8b30f9b3be4"/><file name="Grid.php" hash="98dd62a20a3255a86a0731e7c2fff903"/></dir><file name="Bannerpro.php" hash="823077939a9a69dd453153ead306a334"/><dir name="Grid"><dir name="Renderer"><file name="Image.php" hash="d68a90baf887ab74e62d3fd0424dae89"/></dir></dir></dir><file name="Bannerpro.php" hash="418524b9b51c4cbc26bb86217cff0f8b"/><dir name="Widget"><dir name="Grid"><dir name="Column"><dir name="Filter"><file name="Image.php" hash="26c1d8d6c4982fb96dc68d9e4c8e6898"/></dir><dir name="Renderer"><file name="Action.php" hash="67da9d1e599d03f09040875fae22c3be"/><file name="Image.php" hash="fc2106b8338943fb6a7a139ad4ca6983"/></dir></dir><file name="Column.php" hash="25c746da2f3ce51ee40da93316057444"/></dir></dir></dir><dir name="Helper"><file name="Data.php" hash="cc2aaac213b802569b4f92352cd4a145"/><file name="Image.php" hash="c11bc7b3026cceb1408228c65cda94e8"/><dir name="Wysiwyg"><file name="Images.php" hash="d003d07bc253202bed88cae5a3c830b6"/></dir></dir><dir name="Model"><file name="Bannerpro.php" hash="662e55180c900170155b6bde157280c2"/><dir name="Entity"><dir name="Attribute"><dir name="Source"><dir name="Boolean"><file name="Config.php" hash="c3dc31bc0e8a7ba77b2326fe4617bd9b"/></dir></dir></dir></dir><file name="Image.php" hash="d826b6cd0b46ff5932f22753aa61c58a"/><dir name="Mysql4"><dir name="Bannerpro"><file name="Collection.php" hash="ea8176a20f7514b11f43d2dc4945f04c"/></dir><file name="Bannerpro.php" hash="7f3cf13e27b309285aa5ba0274535575"/></dir><file name="Status.php" hash="80eb332156be6e55a6f74f61d8731c0a"/><dir name="System"><dir name="Backend"><file name="Links.php" hash="6cc70f3272bd7e737c7b467ccd346cd3"/></dir><dir name="Config"><dir name="Source"><file name="Effect.php" hash="835d1cf695f7546f74d490fb408274ba"/></dir></dir></dir><dir name="Wysiwyg"><file name="Config.php" hash="f029863da2aee82dd6209218beef1442"/><dir name="Images"><dir name="Storage"><file name="Collection.php" hash="1cb2bf3190f92a93b0ddd9f9aa2751bf"/></dir><file name="Storage.php" hash="94c39b8f54357ac3e31c0aeec4572406"/></dir></dir></dir><dir name="controllers"><dir name="Adminhtml"><file name="BannerproController.php" hash="fd5a0005a6b1a46f18dde3dbc22e2230"/></dir><file name="IndexController.php" hash="0a7aa9e63a06a6e5f5535e0000e7e4d6"/></dir><dir name="etc"><file name="config.xml" hash="bece3595164368e6560920629e7521a6"/><file name="system.xml" hash="eb5607bb591642453fae7c7a13ce2b7a"/></dir><dir name="sql"><dir name="bannerpro_setup"><file name="mysql4-install-1.0.3.php" hash="111ce9f0b3ac42f3f97eb78efb0bed8e"/></dir></dir></dir></dir><dir name="app"><dir name="code"><dir name="local"><dir name="Perception"><dir name="Bannerpro"><dir name="Helper"><dir name="Wysiwyg"><file name="Images.php" hash=""/></dir><file name="Image.php" hash=""/><file name="Data.php" hash=""/></dir><dir name="Block"><file name="Bannerpro.php" hash=""/><dir name="Adminhtml"><file name="Bannerpro.php" hash=""/><dir name="Bannerpro"><dir name="Edit"><file name="Tabs.php" hash=""/><dir name="Tab"><file name="Form.php" hash=""/></dir><file name="Form.php" hash=""/></dir><file name="Grid.php" hash=""/><file name="Edit.php" hash=""/></dir><dir name="Grid"><dir name="Renderer"><file name="Image.php" hash=""/></dir></dir></dir><dir name="Widget"><dir name="Grid"><dir name="Column"><dir name="Filter"><file name="Image.php" hash=""/></dir><dir name="Renderer"><file name="Action.php" hash=""/><file name="Image.php" hash=""/></dir></dir><file name="Column.php" hash=""/></dir></dir></dir><dir name="sql"><dir name="bannerpro_setup"><file name="mysql4-install-1.0.3.php" hash=""/></dir></dir><dir name="Model"><dir name="Wysiwyg"><file name="Config.php" hash=""/><dir name="Images"><file name="Storage.php" hash=""/><dir name="Storage"><file name="Collection.php" hash=""/></dir></dir></dir><file name="Bannerpro.php" hash=""/><file name="Status.php" hash=""/><file name="Image.php" hash=""/><dir name="Entity"><dir name="Attribute"><dir name="Source"><dir name="Boolean"><file name="Config.php" hash=""/></dir></dir></dir></dir><dir name="Mysql4"><file name="Bannerpro.php" hash=""/><dir name="Bannerpro"><file name="Collection.php" hash=""/></dir></dir><dir name="System"><dir name="Backend"><file name="Links.php" hash=""/></dir><dir name="Config"><dir name="Source"><file name="Effect.php" hash=""/></dir></dir></dir></dir><dir name="controllers"><dir name="Adminhtml"><file name="BannerproController.php" hash=""/></dir><file name="IndexController.php" hash=""/></dir><dir name="etc"><file name="config.xml" hash=""/><file name="system.xml" hash=""/></dir></dir></dir></dir></dir></dir></target><target name="magedesign"><dir name="frontend"><dir name="default"><dir name="default"><dir name="layout"><file name="bannerpro.xml" hash="147a707f9f383201d109cb5e510f0bff"/></dir><dir name="template"><dir name="bannerpro"><file name="bannerpro.phtml" hash="d400f39eed5bc6dbc56afb1c030c42bf"/></dir></dir></dir></dir></dir><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="layout"><file name="bannerpro.xml" hash="e79e904e07211ccca52519d1ebd798b8"/></dir></dir></dir></dir></target><target name="mageskin"><dir name="frontend"><dir name="default"><dir name="default"><dir name="banner"><dir name="images"><file name="play.png" hash="75c7a42ba1ecc7ce61a9952d97f86faf"/><file name="next-prev-btn.png" hash="f6300a1bafe436cec7c573a1fb35d71d"/><file name="pause.png" hash="40e4bdb63d600638ebf3cef86e09b35e"/></dir><file name="banner_effects.js" hash="33483415fe699c1c7df27a2fcb95eb9a"/><file name="bannerpro.css" hash="7f07a7e1db622568db5ae6bd30ac0c14"/><file name="bannerpro.js" hash="b0018c7b9088375db12a272c3254f7ac"/></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Perception_Bannerpro.xml" hash="a1eea61529056f4ae7dc48fc774883b7"/></dir></target></contents>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
30 |
<compatible/>
|
31 |
+
<dependencies><required><php><min>5.2.0</min><max>6.0.0</max></php></required></dependencies>
|
32 |
</package>
|
skin/frontend/default/default/banner/bannerpro.css
CHANGED
@@ -8,7 +8,7 @@
|
|
8 |
.home_events_content { float: right; display: inline; width: 84% }
|
9 |
.home_events_content h3 { font-size: 1.4em; }
|
10 |
.home_events_content p { margin: 1px 0 0 0; }
|
11 |
-
#divSimpleSlider { position: relative; width:470px; height:230px; }
|
12 |
|
13 |
.navigate .prev { background: url('images/next-prev-btn.png') no-repeat scroll 0 0 transparent; display: block; height: 22px; left: 10px; position: absolute; top: 110px; width: 24px; z-index: 999; cursor:pointer; }
|
14 |
.navigate .next { background: url('images/next-prev-btn.png') no-repeat scroll -24px 0 transparent; display: block; height: 22px; position: absolute; right: 10px; top: 110px; width: 26px; z-index: 999; cursor:pointer; }
|
8 |
.home_events_content { float: right; display: inline; width: 84% }
|
9 |
.home_events_content h3 { font-size: 1.4em; }
|
10 |
.home_events_content p { margin: 1px 0 0 0; }
|
11 |
+
#divSimpleSlider { position: relative; width:470px; height:230px; overflow: hidden; }
|
12 |
|
13 |
.navigate .prev { background: url('images/next-prev-btn.png') no-repeat scroll 0 0 transparent; display: block; height: 22px; left: 10px; position: absolute; top: 110px; width: 24px; z-index: 999; cursor:pointer; }
|
14 |
.navigate .next { background: url('images/next-prev-btn.png') no-repeat scroll -24px 0 transparent; display: block; height: 22px; position: absolute; right: 10px; top: 110px; width: 26px; z-index: 999; cursor:pointer; }
|