Fishpigs_iBanners - Version 1.2.4.0

Version Notes

Fixed menu link in Magento Admin

Download this release

Release Info

Developer fishpig
Extension Fishpigs_iBanners
Version 1.2.4.0
Comparing to
See all releases


Code changes from version 1.2.3.0 to 1.2.4.0

app/code/community/Fishpig/IBanners/Block/Adminhtml/Banner/Grid.php CHANGED
@@ -31,7 +31,7 @@ class Fishpig_iBanners_Block_Adminhtml_Banner_Grid extends Mage_Adminhtml_Block_
31
  ->setData(array(
32
  'label' => Mage::helper('adminhtml')->__('Add New Banner'),
33
  'class' => 'add',
34
- 'onclick' => "setLocation('" . $this->getUrl('*/ibanners_banner/new') . "');",
35
  ))
36
  );
37
 
@@ -108,7 +108,7 @@ class Fishpig_iBanners_Block_Adminhtml_Banner_Grid extends Mage_Adminhtml_Block_
108
  array(
109
  'caption' => Mage::helper('catalog')->__('Edit'),
110
  'url' => array(
111
- 'base'=>'*/ibanners_banner/edit',
112
  ),
113
  'field' => 'id'
114
  )
@@ -137,7 +137,7 @@ class Fishpig_iBanners_Block_Adminhtml_Banner_Grid extends Mage_Adminhtml_Block_
137
  */
138
  public function getRowUrl($row)
139
  {
140
- return $this->getUrl('*/ibanners_banner/edit', array('id' => $row->getId()));
141
  }
142
 
143
  /**
@@ -164,7 +164,7 @@ class Fishpig_iBanners_Block_Adminhtml_Banner_Grid extends Mage_Adminhtml_Block_
164
 
165
  $this->getMassactionBlock()->addItem('delete', array(
166
  'label'=> $this->__('Delete'),
167
- 'url' => $this->getUrl('*/ibanners_banner/massDelete'),
168
  'confirm' => Mage::helper('catalog')->__('Are you sure?')
169
  ));
170
  }
31
  ->setData(array(
32
  'label' => Mage::helper('adminhtml')->__('Add New Banner'),
33
  'class' => 'add',
34
+ 'onclick' => "setLocation('" . $this->getUrl('*/iBanners_banner/new') . "');",
35
  ))
36
  );
37
 
108
  array(
109
  'caption' => Mage::helper('catalog')->__('Edit'),
110
  'url' => array(
111
+ 'base'=>'*/iBanners_banner/edit',
112
  ),
113
  'field' => 'id'
114
  )
137
  */
138
  public function getRowUrl($row)
139
  {
140
+ return $this->getUrl('*/iBanners_banner/edit', array('id' => $row->getId()));
141
  }
142
 
143
  /**
164
 
165
  $this->getMassactionBlock()->addItem('delete', array(
166
  'label'=> $this->__('Delete'),
167
+ 'url' => $this->getUrl('*/iBanners_banner/massDelete'),
168
  'confirm' => Mage::helper('catalog')->__('Are you sure?')
169
  ));
170
  }
app/code/community/Fishpig/IBanners/Block/Adminhtml/Group/Grid.php CHANGED
@@ -31,7 +31,7 @@ class Fishpig_iBanners_Block_Adminhtml_Group_Grid extends Mage_Adminhtml_Block_W
31
  ->setData(array(
32
  'label' => Mage::helper('adminhtml')->__('Add New Group'),
33
  'class' => 'add',
34
- 'onclick' => "setLocation('" . $this->getUrl('*/ibanners_group/new') . "');",
35
  ))
36
  );
37
 
@@ -115,7 +115,7 @@ class Fishpig_iBanners_Block_Adminhtml_Group_Grid extends Mage_Adminhtml_Block_W
115
  array(
116
  'caption' => Mage::helper('catalog')->__('Edit'),
117
  'url' => array(
118
- 'base'=>'*/ibanners_group/edit',
119
  ),
120
  'field' => 'id'
121
  )
@@ -144,7 +144,7 @@ class Fishpig_iBanners_Block_Adminhtml_Group_Grid extends Mage_Adminhtml_Block_W
144
  */
145
  public function getRowUrl($row)
146
  {
147
- return $this->getUrl('*/ibanners_group/edit', array('id' => $row->getId()));
148
  }
149
 
150
  /**
@@ -171,7 +171,7 @@ class Fishpig_iBanners_Block_Adminhtml_Group_Grid extends Mage_Adminhtml_Block_W
171
 
172
  $this->getMassactionBlock()->addItem('delete', array(
173
  'label'=> $this->__('Delete'),
174
- 'url' => $this->getUrl('*/ibanners_group/massDelete'),
175
  'confirm' => Mage::helper('catalog')->__('Are you sure?')
176
  ));
177
  }
31
  ->setData(array(
32
  'label' => Mage::helper('adminhtml')->__('Add New Group'),
33
  'class' => 'add',
34
+ 'onclick' => "setLocation('" . $this->getUrl('*/iBanners_group/new') . "');",
35
  ))
36
  );
37
 
115
  array(
116
  'caption' => Mage::helper('catalog')->__('Edit'),
117
  'url' => array(
118
+ 'base'=>'*/iBanners_group/edit',
119
  ),
120
  'field' => 'id'
121
  )
144
  */
145
  public function getRowUrl($row)
146
  {
147
+ return $this->getUrl('*/iBanners_group/edit', array('id' => $row->getId()));
148
  }
149
 
150
  /**
171
 
172
  $this->getMassactionBlock()->addItem('delete', array(
173
  'label'=> $this->__('Delete'),
174
+ 'url' => $this->getUrl('*/iBanners_group/massDelete'),
175
  'confirm' => Mage::helper('catalog')->__('Are you sure?')
176
  ));
177
  }
app/code/community/Fishpig/IBanners/controllers/Adminhtml/IBanners/BannerController.php CHANGED
@@ -15,7 +15,7 @@ class Fishpig_iBanners_Adminhtml_iBanners_BannerController extends Mage_Adminhtm
15
  */
16
  public function indexAction()
17
  {
18
- return $this->_redirect('*/ibanners');
19
  }
20
 
21
  /**
@@ -76,7 +76,7 @@ class Fishpig_iBanners_Adminhtml_iBanners_BannerController extends Mage_Adminhtm
76
  $this->_getSession()->addError($this->__('There was no data to save'));
77
  }
78
 
79
- $this->_redirect('*/ibanners');
80
  }
81
 
82
  /**
@@ -122,7 +122,7 @@ class Fishpig_iBanners_Adminhtml_iBanners_BannerController extends Mage_Adminhtm
122
  }
123
  }
124
 
125
- $this->_redirect('*/ibanners');
126
  }
127
 
128
  /**
@@ -155,7 +155,7 @@ class Fishpig_iBanners_Adminhtml_iBanners_BannerController extends Mage_Adminhtm
155
  }
156
  }
157
 
158
- $this->_redirect('*/ibanners');
159
  }
160
 
161
  /**
15
  */
16
  public function indexAction()
17
  {
18
+ return $this->_redirect('*/iBanners');
19
  }
20
 
21
  /**
76
  $this->_getSession()->addError($this->__('There was no data to save'));
77
  }
78
 
79
+ $this->_redirect('*/iBanners');
80
  }
81
 
82
  /**
122
  }
123
  }
124
 
125
+ $this->_redirect('*/iBanners');
126
  }
127
 
128
  /**
155
  }
156
  }
157
 
158
+ $this->_redirect('*/iBanners');
159
  }
160
 
161
  /**
app/code/community/Fishpig/IBanners/controllers/Adminhtml/IBanners/GroupController.php CHANGED
@@ -15,7 +15,7 @@ class Fishpig_iBanners_Adminhtml_iBanners_GroupController extends Mage_Adminhtml
15
  */
16
  public function indexAction()
17
  {
18
- return $this->_redirect('*/ibanners');
19
  }
20
 
21
  /**
@@ -82,7 +82,7 @@ class Fishpig_iBanners_Adminhtml_iBanners_GroupController extends Mage_Adminhtml
82
  $this->_getSession()->addError($this->__('There was no data to save'));
83
  }
84
 
85
- $this->_redirect('*/*');
86
  }
87
 
88
  /**
@@ -105,7 +105,7 @@ class Fishpig_iBanners_Adminhtml_iBanners_GroupController extends Mage_Adminhtml
105
  }
106
  }
107
 
108
- $this->_redirect('*/*');
109
  }
110
 
111
  /**
@@ -138,7 +138,7 @@ class Fishpig_iBanners_Adminhtml_iBanners_GroupController extends Mage_Adminhtml
138
  }
139
  }
140
 
141
- $this->_redirect('*/*');
142
  }
143
 
144
  /**
15
  */
16
  public function indexAction()
17
  {
18
+ return $this->_redirect('*/iBanners');
19
  }
20
 
21
  /**
82
  $this->_getSession()->addError($this->__('There was no data to save'));
83
  }
84
 
85
+ $this->_redirect('*/iBanners');
86
  }
87
 
88
  /**
105
  }
106
  }
107
 
108
+ $this->_redirect('*/iBanners');
109
  }
110
 
111
  /**
138
  }
139
  }
140
 
141
+ $this->_redirect('*/iBanners');
142
  }
143
 
144
  /**
app/code/community/Fishpig/IBanners/etc/adminhtml.xml CHANGED
@@ -6,7 +6,7 @@
6
  <ibanners>
7
  <title>iBanners</title>
8
  <sort_order>24</sort_order>
9
- <action>adminhtml/ibanners</action>
10
  </ibanners>
11
  </children>
12
  </cms>
6
  <ibanners>
7
  <title>iBanners</title>
8
  <sort_order>24</sort_order>
9
+ <action>adminhtml/iBanners</action>
10
  </ibanners>
11
  </children>
12
  </cms>
app/code/community/Fishpig/IBanners/etc/config.xml CHANGED
@@ -2,7 +2,7 @@
2
  <config>
3
  <modules>
4
  <Fishpig_iBanners>
5
- <version>1.2.3.0</version>
6
  </Fishpig_iBanners>
7
  </modules>
8
  <global>
2
  <config>
3
  <modules>
4
  <Fishpig_iBanners>
5
+ <version>1.2.4.0</version>
6
  </Fishpig_iBanners>
7
  </modules>
8
  <global>
app/code/community/Fishpig/IBanners/etc/system.xml CHANGED
@@ -1,14 +1,13 @@
1
  <?xml version="1.0"?>
2
- <config />
3
- <!--
4
  <tabs>
5
- <fishpig translate="label" module="ibanners">
6
  <label>FishPig</label>
7
  <sort_order>200</sort_order>
8
  </fishpig>
9
  </tabs>
10
  <sections>
11
- <ibanners translate="label" module="ibanners">
12
  <label>iBanners</label>
13
  <tab>fishpig</tab>
14
  <sort_order>600</sort_order>
@@ -37,5 +36,4 @@
37
  </groups>
38
  </ibanners>
39
  </sections>
40
- </config>
41
- -->
1
  <?xml version="1.0"?>
2
+ <config>
 
3
  <tabs>
4
+ <fishpig>
5
  <label>FishPig</label>
6
  <sort_order>200</sort_order>
7
  </fishpig>
8
  </tabs>
9
  <sections>
10
+ <ibanners>
11
  <label>iBanners</label>
12
  <tab>fishpig</tab>
13
  <sort_order>600</sort_order>
36
  </groups>
37
  </ibanners>
38
  </sections>
39
+ </config>
 
app/code/community/Fishpig/IBanners/notes.txt CHANGED
@@ -10,7 +10,7 @@
10
  TODO
11
  - Convert animation and control values to serialized single columns
12
 
13
- 20/01/2014 - 1.2.2.0
14
  - Fixed menu link in Magento Admin
15
 
16
  03/11/2013 - 1.2.0.0
10
  TODO
11
  - Convert animation and control values to serialized single columns
12
 
13
+ 21/01/2014 - 1.2.4.0
14
  - Fixed menu link in Magento Admin
15
 
16
  03/11/2013 - 1.2.0.0
package.xml CHANGED
@@ -1,7 +1,7 @@
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>Fishpigs_iBanners</name>
4
- <version>1.2.3.0</version>
5
  <stability>stable</stability>
6
  <license uri="http://fishpig.co.uk/license.txt">FishPig EULA</license>
7
  <channel>community</channel>
@@ -10,9 +10,9 @@
10
  <description>Create multiple banner slideshows for your site.</description>
11
  <notes>Fixed menu link in Magento Admin</notes>
12
  <authors><author><name>fishpig</name><user>fishpig</user><email>ben@fishpig.co.uk</email></author></authors>
13
- <date>2014-01-20</date>
14
- <time>23:03:52</time>
15
- <contents><target name="magecommunity"><dir name="Fishpig"><dir name="IBanners"><dir name="Block"><dir name="Adminhtml"><dir name="Banner"><dir name="Edit"><file name="Form.php" hash="e9cd0d7436d36048706bc474704d2b82"/><dir name="Tab"><file name="Form.php" hash="a6ab04d3bb183e32935e3e285fbdabd5"/></dir><file name="Tabs.php" hash="60a82a390e8580594885bceb19a13460"/></dir><file name="Edit.php" hash="93807e5b677fd064e49c547551507202"/><file name="Grid.php" hash="a185b374d5ca92dcb25ecd819225bcb5"/><dir name="Helper"><file name="Image.php" hash="da1821e82b38af686705efb53f5a1ca9"/></dir></dir><file name="Banner.php" hash="181c9778d624e104ab3f8e729c58b3f7"/><file name="Dashboard.php" hash="e4e5bfd422325aeb4810022e72dbb61c"/><file name="Extend.php" hash="065897186d7dd97b354cdd4863b75b1d"/><dir name="Form"><dir name="Renderer"><file name="Useconfig.php" hash="df579ff6a4a783ed17d6c5bc6118e171"/></dir></dir><dir name="Group"><dir name="Edit"><file name="Form.php" hash="5b8f4f8649e974f80ea21de7f323788e"/><dir name="Tab"><file name="Banners.php" hash="f13f72d714e73ba5481fe488b369c879"/><file name="Form.php" hash="67ab47bbe207e41b7542cddc15401590"/></dir><file name="Tabs.php" hash="d57a68d75dde73b39127dc8a932b858e"/></dir><file name="Edit.php" hash="1f3ca94777f0eb8a3363d245d9c5bc9d"/><file name="Grid.php" hash="9885837fd12a601788d2c88d965c951c"/></dir><file name="Group.php" hash="6a6ea8ad3f9e1e25dcf0411fa5347b9c"/></dir><file name="View.php" hash="5dd113d04a13f11f4d267916313dc473"/></dir><dir name="FPAdmin"><dir name="Block"><dir name="Adminhtml"><file name="Extend.php" hash="728b160c7ad64711f25906a2877efc5f"/></dir></dir><dir name="etc"><file name="config.xml" hash="4dc538b93fcf1c83a5ef92779f402dae"/></dir><dir name="template"><file name="large.phtml" hash="bc4492815fc29d8b8e0877f6f45c3e27"/><file name="small.phtml" hash="46f3d4c10d3b77d6ea86f0a90a8c07e8"/></dir></dir><dir name="Helper"><file name="Data.php" hash="aeaa36a9c56477944b190b63442fc89d"/><file name="Image.php" hash="92a06beda3aefa58577dd91556001115"/></dir><dir name="Model"><file name="Banner.php" hash="eb4e6aa9c2ce9c849ebc773c88615456"/><file name="Group.php" hash="095c22eb1f93aafb57effca8709f5338"/><dir name="Mysql4"><dir name="Banner"><file name="Collection.php" hash="511a3aceff96f430a5fa44a3a7ff2b05"/></dir><file name="Banner.php" hash="81752a0ab34bde996d9472ac67272472"/><dir name="Group"><file name="Collection.php" hash="ab6a49e01708c118052a696a0e09184c"/></dir><file name="Group.php" hash="65169f143695653cafa08a3aeca28904"/></dir><dir name="System"><dir name="Config"><dir name="Source"><dir name="Carousel"><file name="Effect.php" hash="b615ef28aa59aed914dd95a0242cfc9e"/><file name="Transition.php" hash="290f6abe41d0d44f72f8188a77f8e475"/></dir><dir name="Controls"><file name="Position.php" hash="fe9d0c6845fd0fc28603baee7b053c32"/></dir></dir></dir></dir></dir><dir name="controllers"><dir name="Adminhtml"><dir name="IBanners"><file name="BannerController.php" hash="032a8d6e6e8e135b8ef8afedfe21b515"/><file name="GroupController.php" hash="4113ca253fe3b7efc4a7b12b6e2948f7"/></dir><file name="IBannersController.php" hash="ff6f221d06bf0e3a76ee4c27ff5d71e2"/></dir></dir><dir name="etc"><file name="adminhtml.xml" hash="4cf70ce83e541f1cb22e7e9fe27f5db6"/><file name="config.xml" hash="488c35d6e46595c39cd41f04839e69b1"/><file name="system.xml" hash="26914c1b22769fdcc5b657605e7222cf"/></dir><file name="license.txt" hash="257eae92a36bdaaf9584fbf8ba76d1c6"/><file name="notes.txt" hash="753b770205a269809c7b8b9705d2de1a"/><dir name="sql"><dir name="ibanners_setup"><file name="mysql4-install-0.1.0.php" hash="62e4961272f2d697595002b006e72731"/><file name="mysql4-upgrade-0.5.2-0.5.3.php" hash="2e85887fb121d988357a45785d9f06df"/><file name="mysql4-upgrade-0.5.4-0.5.5.php" hash="a16fd4c674ed65eed1c7cee851960d28"/><file name="mysql4-upgrade-0.5.5-0.5.6.php" hash="a002305ec4b958c7213309d874b349f8"/><file name="mysql4-upgrade-0.9.0-0.9.1.php" hash="b970018526e15b6fc938b1866c5bfd81"/><file name="mysql4-upgrade-0.9.1-0.9.2.php" hash="07ba18c243e573655e43c64ee1a0d876"/><file name="mysql4-upgrade-1.0.4-1.0.5.php" hash="7f1cb0ec0dca8a5a4cd07ea3e9444cf7"/><file name="mysql4-upgrade-1.0.5-1.0.6.php" hash="2a430094f423b90adead0fcc6defc26e"/></dir></dir></dir></dir></target><target name="magedesign"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="layout"><file name="ibanners.xml" hash="49afe944f6ccfc7033b86c7cb719c361"/></dir><dir name="template"><dir name="ibanners"><file name="getcode.phtml" hash="79cd6c31a32d21071fa5c7645f629053"/></dir></dir></dir></dir></dir><dir name="frontend"><dir name="base"><dir name="default"><dir name="layout"><file name="ibanners.xml" hash="a68d69986eef07a540f3313cee0a0e7d"/></dir><dir name="template"><dir name="ibanners"><file name="default.phtml" hash="677f081bb8e40f62771abec88aac857c"/></dir></dir></dir></dir></dir></target><target name="mageweb"><dir name="js"><dir name="fishpig"><file name="carousel.min.js" hash="cfd7a8d08a6dca87e4211a400877716e"/></dir></dir><dir name="app"><dir name="etc"><dir name="modules"><file name="Fishpig_iBanners.xml" hash="0b9289cca030da9b13e84ab183f18892"/></dir></dir></dir></target><target name="mageskin"><dir name="frontend"><dir name="base"><dir name="default"><dir name="css"><file name="ibanners.css" hash="f39554b3dcdaad686da4093e59b4efef"/></dir><dir name="images"><dir name="ibanners"><file name="arrow-left.png" hash="a587a6ef8ed482ce83b468b2f8b90008"/><file name="arrow-right.png" hash="001286015205ecf53766877a1d92a784"/></dir></dir></dir></dir></dir><dir name="adminhtml"><dir name="default"><dir name="default"><file name="ibanners.css" hash="328b9e66068670364e620f6e5b194ce5"/></dir></dir></dir></target></contents>
16
  <compatible/>
17
  <dependencies><required><php><min>5.2.0</min><max>6.0.0</max></php></required></dependencies>
18
  </package>
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>Fishpigs_iBanners</name>
4
+ <version>1.2.4.0</version>
5
  <stability>stable</stability>
6
  <license uri="http://fishpig.co.uk/license.txt">FishPig EULA</license>
7
  <channel>community</channel>
10
  <description>Create multiple banner slideshows for your site.</description>
11
  <notes>Fixed menu link in Magento Admin</notes>
12
  <authors><author><name>fishpig</name><user>fishpig</user><email>ben@fishpig.co.uk</email></author></authors>
13
+ <date>2014-01-21</date>
14
+ <time>14:53:11</time>
15
+ <contents><target name="magecommunity"><dir name="Fishpig"><dir name="IBanners"><dir name="Block"><dir name="Adminhtml"><dir name="Banner"><dir name="Edit"><file name="Form.php" hash="e9cd0d7436d36048706bc474704d2b82"/><dir name="Tab"><file name="Form.php" hash="a6ab04d3bb183e32935e3e285fbdabd5"/></dir><file name="Tabs.php" hash="60a82a390e8580594885bceb19a13460"/></dir><file name="Edit.php" hash="93807e5b677fd064e49c547551507202"/><file name="Grid.php" hash="193cf462223dc0a24069c85001baf6d9"/><dir name="Helper"><file name="Image.php" hash="da1821e82b38af686705efb53f5a1ca9"/></dir></dir><file name="Banner.php" hash="181c9778d624e104ab3f8e729c58b3f7"/><file name="Dashboard.php" hash="e4e5bfd422325aeb4810022e72dbb61c"/><file name="Extend.php" hash="065897186d7dd97b354cdd4863b75b1d"/><dir name="Form"><dir name="Renderer"><file name="Useconfig.php" hash="df579ff6a4a783ed17d6c5bc6118e171"/></dir></dir><dir name="Group"><dir name="Edit"><file name="Form.php" hash="5b8f4f8649e974f80ea21de7f323788e"/><dir name="Tab"><file name="Banners.php" hash="f13f72d714e73ba5481fe488b369c879"/><file name="Form.php" hash="67ab47bbe207e41b7542cddc15401590"/></dir><file name="Tabs.php" hash="d57a68d75dde73b39127dc8a932b858e"/></dir><file name="Edit.php" hash="1f3ca94777f0eb8a3363d245d9c5bc9d"/><file name="Grid.php" hash="4f91dc562530e2713fe4bceed61bce46"/></dir><file name="Group.php" hash="6a6ea8ad3f9e1e25dcf0411fa5347b9c"/></dir><file name="View.php" hash="5dd113d04a13f11f4d267916313dc473"/></dir><dir name="FPAdmin"><dir name="Block"><dir name="Adminhtml"><file name="Extend.php" hash="728b160c7ad64711f25906a2877efc5f"/></dir></dir><dir name="etc"><file name="config.xml" hash="4dc538b93fcf1c83a5ef92779f402dae"/></dir><dir name="template"><file name="large.phtml" hash="bc4492815fc29d8b8e0877f6f45c3e27"/><file name="small.phtml" hash="46f3d4c10d3b77d6ea86f0a90a8c07e8"/></dir></dir><dir name="Helper"><file name="Data.php" hash="aeaa36a9c56477944b190b63442fc89d"/><file name="Image.php" hash="92a06beda3aefa58577dd91556001115"/></dir><dir name="Model"><file name="Banner.php" hash="eb4e6aa9c2ce9c849ebc773c88615456"/><file name="Group.php" hash="095c22eb1f93aafb57effca8709f5338"/><dir name="Mysql4"><dir name="Banner"><file name="Collection.php" hash="511a3aceff96f430a5fa44a3a7ff2b05"/></dir><file name="Banner.php" hash="81752a0ab34bde996d9472ac67272472"/><dir name="Group"><file name="Collection.php" hash="ab6a49e01708c118052a696a0e09184c"/></dir><file name="Group.php" hash="65169f143695653cafa08a3aeca28904"/></dir><dir name="System"><dir name="Config"><dir name="Source"><dir name="Carousel"><file name="Effect.php" hash="b615ef28aa59aed914dd95a0242cfc9e"/><file name="Transition.php" hash="290f6abe41d0d44f72f8188a77f8e475"/></dir><dir name="Controls"><file name="Position.php" hash="fe9d0c6845fd0fc28603baee7b053c32"/></dir></dir></dir></dir></dir><dir name="controllers"><dir name="Adminhtml"><dir name="IBanners"><file name="BannerController.php" hash="172548f9c438774d768afada418bd75e"/><file name="GroupController.php" hash="eae957f8e7b58ec1e99a55be6f3f0f02"/></dir><file name="IBannersController.php" hash="ff6f221d06bf0e3a76ee4c27ff5d71e2"/></dir></dir><dir name="etc"><file name="adminhtml.xml" hash="2b7421933971edba033e7287580c3183"/><file name="config.xml" hash="6d89474d73db58ef1d12838177fac3be"/><file name="system.xml" hash="e99f8867801b68adb8a0e0cd0e136685"/></dir><file name="license.txt" hash="257eae92a36bdaaf9584fbf8ba76d1c6"/><file name="notes.txt" hash="f93d194e1cd736f17d42fc72d4bf2331"/><dir name="sql"><dir name="ibanners_setup"><file name="mysql4-install-0.1.0.php" hash="62e4961272f2d697595002b006e72731"/><file name="mysql4-upgrade-0.5.2-0.5.3.php" hash="2e85887fb121d988357a45785d9f06df"/><file name="mysql4-upgrade-0.5.4-0.5.5.php" hash="a16fd4c674ed65eed1c7cee851960d28"/><file name="mysql4-upgrade-0.5.5-0.5.6.php" hash="a002305ec4b958c7213309d874b349f8"/><file name="mysql4-upgrade-0.9.0-0.9.1.php" hash="b970018526e15b6fc938b1866c5bfd81"/><file name="mysql4-upgrade-0.9.1-0.9.2.php" hash="07ba18c243e573655e43c64ee1a0d876"/><file name="mysql4-upgrade-1.0.4-1.0.5.php" hash="7f1cb0ec0dca8a5a4cd07ea3e9444cf7"/><file name="mysql4-upgrade-1.0.5-1.0.6.php" hash="2a430094f423b90adead0fcc6defc26e"/></dir></dir></dir></dir></target><target name="magedesign"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="layout"><file name="ibanners.xml" hash="49afe944f6ccfc7033b86c7cb719c361"/></dir><dir name="template"><dir name="ibanners"><file name="getcode.phtml" hash="79cd6c31a32d21071fa5c7645f629053"/></dir></dir></dir></dir></dir><dir name="frontend"><dir name="base"><dir name="default"><dir name="layout"><file name="ibanners.xml" hash="a68d69986eef07a540f3313cee0a0e7d"/></dir><dir name="template"><dir name="ibanners"><file name="default.phtml" hash="677f081bb8e40f62771abec88aac857c"/></dir></dir></dir></dir></dir></target><target name="mageweb"><dir name="js"><dir name="fishpig"><file name="carousel.min.js" hash="cfd7a8d08a6dca87e4211a400877716e"/></dir></dir><dir name="app"><dir name="etc"><dir name="modules"><file name="Fishpig_iBanners.xml" hash="0b9289cca030da9b13e84ab183f18892"/></dir></dir></dir></target><target name="mageskin"><dir name="frontend"><dir name="base"><dir name="default"><dir name="css"><file name="ibanners.css" hash="f39554b3dcdaad686da4093e59b4efef"/></dir><dir name="images"><dir name="ibanners"><file name="arrow-left.png" hash="a587a6ef8ed482ce83b468b2f8b90008"/><file name="arrow-right.png" hash="001286015205ecf53766877a1d92a784"/></dir></dir></dir></dir></dir><dir name="adminhtml"><dir name="default"><dir name="default"><file name="ibanners.css" hash="328b9e66068670364e620f6e5b194ce5"/></dir></dir></dir></target></contents>
16
  <compatible/>
17
  <dependencies><required><php><min>5.2.0</min><max>6.0.0</max></php></required></dependencies>
18
  </package>