MultiBanner_Module - Version 0.1.2

Version Notes

MultiBanner with Multiple Effects for Images and Html (Slideshow, TextFade, Square Transition, Play Pause, Numbered banners, Horizontal Slider, Vertical Slider and Many more custom effects)

Download this release

Release Info

Developer Magento Core Team
Extension MultiBanner_Module
Version 0.1.2
Comparing to
See all releases


Code changes from version 0.1.1 to 0.1.2

app/code/community/Uni/Banner/Block/Adminhtml/Banner/Grid.php CHANGED
@@ -6,7 +6,7 @@
6
  * @copyright Copyright (c) 2010-2011 Unicode Systems. (http://www.unicodesystems.in)
7
  * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
8
  */
9
- class Uni_Banner_Block_Adminhtml_Banner_Grid extends Mage_Adminhtml_Block_Widget_Grid {
10
 
11
  public function __construct() {
12
  parent::__construct();
@@ -34,7 +34,7 @@ class Uni_Banner_Block_Adminhtml_Banner_Grid extends Mage_Adminhtml_Block_Widget
34
  'header' => Mage::helper('banner')->__('Image'),
35
  'align' => 'center',
36
  'index' => 'filename',
37
- 'type' => 'image',
38
  'escape' => true,
39
  'sortable' => false,
40
  'width' => '150px',
6
  * @copyright Copyright (c) 2010-2011 Unicode Systems. (http://www.unicodesystems.in)
7
  * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
8
  */
9
+ class Uni_Banner_Block_Adminhtml_Banner_Grid extends Uni_Banner_Block_Adminhtml_Widget_Grid {
10
 
11
  public function __construct() {
12
  parent::__construct();
34
  'header' => Mage::helper('banner')->__('Image'),
35
  'align' => 'center',
36
  'index' => 'filename',
37
+ 'type' => 'banner',
38
  'escape' => true,
39
  'sortable' => false,
40
  'width' => '150px',
app/code/community/Uni/Banner/Block/Adminhtml/Bannergroup/Edit/Tab/Banner.php CHANGED
@@ -6,7 +6,7 @@
6
  * @copyright Copyright (c) 2010-2011 Unicode Systems. (http://www.unicodesystems.in)
7
  * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
8
  */
9
- class Uni_Banner_Block_Adminhtml_Bannergroup_Edit_Tab_Banner extends Mage_Adminhtml_Block_Widget_Grid {
10
 
11
  public function __construct() {
12
  parent::__construct();
@@ -46,7 +46,7 @@ class Uni_Banner_Block_Adminhtml_Bannergroup_Edit_Tab_Banner extends Mage_Adminh
46
  'header' => Mage::helper('banner')->__('Image'),
47
  'align' => 'center',
48
  'index' => 'filename',
49
- 'type' => 'image',
50
  'escape' => true,
51
  'sortable' => false,
52
  'width' => '150px',
6
  * @copyright Copyright (c) 2010-2011 Unicode Systems. (http://www.unicodesystems.in)
7
  * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
8
  */
9
+ class Uni_Banner_Block_Adminhtml_Bannergroup_Edit_Tab_Banner extends Uni_Banner_Block_Adminhtml_Widget_Grid {
10
 
11
  public function __construct() {
12
  parent::__construct();
46
  'header' => Mage::helper('banner')->__('Image'),
47
  'align' => 'center',
48
  'index' => 'filename',
49
+ 'type' => 'banner',
50
  'escape' => true,
51
  'sortable' => false,
52
  'width' => '150px',
app/code/community/Uni/Banner/Block/Adminhtml/Widget/Grid.php ADDED
@@ -0,0 +1,29 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * Unicode Systems
4
+ * @category Uni
5
+ * @package Uni_Banner
6
+ * @copyright Copyright (c) 2010-2011 Unicode Systems. (http://www.unicodesystems.in)
7
+ * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
8
+ */
9
+ require_once 'Mage/Adminhtml/Block/Widget/Grid.php';
10
+ class Uni_Banner_Block_Adminhtml_Widget_Grid extends Mage_Adminhtml_Block_Widget_Grid {
11
+
12
+ public function addColumn($columnId, $column) {
13
+ if (is_array($column)) {
14
+ $this->_columns[$columnId] = $this->getLayout()->createBlock('banner/adminhtml_widget_grid_column')
15
+ ->setData($column)
16
+ ->setGrid($this);
17
+ }
18
+ /* elseif ($column instanceof Varien_Object) {
19
+ $this->_columns[$columnId] = $column;
20
+ } */ else {
21
+ throw new Exception(Mage::helper('adminhtml')->__('Wrong column format'));
22
+ }
23
+
24
+ $this->_columns[$columnId]->setId($columnId);
25
+ $this->_lastColumnId = $columnId;
26
+ return $this;
27
+ }
28
+
29
+ }
app/code/community/Uni/Banner/Block/Adminhtml/Widget/Grid/Column.php CHANGED
@@ -12,8 +12,8 @@ class Uni_Banner_Block_Adminhtml_Widget_Grid_Column extends Mage_Adminhtml_Block
12
 
13
  protected function _getRendererByType() {
14
  switch (strtolower($this->getType())) {
15
- case 'image':
16
- $rendererClass = 'banner/adminhtml_widget_grid_column_renderer_image';
17
  break;
18
  default:
19
  $rendererClass = parent::_getRendererByType();
@@ -24,8 +24,8 @@ class Uni_Banner_Block_Adminhtml_Widget_Grid_Column extends Mage_Adminhtml_Block
24
 
25
  protected function _getFilterByType() {
26
  switch (strtolower($this->getType())) {
27
- case 'image':
28
- $filterClass = 'banner/adminhtml_widget_grid_column_filter_image';
29
  break;
30
  default:
31
  $filterClass = parent::_getFilterByType();
12
 
13
  protected function _getRendererByType() {
14
  switch (strtolower($this->getType())) {
15
+ case 'banner':
16
+ $rendererClass = 'banner/adminhtml_widget_grid_column_renderer_banner';
17
  break;
18
  default:
19
  $rendererClass = parent::_getRendererByType();
24
 
25
  protected function _getFilterByType() {
26
  switch (strtolower($this->getType())) {
27
+ case 'banner':
28
+ $filterClass = 'banner/adminhtml_widget_grid_column_filter_banner';
29
  break;
30
  default:
31
  $filterClass = parent::_getFilterByType();
app/code/community/Uni/Banner/Block/Adminhtml/Widget/Grid/Column/Filter/{Image.php → Banner.php} RENAMED
@@ -9,6 +9,6 @@
9
  */
10
  require_once 'Mage/Adminhtml/Block/Widget/Grid/Column/Filter/Text.php';
11
 
12
- class Uni_Banner_Block_Adminhtml_Widget_Grid_Column_Filter_Image extends Mage_Adminhtml_Block_Widget_Grid_Column_Filter_Text {
13
 
14
  }
9
  */
10
  require_once 'Mage/Adminhtml/Block/Widget/Grid/Column/Filter/Text.php';
11
 
12
+ class Uni_Banner_Block_Adminhtml_Widget_Grid_Column_Filter_Banner extends Mage_Adminhtml_Block_Widget_Grid_Column_Filter_Text {
13
 
14
  }
app/code/community/Uni/Banner/Block/Adminhtml/Widget/Grid/Column/Renderer/Action.php DELETED
@@ -1,45 +0,0 @@
1
- <?php
2
- /**
3
- * Unicode Systems
4
- * @category Uni
5
- * @package Uni_Banner
6
- * @copyright Copyright (c) 2010-2011 Unicode Systems. (http://www.unicodesystems.in)
7
- * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
8
- */
9
- require_once 'Mage/Adminhtml/Block/Widget/Grid/Column/Renderer/Action.php';
10
- class Uni_Banner_Block_Adminhtml_Widget_Grid_Column_Renderer_Action extends Mage_Adminhtml_Block_Widget_Grid_Column_Renderer_Action {
11
-
12
- protected function _transformActionData(&$action, &$actionCaption, Varien_Object $row) {
13
- foreach ($action as $attibute => $value) {
14
- if (isset($action[$attibute]) && !is_array($action[$attibute])) {
15
- $this->getColumn()->setFormat($action[$attibute]);
16
- $action[$attibute] = parent::render($row);
17
- } else {
18
- $this->getColumn()->setFormat(null);
19
- }
20
- switch ($attibute) {
21
- case 'caption':
22
- $actionCaption = $action['caption'];
23
- unset($action['caption']);
24
- break;
25
- case 'url':
26
- if (is_array($action['url'])) {
27
- $params = array($action['field'] => $this->_getValue($row));
28
- if (isset($action['url']['params'])) {
29
- $params = array_merge($action['url']['params'], $params);
30
- }
31
- $action['href'] = $this->getUrl($action['url']['base'], $params);
32
- unset($action['field']);
33
- } else {
34
- $action['href'] = $action['url'];
35
- }
36
- unset($action['url']);
37
- break;
38
- case 'popup':
39
- $action['onclick'] = 'popWin(this.href, \'windth=800,height=700,resizable=1,scrollbars=1\');return false;';
40
- break;
41
- }
42
- }
43
- return $this;
44
- }
45
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
app/code/community/Uni/Banner/Block/Adminhtml/Widget/Grid/Column/Renderer/{Image.php → Banner.php} RENAMED
@@ -7,7 +7,7 @@
7
  * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
8
  */
9
  require_once 'Mage/Adminhtml/Block/Widget/Grid/Column/Renderer/Action.php';
10
- class Uni_Banner_Block_Adminhtml_Widget_Grid_Column_Renderer_Image extends Mage_Adminhtml_Block_Widget_Grid_Column_Renderer_Abstract {
11
 
12
  public function __construct() {
13
 
7
  * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
8
  */
9
  require_once 'Mage/Adminhtml/Block/Widget/Grid/Column/Renderer/Action.php';
10
+ class Uni_Banner_Block_Adminhtml_Widget_Grid_Column_Renderer_Banner extends Mage_Adminhtml_Block_Widget_Grid_Column_Renderer_Abstract {
11
 
12
  public function __construct() {
13
 
app/code/community/Uni/Banner/Model/Banner.php CHANGED
@@ -13,6 +13,12 @@ class Uni_Banner_Model_Banner extends Mage_Core_Model_Abstract {
13
  $this->_init('banner/banner');
14
  }
15
 
 
 
 
 
 
 
16
  public function getAllBanners() {
17
  $collection = Mage::getResourceModel('banner/banner_collection');
18
  $collection->getSelect()->where('status = ?', 1);
13
  $this->_init('banner/banner');
14
  }
15
 
16
+ public function getAllAvailBannerIds(){
17
+ $collection = Mage::getResourceModel('banner/banner_collection')
18
+ ->getAllIds();
19
+ return $collection;
20
+ }
21
+
22
  public function getAllBanners() {
23
  $collection = Mage::getResourceModel('banner/banner_collection');
24
  $collection->getSelect()->where('status = ?', 1);
app/code/community/Uni/Banner/Model/Wysiwyg/Config.php CHANGED
@@ -17,8 +17,8 @@ class Uni_Banner_Model_Wysiwyg_Config extends Mage_Cms_Model_Wysiwyg_Config
17
  'enabled' => $this->isEnabled(),
18
  'hidden' => $this->isHidden(),
19
  'use_container' => false,
20
- 'add_variables' => true,
21
- 'add_widgets' => true,
22
  'no_display' => false,
23
  'translator' => Mage::helper('banner'),
24
  'files_browser_window_url' => Mage::getSingleton('adminhtml/url')->getUrl('adminhtml/cms_wysiwyg_images/index'),
17
  'enabled' => $this->isEnabled(),
18
  'hidden' => $this->isHidden(),
19
  'use_container' => false,
20
+ 'add_variables' => false,
21
+ 'add_widgets' => false,
22
  'no_display' => false,
23
  'translator' => Mage::helper('banner'),
24
  'files_browser_window_url' => Mage::getSingleton('adminhtml/url')->getUrl('adminhtml/cms_wysiwyg_images/index'),
app/code/community/Uni/Banner/controllers/Adminhtml/BannergroupController.php CHANGED
@@ -72,13 +72,15 @@ class Uni_Banner_Adminhtml_BannergroupController extends Mage_Adminhtml_Controll
72
  public function saveAction() {
73
  if ($data = $this->getRequest()->getPost()) {
74
  $banners = array();
 
75
  parse_str($data['bannergroup_banners'], $banners);
76
  foreach ($banners as $k => $v) {
77
  if (preg_match('/[^0-9]+/', $k) || preg_match('/[^0-9]+/', $v)) {
78
  unset($banners[$k]);
79
  }
80
  }
81
- $data['banner_ids'] = implode(',', $banners);
 
82
  $data['banner_effects'] = (($data['animation_type'] == 0) ? '' : $data['banner_effects']);
83
  $data['pre_banner_effects'] = (($data['animation_type'] == 0) ? $data['pre_banner_effects'] : '');
84
  $model = Mage::getModel('banner/bannergroup');
72
  public function saveAction() {
73
  if ($data = $this->getRequest()->getPost()) {
74
  $banners = array();
75
+ $availBannerIds = Mage::getModel('banner/banner')->getAllAvailBannerIds();
76
  parse_str($data['bannergroup_banners'], $banners);
77
  foreach ($banners as $k => $v) {
78
  if (preg_match('/[^0-9]+/', $k) || preg_match('/[^0-9]+/', $v)) {
79
  unset($banners[$k]);
80
  }
81
  }
82
+ $bannerIds = array_intersect($availBannerIds, $banners);
83
+ $data['banner_ids'] = implode(',', $bannerIds);
84
  $data['banner_effects'] = (($data['animation_type'] == 0) ? '' : $data['banner_effects']);
85
  $data['pre_banner_effects'] = (($data['animation_type'] == 0) ? $data['pre_banner_effects'] : '');
86
  $model = Mage::getModel('banner/bannergroup');
app/code/community/Uni/Banner/etc/config.xml CHANGED
@@ -11,7 +11,7 @@
11
  <config>
12
  <modules>
13
  <Uni_Banner>
14
- <version>0.1.1</version>
15
  </Uni_Banner>
16
  </modules>
17
  <frontend>
@@ -124,12 +124,7 @@
124
  <blocks>
125
  <banner>
126
  <class>Uni_Banner_Block</class>
127
- </banner>
128
- <adminhtml>
129
- <rewrite>
130
- <widget_grid_column>Uni_Banner_Block_Adminhtml_Widget_Grid_Column</widget_grid_column>
131
- </rewrite>
132
- </adminhtml>
133
  </blocks>
134
  <helpers>
135
  <banner>
11
  <config>
12
  <modules>
13
  <Uni_Banner>
14
+ <version>0.1.2</version>
15
  </Uni_Banner>
16
  </modules>
17
  <frontend>
124
  <blocks>
125
  <banner>
126
  <class>Uni_Banner_Block</class>
127
+ </banner>
 
 
 
 
 
128
  </blocks>
129
  <helpers>
130
  <banner>
app/code/community/Uni/Banner/sql/banner_setup/mysql4-upgrade-0.1.1-0.1.2.php ADDED
@@ -0,0 +1,13 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ /**
4
+ * Unicode Systems
5
+ * @category Uni
6
+ * @package Uni_Banner
7
+ * @copyright Copyright (c) 2010-2011 Unicode Systems. (http://www.unicodesystems.in)
8
+ * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
9
+ */
10
+
11
+ $installer = $this;
12
+ $installer->startSetup();
13
+ $installer->endSetup();
app/etc/modules/Uni_Banner.xml CHANGED
@@ -14,6 +14,5 @@
14
  <active>true</active>
15
  <codePool>community</codePool>
16
  </Uni_Banner>
17
- <version>0.1.1</version>
18
  </modules>
19
  </config>
14
  <active>true</active>
15
  <codePool>community</codePool>
16
  </Uni_Banner>
 
17
  </modules>
18
  </config>
package.xml CHANGED
@@ -1,7 +1,7 @@
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>MultiBanner_Module</name>
4
- <version>0.1.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,9 +10,9 @@
10
  <description>MultiBanner with Multiple Effects for Images and Html (Slideshow, TextFade, Square Transition, Play Pause, Numbered banners, Horizontal Slider, Vertical Slider and Many more custom effects)</description>
11
  <notes>MultiBanner with Multiple Effects for Images and Html (Slideshow, TextFade, Square Transition, Play Pause, Numbered banners, Horizontal Slider, Vertical Slider and Many more custom effects)</notes>
12
  <authors><author><name>Unicode Systems</name><user>auto-converted</user><email>magento@unicodesystems.in</email></author></authors>
13
- <date>2011-03-18</date>
14
- <time>06:01:38</time>
15
- <contents><target name="magecommunity"><dir name="Uni"><dir name="Banner"><dir name="Block"><dir name="Adminhtml"><dir name="Banner"><dir name="Edit"><dir name="Tab"><file name="Form.php" hash="9a5c5e5a7cb369d0a38f9aa540dd22d3"/></dir><file name="Form.php" hash="38b2452ae924dc909fc868ce0472152b"/><file name="Tabs.php" hash="0bb21d21185c9bb37ad77ac412b2d0b0"/></dir><file name="Edit.php" hash="42ae82bd53c72a23cf2a8bce7e34904c"/><file name="Grid.php" hash="be12f57ef4f29601399873de0bae3a8d"/></dir><dir name="Bannergroup"><dir name="Edit"><dir name="Tab"><file name="Banner.php" hash="9a5c0764294613d5a27a4d64dbb633c7"/><file name="Form.php" hash="10bf17d806a2a7ac40225591926c1d0a"/><file name="Gridbanner.php" hash="dcce73bb370d8a8408ec632b041ba1e7"/></dir><file name="Form.php" hash="ebff6e0a1b34cc3a804051e42c096195"/><file name="Tabs.php" hash="0995e31427f190134672cd6f1742f491"/></dir><file name="Edit.php" hash="24eb10494857b4e1bcbca9e610a6c9c9"/><file name="Grid.php" hash="d95f657091c73c5f54719f26be57107f"/></dir><dir name="Widget"><dir name="Grid"><dir name="Column"><dir name="Filter"><file name="Image.php" hash="00a951d4a42c98148eddb0cbd27af8a1"/></dir><dir name="Renderer"><file name="Action.php" hash="d51643ac76989bb768ad07e0c66c0b78"/><file name="Image.php" hash="5125a4f57e65a0e579de578e3fd9f77b"/></dir></dir><file name="Column.php" hash="5f7a3f4ab657b4b9422c35bead4e23a5"/></dir></dir><file name="Banner.php" hash="0bbadbe6e27115c88dd020039b330544"/><file name="Bannergroup.php" hash="b8a5f39315a1167516a50c97e34bec73"/></dir><file name="Banner.php" hash="b9860becdebe13854f57608562654133"/></dir><dir name="Helper"><file name="Data.php" hash="12d0bb9eb35061bde449c5e14bcb4170"/></dir><dir name="Model"><dir name="Mysql4"><dir name="Banner"><file name="Collection.php" hash="dcb31efab496c62f2ca41b52d0626582"/></dir><dir name="Bannergroup"><file name="Collection.php" hash="85aa604e2ad4f650d74eaaec83e5e051"/></dir><file name="Banner.php" hash="f61362105f685f9af1b415c48b9dfe20"/><file name="Bannergroup.php" hash="15b618d32df18e0109ffd0c9a10c3e1c"/></dir><dir name="Wysiwyg"><file name="Config.php" hash="bf895dffe902636c10316b225517222b"/></dir><file name="Banner.php" hash="b6c2623a40609c0c9d5f6fce5364e0be"/><file name="Bannergroup.php" hash="c52253efaec0899b6c401c50a7b71879"/><file name="Bannerresize.php" hash="f21a1b4869a47e31696e98ffd7278d59"/><file name="Status.php" hash="303c3ceb1045506f3101442c53a757ef"/></dir><dir name="controllers"><dir name="Adminhtml"><file name="BannerController.php" hash="a848e54cc6bb133f8635e89e96114a82"/><file name="BannergroupController.php" hash="f379c5548e0f59f31326188c4cddf971"/></dir><file name="IndexController.php" hash="1e4174335f518ad77d77da41b9b9033a"/></dir><dir name="etc"><file name="config.xml" hash="08ca1245a6e7dde79a68bba1e4eb19a7"/><file name="system.xml" hash="a81c1b50fa0671f85404729195d7ee93"/></dir><dir name="sql"><dir name="banner_setup"><file name="mysql4-install-0.1.0.php" hash="c27554185f8a8588da9913c310f7127f"/><file name="mysql4-upgrade-0.1.0-0.1.1.php" hash="1d5c871770d33e312a1c34f710dc5ee8"/></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Uni_Banner.xml" hash="a48238f99b73a08e0c03105591c63cce"/></dir></target><target name="magelocale"><dir name="en_US"><file name="Uni_Banner.csv" hash="d41d8cd98f00b204e9800998ecf8427e"/></dir></target><target name="magemedia"><dir name="custom"><dir name="banners"><dir name="resize"><dir name="home_banner"><file name="File-1300256573.jpg" hash="2839ae13352ee22c8feab6fdb0302b68"/><file name="File-1300256584.jpg" hash="73ee800f4a7432add9de7f048823245a"/><file name="File-1300256596.jpg" hash="354ea638044668783b279536e486cf29"/><file name="File-1300256608.jpg" hash="e3934877cfce389ddafed8580c5755b8"/></dir><dir name="left_banner"><file name="File-1300256584.jpg" hash="be9deb97102d41f43c6acd289cae9384"/><file name="File-1300256596.jpg" hash="f43e279cabef79beed4c7d0d30581720"/><file name="File-1300256608.jpg" hash="91a4caca0022551d57ef37f0b204073b"/></dir></dir><file name="File-1300256573.jpg" hash="6fb2a38dc107eacb41cf1656e899cf70"/><file name="File-1300256584.jpg" hash="1bc5b77f3e50b7fbe12c792ee438da45"/><file name="File-1300256596.jpg" hash="070cf6787aa56fbdaa1b2fd98708c34c"/><file name="File-1300256608.jpg" hash="b44a59383b3123a747d139bd0e71d2df"/></dir></dir></target><target name="mageskin"><dir name="frontend"><dir name="default"><dir name="default"><dir name="unibanner"><dir name="css"><dir name="images"><file name="down.gif" hash="d698c4f511816268545a63c77d6ce0fd"/><file name="next.gif" hash="5fc5d48d907ddac9863b9b0bc85d745e"/><file name="next.png" hash="59726e7ca92e062bcc90029094787e02"/><file name="next1.gif" hash="d2af7472a66cfda1c8d7ba2ebda0368a"/><file name="next1.png" hash="db3c55bb0b783c19f59066b7e4939cd7"/><file name="play.gif" hash="9819ff371d7e15eef8ff79795e4585e5"/><file name="play.png" hash="e73837c01109bdb234ac8e1e8076a637"/><file name="prev.gif" hash="7f9a78a60372aa33ebbc72f53157c48b"/><file name="prev.png" hash="9f878dcd6b60c471136f31724e0e10ed"/><file name="stop.gif" hash="e3eccc001802f253a39ef050d1716aff"/><file name="stop.png" hash="8dcb2264b104a25098d3cd2528aac712"/><file name="top.gif" hash="7090dab68f24cb227a897ef77741e9fb"/></dir><file name="carousel.css" hash="d41d8cd98f00b204e9800998ecf8427e"/><file name="custom.css" hash="e3b6e91906b016c4a4670a589332be41"/><file name="glider.css" hash="d28ead2c96afee6d2f0eb4aea9167661"/><file name="noieopacity.css" hash="14d8b9192f25abeb406caeb733b90c4e"/><file name="opacityother.css" hash="6ccce3a136027b9077d90a88623e2c63"/><file name="protoFlow.css" hash="3b885897663d1bb12351165a6aff5d23"/><file name="stylesban.css" hash="827917e0440350b696d97229c9569281"/></dir><dir name="js"><file name="ajaxtabs.js" hash="2131471ffe269a8feeb0cfff90c4c64e"/><file name="carousel.js" hash="35fc7ec591e4a1a8ecb3a664276e9f55"/><file name="crossfade.js" hash="ee37e8f8c9177e1ec6bf40b61e972d03"/><file name="custom.js" hash="37d46c9ccd5af57af1cd5b0f647ddb5b"/><file name="glider.js" hash="e8e1e39b6b6cb3dc7a3896bffad3e4d3"/><file name="numbered.js" hash="db1ca9b5de07bc6bbf7db70fd53b9b7b"/><file name="prettify.js" hash="947de7ec867cc555f04387f3d602bb20"/><file name="protoFlow.js" hash="fc0aea31d5605d96ef0d09be6ec96929"/><file name="protofade.js" hash="809e245be83bfea72409264ce7904b0f"/></dir></dir></dir></dir></dir></target><target name="magedesign"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="layout"><file name="unibanner.xml" hash="4270f8e8589231fc8c3b77a467c03da4"/></dir><dir name="template"><dir name="unibanner"><file name="banners.phtml" hash="471181ee55f34624a798aaf818c08aa6"/></dir></dir></dir></dir></dir><dir name="frontend"><dir name="default"><dir name="default"><dir name="layout"><file name="unibanner.xml" hash="b60c7daa417fcc4b4fd5093d1ca0bafb"/></dir><dir name="template"><dir name="unibanner"><dir name="effects"><file name="custom.phtml" hash="4c033807a86f911a03d05fe582bf1607"/><file name="horslider.phtml" hash="ed9c892f9c1830fb2775daff7725738a"/><file name="numbered.phtml" hash="9a451afbe80cae9d9b3163d85a16c793"/><file name="playpause.phtml" hash="4a663af1b50541e9a8a011377a460fbf"/><file name="slideshow.phtml" hash="f5d375d75dd141310b6e75609d20f84e"/><file name="springslider.phtml" hash="d4302f2b9adbce074b516b3853fb8f67"/><file name="strans.phtml" hash="62b04dffc9e6cb23080a657757fdb718"/><file name="textfade.phtml" hash="096c8ad4e08e8310f76721dba90f4049"/><file name="verslider.phtml" hash="63228992237861761671560d8dccad85"/></dir><file name="banner.phtml" hash="f2fe0e221e936e611fd82aa79074b593"/></dir></dir></dir></dir></dir></target></contents>
16
  <compatible/>
17
  <dependencies/>
18
  </package>
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>MultiBanner_Module</name>
4
+ <version>0.1.2</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
  <description>MultiBanner with Multiple Effects for Images and Html (Slideshow, TextFade, Square Transition, Play Pause, Numbered banners, Horizontal Slider, Vertical Slider and Many more custom effects)</description>
11
  <notes>MultiBanner with Multiple Effects for Images and Html (Slideshow, TextFade, Square Transition, Play Pause, Numbered banners, Horizontal Slider, Vertical Slider and Many more custom effects)</notes>
12
  <authors><author><name>Unicode Systems</name><user>auto-converted</user><email>magento@unicodesystems.in</email></author></authors>
13
+ <date>2011-03-29</date>
14
+ <time>07:25:43</time>
15
+ <contents><target name="magecommunity"><dir name="Uni"><dir name="Banner"><dir name="Block"><dir name="Adminhtml"><dir name="Banner"><dir name="Edit"><dir name="Tab"><file name="Form.php" hash="9a5c5e5a7cb369d0a38f9aa540dd22d3"/></dir><file name="Form.php" hash="38b2452ae924dc909fc868ce0472152b"/><file name="Tabs.php" hash="0bb21d21185c9bb37ad77ac412b2d0b0"/></dir><file name="Edit.php" hash="42ae82bd53c72a23cf2a8bce7e34904c"/><file name="Grid.php" hash="a6d01468a7f7d822dda36172f0437afc"/></dir><dir name="Bannergroup"><dir name="Edit"><dir name="Tab"><file name="Banner.php" hash="ce4f73b3a0d9d12dbf4e209f60fa0a14"/><file name="Form.php" hash="10bf17d806a2a7ac40225591926c1d0a"/><file name="Gridbanner.php" hash="dcce73bb370d8a8408ec632b041ba1e7"/></dir><file name="Form.php" hash="ebff6e0a1b34cc3a804051e42c096195"/><file name="Tabs.php" hash="0995e31427f190134672cd6f1742f491"/></dir><file name="Edit.php" hash="24eb10494857b4e1bcbca9e610a6c9c9"/><file name="Grid.php" hash="d95f657091c73c5f54719f26be57107f"/></dir><dir name="Widget"><dir name="Grid"><dir name="Column"><dir name="Filter"><file name="Banner.php" hash="c1ed92c651694719259a53b226b6047d"/></dir><dir name="Renderer"><file name="Banner.php" hash="07748d8acbda1c615e9876dbc6ae1c67"/></dir></dir><file name="Column.php" hash="b041f265db1f8b5b29e026481beca2c9"/></dir><file name="Grid.php" hash="3aa37205f8628e2359b281ce28bd2df0"/></dir><file name="Banner.php" hash="0bbadbe6e27115c88dd020039b330544"/><file name="Bannergroup.php" hash="b8a5f39315a1167516a50c97e34bec73"/></dir><file name="Banner.php" hash="b9860becdebe13854f57608562654133"/></dir><dir name="Helper"><file name="Data.php" hash="12d0bb9eb35061bde449c5e14bcb4170"/></dir><dir name="Model"><dir name="Mysql4"><dir name="Banner"><file name="Collection.php" hash="dcb31efab496c62f2ca41b52d0626582"/></dir><dir name="Bannergroup"><file name="Collection.php" hash="85aa604e2ad4f650d74eaaec83e5e051"/></dir><file name="Banner.php" hash="f61362105f685f9af1b415c48b9dfe20"/><file name="Bannergroup.php" hash="15b618d32df18e0109ffd0c9a10c3e1c"/></dir><dir name="Wysiwyg"><file name="Config.php" hash="e68bc1d442eb96fb42970d6717207df1"/></dir><file name="Banner.php" hash="2b6d1158a348f431428d66c78e83b897"/><file name="Bannergroup.php" hash="c52253efaec0899b6c401c50a7b71879"/><file name="Bannerresize.php" hash="f21a1b4869a47e31696e98ffd7278d59"/><file name="Status.php" hash="303c3ceb1045506f3101442c53a757ef"/></dir><dir name="controllers"><dir name="Adminhtml"><file name="BannerController.php" hash="a848e54cc6bb133f8635e89e96114a82"/><file name="BannergroupController.php" hash="117895605c01f54a6c3d540062110818"/></dir><file name="IndexController.php" hash="1e4174335f518ad77d77da41b9b9033a"/></dir><dir name="etc"><file name="config.xml" hash="87a05459eeaaf776313e3e4aa0cf8047"/><file name="system.xml" hash="a81c1b50fa0671f85404729195d7ee93"/></dir><dir name="sql"><dir name="banner_setup"><file name="mysql4-install-0.1.0.php" hash="c27554185f8a8588da9913c310f7127f"/><file name="mysql4-upgrade-0.1.0-0.1.1.php" hash="1d5c871770d33e312a1c34f710dc5ee8"/><file name="mysql4-upgrade-0.1.1-0.1.2.php" hash="1d5c871770d33e312a1c34f710dc5ee8"/></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Uni_Banner.xml" hash="b87b3141a03cb0bb958ccb79efddae16"/></dir></target><target name="magelocale"><dir name="en_US"><file name="Uni_Banner.csv" hash="d41d8cd98f00b204e9800998ecf8427e"/></dir></target><target name="magemedia"><dir name="custom"><dir name="banners"><dir name="resize"><dir name="home_banner"><file name="File-1300256573.jpg" hash="2839ae13352ee22c8feab6fdb0302b68"/><file name="File-1300256584.jpg" hash="73ee800f4a7432add9de7f048823245a"/><file name="File-1300256596.jpg" hash="354ea638044668783b279536e486cf29"/><file name="File-1300256608.jpg" hash="e3934877cfce389ddafed8580c5755b8"/></dir><dir name="left_banner"><file name="File-1300256584.jpg" hash="be9deb97102d41f43c6acd289cae9384"/><file name="File-1300256596.jpg" hash="f43e279cabef79beed4c7d0d30581720"/><file name="File-1300256608.jpg" hash="91a4caca0022551d57ef37f0b204073b"/></dir></dir><file name="File-1300256573.jpg" hash="6fb2a38dc107eacb41cf1656e899cf70"/><file name="File-1300256584.jpg" hash="1bc5b77f3e50b7fbe12c792ee438da45"/><file name="File-1300256596.jpg" hash="070cf6787aa56fbdaa1b2fd98708c34c"/><file name="File-1300256608.jpg" hash="b44a59383b3123a747d139bd0e71d2df"/></dir></dir></target><target name="mageskin"><dir name="frontend"><dir name="default"><dir name="default"><dir name="unibanner"><dir name="css"><dir name="images"><file name="down.gif" hash="d698c4f511816268545a63c77d6ce0fd"/><file name="next.gif" hash="5fc5d48d907ddac9863b9b0bc85d745e"/><file name="next.png" hash="59726e7ca92e062bcc90029094787e02"/><file name="next1.gif" hash="d2af7472a66cfda1c8d7ba2ebda0368a"/><file name="next1.png" hash="db3c55bb0b783c19f59066b7e4939cd7"/><file name="play.gif" hash="9819ff371d7e15eef8ff79795e4585e5"/><file name="play.png" hash="e73837c01109bdb234ac8e1e8076a637"/><file name="prev.gif" hash="7f9a78a60372aa33ebbc72f53157c48b"/><file name="prev.png" hash="9f878dcd6b60c471136f31724e0e10ed"/><file name="stop.gif" hash="e3eccc001802f253a39ef050d1716aff"/><file name="stop.png" hash="8dcb2264b104a25098d3cd2528aac712"/><file name="top.gif" hash="7090dab68f24cb227a897ef77741e9fb"/></dir><file name="carousel.css" hash="d41d8cd98f00b204e9800998ecf8427e"/><file name="custom.css" hash="e3b6e91906b016c4a4670a589332be41"/><file name="glider.css" hash="d28ead2c96afee6d2f0eb4aea9167661"/><file name="noieopacity.css" hash="14d8b9192f25abeb406caeb733b90c4e"/><file name="opacityother.css" hash="6ccce3a136027b9077d90a88623e2c63"/><file name="protoFlow.css" hash="3b885897663d1bb12351165a6aff5d23"/><file name="stylesban.css" hash="827917e0440350b696d97229c9569281"/></dir><dir name="js"><file name="ajaxtabs.js" hash="2131471ffe269a8feeb0cfff90c4c64e"/><file name="carousel.js" hash="35fc7ec591e4a1a8ecb3a664276e9f55"/><file name="crossfade.js" hash="ee37e8f8c9177e1ec6bf40b61e972d03"/><file name="custom.js" hash="37d46c9ccd5af57af1cd5b0f647ddb5b"/><file name="glider.js" hash="e8e1e39b6b6cb3dc7a3896bffad3e4d3"/><file name="numbered.js" hash="db1ca9b5de07bc6bbf7db70fd53b9b7b"/><file name="prettify.js" hash="947de7ec867cc555f04387f3d602bb20"/><file name="protoFlow.js" hash="fc0aea31d5605d96ef0d09be6ec96929"/><file name="protofade.js" hash="809e245be83bfea72409264ce7904b0f"/></dir></dir></dir></dir></dir></target><target name="magedesign"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="layout"><file name="unibanner.xml" hash="4270f8e8589231fc8c3b77a467c03da4"/></dir><dir name="template"><dir name="unibanner"><file name="banners.phtml" hash="471181ee55f34624a798aaf818c08aa6"/></dir></dir></dir></dir></dir><dir name="frontend"><dir name="default"><dir name="default"><dir name="layout"><file name="unibanner.xml" hash="b60c7daa417fcc4b4fd5093d1ca0bafb"/></dir><dir name="template"><dir name="unibanner"><dir name="effects"><file name="custom.phtml" hash="4c033807a86f911a03d05fe582bf1607"/><file name="horslider.phtml" hash="ed9c892f9c1830fb2775daff7725738a"/><file name="numbered.phtml" hash="9a451afbe80cae9d9b3163d85a16c793"/><file name="playpause.phtml" hash="4a663af1b50541e9a8a011377a460fbf"/><file name="slideshow.phtml" hash="f5d375d75dd141310b6e75609d20f84e"/><file name="springslider.phtml" hash="d4302f2b9adbce074b516b3853fb8f67"/><file name="strans.phtml" hash="62b04dffc9e6cb23080a657757fdb718"/><file name="textfade.phtml" hash="096c8ad4e08e8310f76721dba90f4049"/><file name="verslider.phtml" hash="63228992237861761671560d8dccad85"/></dir><file name="banner.phtml" hash="f2fe0e221e936e611fd82aa79074b593"/></dir></dir></dir></dir></dir></target></contents>
16
  <compatible/>
17
  <dependencies/>
18
  </package>