Version Notes
Fix : add config show in and show or hide next + previous button
Download this release
Release Info
Developer | Magento Core Team |
Extension | Kevin_Qbanner |
Version | 1.8.1 |
Comparing to | |
See all releases |
Code changes from version 1.7.1 to 1.8.1
- app/code/community/Qaz/All/Helper/Data.php +20 -0
- app/code/community/Qaz/All/etc/config.xml +39 -0
- app/code/community/Qaz/All/etc/system.xml +9 -0
- app/code/community/Qaz/Qbanner/Block/Adminhtml/Qbanner/Edit/Tab/Form.php +8 -0
- app/code/community/Qaz/Qbanner/controllers/Adminhtml/QbannerController.php +1 -1
- app/code/community/Qaz/Qbanner/etc/config.xml +30 -5
- app/code/community/Qaz/Qbanner/etc/system.xml +36 -0
- app/code/community/Qaz/Qbanner/sql/qbanner_setup/mysql4-upgrade-1.7.1-1.8.1.php +10 -0
- app/design/frontend/default/default/template/qaz/qbanner/qbanner.after.header.phtml +19 -16
- app/design/frontend/default/default/template/qaz/qbanner/qbanner.content.top.phtml +16 -13
- app/etc/modules/Qaz_All.xml +10 -0
- package.xml +5 -5
- skin/frontend/default/default/qaz/qbanner/css/global.css +2 -1
app/code/community/Qaz/All/Helper/Data.php
ADDED
@@ -0,0 +1,20 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
|
3 |
+
/**
|
4 |
+
* http://www.extensionsmagento.com
|
5 |
+
*
|
6 |
+
* NOTICE OF LICENSE
|
7 |
+
*
|
8 |
+
* This source file is subject to the EULA
|
9 |
+
* that is bundled with this package in the file LICENSE.txt.
|
10 |
+
* It is also available through the world-wide-web at this URL:
|
11 |
+
|
12 |
+
*
|
13 |
+
* @category Qaz
|
14 |
+
* @package Qaz_All
|
15 |
+
* @copyright Copyright (c) 2011 Qazware http://www.extensionsmagento.com
|
16 |
+
*/
|
17 |
+
class Qaz_All_Helper_Data extends Mage_Core_Helper_Abstract {
|
18 |
+
|
19 |
+
}
|
20 |
+
|
app/code/community/Qaz/All/etc/config.xml
ADDED
@@ -0,0 +1,39 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?xml version="1.0"?>
|
2 |
+
<config>
|
3 |
+
<modules>
|
4 |
+
<Qaz_All>
|
5 |
+
<version>1.0.1</version>
|
6 |
+
</Qaz_All>
|
7 |
+
</modules>
|
8 |
+
<global>
|
9 |
+
<helpers>
|
10 |
+
<all>
|
11 |
+
<class>Qaz_All_Helper</class>
|
12 |
+
</all>
|
13 |
+
</helpers>
|
14 |
+
</global>
|
15 |
+
<adminhtml>
|
16 |
+
<acl>
|
17 |
+
<resources>
|
18 |
+
<all>
|
19 |
+
<title>Allow Everything</title>
|
20 |
+
</all>
|
21 |
+
<admin>
|
22 |
+
<children>
|
23 |
+
<system>
|
24 |
+
<children>
|
25 |
+
<config>
|
26 |
+
<children>
|
27 |
+
<all>
|
28 |
+
<title>qazMagentoExtensions - All</title>
|
29 |
+
</all>
|
30 |
+
</children>
|
31 |
+
</config>
|
32 |
+
</children>
|
33 |
+
</system>
|
34 |
+
</children>
|
35 |
+
</admin>
|
36 |
+
</resources>
|
37 |
+
</acl>
|
38 |
+
</adminhtml>
|
39 |
+
</config>
|
app/code/community/Qaz/All/etc/system.xml
ADDED
@@ -0,0 +1,9 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?xml version="1.0"?>
|
2 |
+
<config>
|
3 |
+
<tabs>
|
4 |
+
<qall translate="label" module="all">
|
5 |
+
<label>Qazware Extensions</label>
|
6 |
+
<sort_order>100</sort_order>
|
7 |
+
</qall>
|
8 |
+
</tabs>
|
9 |
+
</config>
|
app/code/community/Qaz/Qbanner/Block/Adminhtml/Qbanner/Edit/Tab/Form.php
CHANGED
@@ -63,6 +63,14 @@ class Qaz_Qbanner_Block_Adminhtml_Qbanner_Edit_Tab_Form extends Mage_Adminhtml_B
|
|
63 |
array('value'=>0,'label'=>'No'),
|
64 |
),
|
65 |
));
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
66 |
|
67 |
$fieldset->addField('auto_slide', 'select', array(
|
68 |
'label' => Mage::helper('qbanner')->__('Auto Slide'),
|
63 |
array('value'=>0,'label'=>'No'),
|
64 |
),
|
65 |
));
|
66 |
+
$fieldset->addField('show_next_prev', 'select', array(
|
67 |
+
'label' => Mage::helper('qbanner')->__('Show Next & Prev'),
|
68 |
+
'name' => 'show_next_prev',
|
69 |
+
'values' => array(
|
70 |
+
array('value'=>1,'label'=>'Yes'),
|
71 |
+
array('value'=>0,'label'=>'No'),
|
72 |
+
),
|
73 |
+
));
|
74 |
|
75 |
$fieldset->addField('auto_slide', 'select', array(
|
76 |
'label' => Mage::helper('qbanner')->__('Auto Slide'),
|
app/code/community/Qaz/Qbanner/controllers/Adminhtml/QbannerController.php
CHANGED
@@ -64,7 +64,7 @@ class Qaz_Qbanner_Adminhtml_QbannerController extends Mage_Adminhtml_Controller_
|
|
64 |
if (isset($data['show_in']) and sizeof($data['show_in']) > 0) {
|
65 |
$data['show_in'] = implode(",", $data['show_in']);
|
66 |
} else {
|
67 |
-
$data['show_in'] = '';
|
68 |
}
|
69 |
|
70 |
$model->setData($data)
|
64 |
if (isset($data['show_in']) and sizeof($data['show_in']) > 0) {
|
65 |
$data['show_in'] = implode(",", $data['show_in']);
|
66 |
} else {
|
67 |
+
$data['show_in'] = 'no_where';
|
68 |
}
|
69 |
|
70 |
$model->setData($data)
|
app/code/community/Qaz/Qbanner/etc/config.xml
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
<config>
|
3 |
<modules>
|
4 |
<Qaz_Qbanner>
|
5 |
-
<version>1.
|
6 |
</Qaz_Qbanner>
|
7 |
</modules>
|
8 |
<frontend>
|
@@ -55,10 +55,27 @@
|
|
55 |
</all>
|
56 |
<admin>
|
57 |
<children>
|
58 |
-
<
|
59 |
-
<title>
|
60 |
-
<sort_order>
|
61 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
62 |
</children>
|
63 |
</admin>
|
64 |
</resources>
|
@@ -129,4 +146,12 @@
|
|
129 |
</qbanner>
|
130 |
</helpers>
|
131 |
</global>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
132 |
</config>
|
2 |
<config>
|
3 |
<modules>
|
4 |
<Qaz_Qbanner>
|
5 |
+
<version>1.8.1</version>
|
6 |
</Qaz_Qbanner>
|
7 |
</modules>
|
8 |
<frontend>
|
55 |
</all>
|
56 |
<admin>
|
57 |
<children>
|
58 |
+
<qbanner>
|
59 |
+
<title>Qaz Q Banner</title>
|
60 |
+
<sort_order>50</sort_order>
|
61 |
+
<children>
|
62 |
+
<item>
|
63 |
+
<title>Manage Q Banner</title>
|
64 |
+
<sort_order>0</sort_order>
|
65 |
+
</item>
|
66 |
+
</children>
|
67 |
+
</qbanner>
|
68 |
+
<system>
|
69 |
+
<children>
|
70 |
+
<config>
|
71 |
+
<children>
|
72 |
+
<qbanner>
|
73 |
+
<title>Q Banner Section</title>
|
74 |
+
</qbanner>
|
75 |
+
</children>
|
76 |
+
</config>
|
77 |
+
</children>
|
78 |
+
</system>
|
79 |
</children>
|
80 |
</admin>
|
81 |
</resources>
|
146 |
</qbanner>
|
147 |
</helpers>
|
148 |
</global>
|
149 |
+
<default>
|
150 |
+
<qbanner>
|
151 |
+
<general>
|
152 |
+
<enable>1</enable>
|
153 |
+
<enable_jquery>1</enable_jquery>
|
154 |
+
</general>
|
155 |
+
</qbanner>
|
156 |
+
</default>
|
157 |
</config>
|
app/code/community/Qaz/Qbanner/etc/system.xml
ADDED
@@ -0,0 +1,36 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?xml version="1.0"?>
|
2 |
+
<config>
|
3 |
+
<sections>
|
4 |
+
<qbanner translate="label" module="qbanner">
|
5 |
+
<label>QBanner</label>
|
6 |
+
<tab>qall</tab>
|
7 |
+
<frontend_type>text</frontend_type>
|
8 |
+
<sort_order>101</sort_order>
|
9 |
+
<show_in_default>1</show_in_default>
|
10 |
+
<show_in_website>1</show_in_website>
|
11 |
+
<show_in_store>1</show_in_store>
|
12 |
+
<groups>
|
13 |
+
<general translate="label">
|
14 |
+
<label>General Configuration</label>
|
15 |
+
<frontend_type>text</frontend_type>
|
16 |
+
<sort_order>50</sort_order>
|
17 |
+
<show_in_default>1</show_in_default>
|
18 |
+
<show_in_website>1</show_in_website>
|
19 |
+
<show_in_store>1</show_in_store>
|
20 |
+
<fields>
|
21 |
+
<enable_jquery translate="label">
|
22 |
+
<label>Enable Jquery</label>
|
23 |
+
<frontend_type>select</frontend_type>
|
24 |
+
<source_model>adminhtml/system_config_source_yesno</source_model>
|
25 |
+
<sort_order>2</sort_order>
|
26 |
+
<show_in_default>1</show_in_default>
|
27 |
+
<show_in_website>1</show_in_website>
|
28 |
+
<show_in_store>1</show_in_store>
|
29 |
+
<comment>If Jquery exists , You can disable it.</comment>
|
30 |
+
</enable_jquery>
|
31 |
+
</fields>
|
32 |
+
</general>
|
33 |
+
</groups>
|
34 |
+
</qbanner>
|
35 |
+
</sections>
|
36 |
+
</config>
|
app/code/community/Qaz/Qbanner/sql/qbanner_setup/mysql4-upgrade-1.7.1-1.8.1.php
ADDED
@@ -0,0 +1,10 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
|
3 |
+
$installer = $this;
|
4 |
+
|
5 |
+
$installer->startSetup();
|
6 |
+
$installer->run("
|
7 |
+
ALTER TABLE {$this->getTable('qbanner/qbanner')} add column show_next_prev TINYINT( 4 ) after `show_pagination`;
|
8 |
+
");
|
9 |
+
|
10 |
+
$installer->endSetup();
|
app/design/frontend/default/default/template/qaz/qbanner/qbanner.after.header.phtml
CHANGED
@@ -10,6 +10,7 @@
|
|
10 |
$duration = 5000;
|
11 |
$effect = $banner->getEffect();
|
12 |
$showCaption = $banner->getShowCaption();
|
|
|
13 |
$showPagination = $banner->getShowPagination();
|
14 |
$autoSlide = $banner->getAutoSlide();
|
15 |
if (!$autoSlide)
|
@@ -23,8 +24,8 @@
|
|
23 |
$bannerHeight = $banner->getHeight();
|
24 |
?>
|
25 |
<div class="clear"></div>
|
26 |
-
<div class="qbanner
|
27 |
-
<div id="slides-
|
28 |
<div class="slides_container">
|
29 |
<?php $images = $banner->getImageList(); ?>
|
30 |
<?php if (sizeof($images) > 0) : ?>
|
@@ -39,26 +40,28 @@
|
|
39 |
<?php endif; ?>
|
40 |
</div>
|
41 |
<?php endif; ?>
|
42 |
-
|
43 |
-
|
44 |
-
|
45 |
-
|
46 |
-
|
47 |
-
|
48 |
-
|
49 |
-
|
50 |
<?php endforeach; ?>
|
51 |
<?php endif; ?>
|
52 |
</div>
|
53 |
-
|
54 |
-
|
|
|
|
|
55 |
</div>
|
56 |
</div>
|
57 |
<div class="clear"></div>
|
58 |
<script>
|
59 |
<?php if ($showIn): ?>
|
60 |
$j(function(){
|
61 |
-
$j('#slides-
|
62 |
preload : true,
|
63 |
preloadImage: 'skin/frontend/default/default/qaz/qbanner/images/loading.gif',
|
64 |
play: <?php echo $duration; ?>,
|
@@ -92,12 +95,12 @@
|
|
92 |
});
|
93 |
</script>
|
94 |
<style>
|
95 |
-
#slides-
|
96 |
-
#slides-
|
97 |
</style>
|
98 |
<?php if (!$showPagination): ?>
|
99 |
<style>
|
100 |
-
#slides-
|
101 |
</style>
|
102 |
<?php endif; ?>
|
103 |
<?php endif; ?>
|
10 |
$duration = 5000;
|
11 |
$effect = $banner->getEffect();
|
12 |
$showCaption = $banner->getShowCaption();
|
13 |
+
$showNext = $banner->getShowNextPrev();
|
14 |
$showPagination = $banner->getShowPagination();
|
15 |
$autoSlide = $banner->getAutoSlide();
|
16 |
if (!$autoSlide)
|
24 |
$bannerHeight = $banner->getHeight();
|
25 |
?>
|
26 |
<div class="clear"></div>
|
27 |
+
<div class="qbanner content-top" style="width:<?php echo $bannerWidth . 'px'; ?>; height: <?php echo $bannerHeight . 'px'; ?>;">
|
28 |
+
<div id="slides-content-top-<?php echo $banner->getId(); ?>" class="qbanner-slide">
|
29 |
<div class="slides_container">
|
30 |
<?php $images = $banner->getImageList(); ?>
|
31 |
<?php if (sizeof($images) > 0) : ?>
|
40 |
<?php endif; ?>
|
41 |
</div>
|
42 |
<?php endif; ?>
|
43 |
+
<div class="slide" style="width:<?php echo $bannerWidth . 'px'; ?>; height: <?php echo $bannerHeight . 'px'; ?>;">
|
44 |
+
<img src="<?php echo Mage::getBaseUrl(Mage_Core_Model_Store::URL_TYPE_MEDIA) . 'qaz/qbanner' . $image['file']; ?>"alt="<?php echo $image['label']; ?>"/>
|
45 |
+
<?php if ($showCaption): ?>
|
46 |
+
<div class="caption" style="bottom:0">
|
47 |
+
<p><?php echo $image['label']; ?></p>
|
48 |
+
</div>
|
49 |
+
<?php endif; ?>
|
50 |
+
</div>
|
51 |
<?php endforeach; ?>
|
52 |
<?php endif; ?>
|
53 |
</div>
|
54 |
+
<?php if ($showNext): ?>
|
55 |
+
<a href="#" class="prev" style="top:<?php echo $bannerHeight / 2 - 20; ?>px;left:0px"><img src="<?php echo $this->getSkinUrl('qaz/qbanner/images/b_prev.png'); ?>" alt="Arrow Prev"/></a>
|
56 |
+
<a href="#" class="next" style="top:<?php echo $bannerHeight / 2 - 20; ?>px;right:0px"><img src="<?php echo $this->getSkinUrl('qaz/qbanner/images/b_next.png'); ?>" alt="Arrow Next"/></a>
|
57 |
+
<?php endif; ?>
|
58 |
</div>
|
59 |
</div>
|
60 |
<div class="clear"></div>
|
61 |
<script>
|
62 |
<?php if ($showIn): ?>
|
63 |
$j(function(){
|
64 |
+
$j('#slides-content-top-<?php echo $banner->getId(); ?>').slides({
|
65 |
preload : true,
|
66 |
preloadImage: 'skin/frontend/default/default/qaz/qbanner/images/loading.gif',
|
67 |
play: <?php echo $duration; ?>,
|
95 |
});
|
96 |
</script>
|
97 |
<style>
|
98 |
+
#slides-content-top-<?php echo $banner->getId() ?> .caption{width: <?php echo $bannerWidth; ?>px;}
|
99 |
+
#slides-content-top-<?php echo $banner->getId() ?> .pagination {margin:0 auto;left:<?php echo ($bannerWidth - 50 ) / 2; ?>px;}
|
100 |
</style>
|
101 |
<?php if (!$showPagination): ?>
|
102 |
<style>
|
103 |
+
#slides-content-top-<?php echo $banner->getId() ?> .pagination {display:none;}
|
104 |
</style>
|
105 |
<?php endif; ?>
|
106 |
<?php endif; ?>
|
app/design/frontend/default/default/template/qaz/qbanner/qbanner.content.top.phtml
CHANGED
@@ -10,6 +10,7 @@
|
|
10 |
$duration = 5000;
|
11 |
$effect = $banner->getEffect();
|
12 |
$showCaption = $banner->getShowCaption();
|
|
|
13 |
$showPagination = $banner->getShowPagination();
|
14 |
$autoSlide = $banner->getAutoSlide();
|
15 |
if (!$autoSlide)
|
@@ -39,19 +40,21 @@
|
|
39 |
<?php endif; ?>
|
40 |
</div>
|
41 |
<?php endif; ?>
|
42 |
-
|
43 |
-
|
44 |
-
|
45 |
-
|
46 |
-
|
47 |
-
|
48 |
-
|
49 |
-
|
50 |
<?php endforeach; ?>
|
51 |
<?php endif; ?>
|
52 |
</div>
|
53 |
-
|
54 |
-
|
|
|
|
|
55 |
</div>
|
56 |
</div>
|
57 |
<div class="clear"></div>
|
@@ -92,12 +95,12 @@
|
|
92 |
});
|
93 |
</script>
|
94 |
<style>
|
95 |
-
#slides-content-top-<?php echo $banner->getId()?> .caption{width: <?php echo $bannerWidth; ?>px;}
|
96 |
-
#slides-content-top-<?php echo $banner->getId()?> .pagination {margin:0 auto;left:<?php echo ($bannerWidth - 50 ) / 2; ?>px;}
|
97 |
</style>
|
98 |
<?php if (!$showPagination): ?>
|
99 |
<style>
|
100 |
-
#slides-content-top-<?php echo $banner->getId()?> .pagination {display:none;}
|
101 |
</style>
|
102 |
<?php endif; ?>
|
103 |
<?php endif; ?>
|
10 |
$duration = 5000;
|
11 |
$effect = $banner->getEffect();
|
12 |
$showCaption = $banner->getShowCaption();
|
13 |
+
$showNext = $banner->getShowNextPrev();
|
14 |
$showPagination = $banner->getShowPagination();
|
15 |
$autoSlide = $banner->getAutoSlide();
|
16 |
if (!$autoSlide)
|
40 |
<?php endif; ?>
|
41 |
</div>
|
42 |
<?php endif; ?>
|
43 |
+
<div class="slide" style="width:<?php echo $bannerWidth . 'px'; ?>; height: <?php echo $bannerHeight . 'px'; ?>;">
|
44 |
+
<img src="<?php echo Mage::getBaseUrl(Mage_Core_Model_Store::URL_TYPE_MEDIA) . 'qaz/qbanner' . $image['file']; ?>"alt="<?php echo $image['label']; ?>"/>
|
45 |
+
<?php if ($showCaption): ?>
|
46 |
+
<div class="caption" style="bottom:0">
|
47 |
+
<p><?php echo $image['label']; ?></p>
|
48 |
+
</div>
|
49 |
+
<?php endif; ?>
|
50 |
+
</div>
|
51 |
<?php endforeach; ?>
|
52 |
<?php endif; ?>
|
53 |
</div>
|
54 |
+
<?php if ($showNext): ?>
|
55 |
+
<a href="#" class="prev" style="top:<?php echo $bannerHeight / 2 - 20; ?>px;left:0px"><img src="<?php echo $this->getSkinUrl('qaz/qbanner/images/b_prev.png'); ?>" alt="Arrow Prev"/></a>
|
56 |
+
<a href="#" class="next" style="top:<?php echo $bannerHeight / 2 - 20; ?>px;right:0px"><img src="<?php echo $this->getSkinUrl('qaz/qbanner/images/b_next.png'); ?>" alt="Arrow Next"/></a>
|
57 |
+
<?php endif; ?>
|
58 |
</div>
|
59 |
</div>
|
60 |
<div class="clear"></div>
|
95 |
});
|
96 |
</script>
|
97 |
<style>
|
98 |
+
#slides-content-top-<?php echo $banner->getId() ?> .caption{width: <?php echo $bannerWidth; ?>px;}
|
99 |
+
#slides-content-top-<?php echo $banner->getId() ?> .pagination {margin:0 auto;left:<?php echo ($bannerWidth - 50 ) / 2; ?>px;}
|
100 |
</style>
|
101 |
<?php if (!$showPagination): ?>
|
102 |
<style>
|
103 |
+
#slides-content-top-<?php echo $banner->getId() ?> .pagination {display:none;}
|
104 |
</style>
|
105 |
<?php endif; ?>
|
106 |
<?php endif; ?>
|
app/etc/modules/Qaz_All.xml
ADDED
@@ -0,0 +1,10 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?xml version="1.0"?>
|
2 |
+
<config>
|
3 |
+
<modules>
|
4 |
+
<Qaz_All>
|
5 |
+
<active>true</active>
|
6 |
+
<codePool>community</codePool>
|
7 |
+
</Qaz_All>
|
8 |
+
</modules>
|
9 |
+
</config>
|
10 |
+
<!--Qazware Magento Oscommerce All -->
|
package.xml
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>Kevin_Qbanner</name>
|
4 |
-
<version>1.
|
5 |
<stability>stable</stability>
|
6 |
<license uri="http://www.opensource.org/licenses/osl-3.0.php">OSL v3.0</license>
|
7 |
<channel>community</channel>
|
@@ -10,11 +10,11 @@
|
|
10 |
(Or edit theme of you is not use default theme) More extensions FREE : http://extensionsmagento.com/</summary>
|
11 |
<description>Introduction and Features - This extension adds ability for online shops to display banners as a slider of images . - Qbanner can be add more banner image. - Qbanner can be more config ex : time to change image , effect , show pagination , position , auto slide ,....and set width + height of banner (!) - Support in all browser. - For show banner in position (After Header) U must go to design/frontend/default/default/template/page/html/header.phtml and paste at the end of file :
|
12 |
(Or edit theme of you is not use default theme) More extensions FREE : http://extensionsmagento.com/</description>
|
13 |
-
<notes>Fix :
|
14 |
<authors><author><name>Kevin Black</name><user>auto-converted</user><email>kevin.magento@gmail.com</email></author></authors>
|
15 |
-
<date>2011-
|
16 |
-
<time>
|
17 |
-
<contents><target name="magecommunity"><dir name="Qaz"><dir name="Qbanner"><dir name="Block"><dir name="Adminhtml"><dir name="Qbanner"><dir name="Edit"><dir name="Tab"><file name="Category.php" hash="61abdaddee7d7f504332b89967d28437"/><file name="Form.php" hash="
|
18 |
<compatible/>
|
19 |
<dependencies/>
|
20 |
</package>
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>Kevin_Qbanner</name>
|
4 |
+
<version>1.8.1</version>
|
5 |
<stability>stable</stability>
|
6 |
<license uri="http://www.opensource.org/licenses/osl-3.0.php">OSL v3.0</license>
|
7 |
<channel>community</channel>
|
10 |
(Or edit theme of you is not use default theme) More extensions FREE : http://extensionsmagento.com/</summary>
|
11 |
<description>Introduction and Features - This extension adds ability for online shops to display banners as a slider of images . - Qbanner can be add more banner image. - Qbanner can be more config ex : time to change image , effect , show pagination , position , auto slide ,....and set width + height of banner (!) - Support in all browser. - For show banner in position (After Header) U must go to design/frontend/default/default/template/page/html/header.phtml and paste at the end of file :
|
12 |
(Or edit theme of you is not use default theme) More extensions FREE : http://extensionsmagento.com/</description>
|
13 |
+
<notes>Fix : add config show in and show or hide next + previous button</notes>
|
14 |
<authors><author><name>Kevin Black</name><user>auto-converted</user><email>kevin.magento@gmail.com</email></author></authors>
|
15 |
+
<date>2011-12-12</date>
|
16 |
+
<time>10:42:53</time>
|
17 |
+
<contents><target name="magecommunity"><dir name="Qaz"><dir name="Qbanner"><dir name="Block"><dir name="Adminhtml"><dir name="Qbanner"><dir name="Edit"><dir name="Tab"><file name="Category.php" hash="61abdaddee7d7f504332b89967d28437"/><file name="Form.php" hash="03482f82f257505cb684a239c32a3086"/><file name="Image.php" hash="c48ea83ae0ebce092d93a6b3dbbaf139"/><file name="Pages.php" hash="594a0ecffb7147893deb39d7f2f03493"/></dir><file name="Form.php" hash="aee2407e2a9f5940e9c08170b6a43abe"/><file name="Tabs.php" hash="769ebfc7c86192e02d189478f997eb40"/></dir><file name="Edit.php" hash="4970a7507a9b156eb5ad3549031ef791"/><file name="Grid.php" hash="4342ef02239e11f0e91c427169979d42"/></dir><file name="Qbanner.php" hash="cdc72f40377017f48bc7f83a4d879620"/></dir><file name="Qbanner.php" hash="5c6616111c1c04d821cf3f292c1987cf"/></dir><dir name="Helper"><file name="Data.php" hash="12358d50493059aa9171f2fe4fc340c0"/></dir><dir name="Model"><dir name="Mysql4"><dir name="Qbanner"><file name="Collection.php" hash="713a2a33f4f015b30cf6f013d5fc30ed"/></dir><file name="Qbanner.php" hash="05a976e268ba40e1c38662d6bb5f6458"/></dir><dir name="Option"><file name="Pages.php" hash="221f9a629ea486d52b219b47e9d51583"/><file name="Position.php" hash="449baccb2053509ba0726befe7a4a1cf"/><file name="Status.php" hash="12d8c41655369a00094b9276e211582c"/></dir><file name="Config.php" hash="77b86ba70a8709518a1833cce313f8ce"/><file name="Qbanner.php" hash="062251b29ee6e6b9eca5fbb5217574f5"/></dir><dir name="controllers"><dir name="Adminhtml"><file name="QbannerController.php" hash="aed486cfedde5f7022e5ad85b178d337"/></dir><file name="IndexController.php" hash="d3c15879f3158b505d412ae90aeb5466"/></dir><dir name="etc"><file name="config.xml" hash="f6dba44b52968680c146359bf9a0bad6"/><file name="system.xml" hash="da732ecff7683edca974b996f74a5027"/></dir><dir name="sql"><dir name="qbanner_setup"><file name="mysql4-install-0.1.0.php" hash="6a7322f7c3b8978f4de877c7a3401480"/><file name="mysql4-upgrade-1.7.1-1.8.1.php" hash="85249553045169fee124e843298d62a6"/></dir></dir></dir><dir name="All"><dir name="Helper"><file name="Data.php" hash="a531698b0373f15ed017a921e0bfbe4b"/></dir><dir name="etc"><file name="config.xml" hash="6c6f6676c558ccb25c43a2c016f2d09d"/><file name="system.xml" hash="29a1180abd3b6a53b024f2bde75207bc"/></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Qaz_Qbanner.xml" hash="81840a50f8ba118b9f652a4c68e6608f"/><file name="Qaz_All.xml" hash="abff101149db6be3dd3340323e9fad85"/></dir></target><target name="magedesign"><dir name="frontend"><dir name="default"><dir name="default"><dir name="layout"><file name="qbanner.xml" hash="c1d49b73932f0b5a5cad7000f0940e55"/></dir><dir name="template"><dir name="qaz"><dir name="qbanner"><file name="qbanner.after.header.phtml" hash="29d8d87a6bd783bb8fefc2d66410fc77"/><file name="qbanner.content.top.phtml" hash="a75163bd5663cc3d8f97be9619e6bcff"/></dir></dir></dir></dir></dir></dir><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="layout"><file name="qbanner.xml" hash="1cfd7b9362bf8e99dc47b450a920a25c"/></dir><dir name="template"><dir name="qaz"><dir name="qbanner"><dir name="edit"><dir name="tab"><file name="category.phtml" hash="46a89238104e417024606afb156c6af8"/><file name="image.phtml" hash="041ff63dcce58cd68e439b24b96062dc"/></dir></dir></dir></dir></dir></dir></dir></dir></target><target name="mageskin"><dir name="frontend"><dir name="default"><dir name="default"><dir name="qaz"><dir name="qbanner"><dir name="css"><file name="global.css" hash="b067be609591040aae94c332a5680734"/></dir><dir name="images"><file name="arrow-bg.png" hash="dd02d2e167a7ad76df8f10bf1147de70"/><file name="arrow-bg2.gif" hash="630ba4ce19ec51a1f984d3d8bd140479"/><file name="arrow-l.png" hash="9a4f1aadda0df80f8db6ebc7d0c938d7"/><file name="arrow-next.png" hash="15d6fe778c4df2494a7af4e098aad4ff"/><file name="arrow-prev.png" hash="bc273e26e577babc8044b0a8a86358d0"/><file name="arrow-r.png" hash="94af413ec776ca1b09b9fff4f81cc618"/><file name="b_next.png" hash="d72dde0609aded61a24fa18cdca4bf7f"/><file name="b_prev.png" hash="86e333b7023d493e8024ccc6b32cd690"/><file name="background.png" hash="96519dab3e5a2a09075632cca4a98141"/><file name="example-frame.png" hash="a6fe93af35f205873d1c68e257f0ffe1"/><file name="loading.gif" hash="58c35cf5e9fcbe3914c839c6665794bd"/><file name="new-ribbon.png" hash="ddf312ad3449c87f2c98f11a56a3fcc3"/><file name="pagination.png" hash="c1e5cc6dfe80b935b657576c8b93f5f5"/><file name="slide-1.jpg" hash="60f4feb9d141c63d4b120831b7deab11"/><file name="slide-2.jpg" hash="772208e05945f5e83275b4869875f9ae"/><file name="slide-3.jpg" hash="5aa6d109f0131737ca0e7c9fbf3b9bae"/><file name="slide-4.jpg" hash="3eb11a293897724ada695688486f38e9"/><file name="slide-5.jpg" hash="8692bb9ad56518c50625d53cb87f4795"/><file name="slide-6.jpg" hash="7eb3c3d3bd818ec1d6726cc33881d661"/><file name="slide-7.jpg" hash="fcf0c1c41e4880f58d735bde18c986b5"/><file name="slide.jpg" hash="0a421d74f61d7cb8e01d203b7b3825fb"/></dir></dir></dir></dir></dir></dir></target><target name="magemedia"><dir name="qaz"><dir name="qbanner"><dir name="1"><dir name="6"><file name="1694554_11311.jpg" hash=""/></dir></dir><dir name="b"><dir name="a"><file name="banner-2.jpg" hash=""/><file name="banner-21.jpg" hash=""/><file name="banner-21_1.jpg" hash=""/><file name="banner-21_2.jpg" hash=""/><file name="banner-2_1.jpg" hash=""/><file name="banner-2_2.jpg" hash=""/><file name="banner-2_3.jpg" hash=""/><file name="banner-3.jpg" hash=""/><file name="banner-31.jpg" hash=""/><file name="banner-31_1.jpg" hash=""/><file name="banner-3_1.jpg" hash=""/><file name="banner-3_2.jpg" hash=""/><file name="banner-3_3.jpg" hash=""/><file name="banner-3_4.jpg" hash=""/><file name="banner-3_5.jpg" hash=""/><file name="banner-3_6.jpg" hash=""/><file name="banner-4.jpg" hash=""/><file name="banner-4_1.jpg" hash=""/><file name="banner-4_2.jpg" hash=""/><file name="banner-4_3.jpg" hash=""/><file name="banner-4_4.jpg" hash=""/><file name="banner-4_5.jpg" hash=""/><file name="banner-4_6.jpg" hash=""/><file name="banner.jpg" hash=""/></dir><dir name="o"><file name="bottom_banner.jpg" hash=""/><file name="bottom_banner2.jpg" hash=""/><file name="bottom_banner2_1.jpg" hash=""/></dir></dir><dir name="t"><dir name="o"><file name="top_banner.jpg" hash=""/><file name="top_banner_1.jpg" hash=""/></dir></dir></dir></dir></target><target name="mage"><dir name="js"><dir name="qaz"><dir name="qbanner"><file name="jquery.1.5.1.js" hash="38251a5074065e46fea974a460ea7a00"/><file name="jquery.slides.min.js" hash="a599effbf3331c3616e8b393ab7d10d6"/><file name="jqueryNoconfig.js" hash="8dd633a4b123d345a666b655d88d0b17"/></dir></dir></dir></target></contents>
|
18 |
<compatible/>
|
19 |
<dependencies/>
|
20 |
</package>
|
skin/frontend/default/default/qaz/qbanner/css/global.css
CHANGED
@@ -54,8 +54,9 @@
|
|
54 |
/* left:-39px;*/
|
55 |
/* width:24px;*/
|
56 |
/* height:42px;*/
|
57 |
-
/* display:none;*/
|
58 |
z-index:101;
|
|
|
59 |
}
|
60 |
|
61 |
/*
|
54 |
/* left:-39px;*/
|
55 |
/* width:24px;*/
|
56 |
/* height:42px;*/
|
57 |
+
/* display:none;*/
|
58 |
z-index:101;
|
59 |
+
/* display: none;*/
|
60 |
}
|
61 |
|
62 |
/*
|