Thumbnailslider - Version 0.1.1

Version Notes

This is beautiful responsive thumbnail slider for magento sites.Admin can manages any number of images into the thumbnail slider. Admin can add,edit and delete thumbnail slider images.

Download this release

Release Info

Developer dataman
Extension Thumbnailslider
Version 0.1.1
Comparing to
See all releases


Code changes from version 0.1.0 to 0.1.1

app/design/frontend/base/default/template/thumbnailslider/thumbnailslider.phtml CHANGED
@@ -1,4 +1,61 @@
1
  <?php $collection = $this->getSilderCollection(); ?>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2
  <?php if ($collection->count() > 0): ?>
3
  <div id="slider1_container" style="position: relative; width: 720px; height: 480px; overflow: hidden;">
4
  <!-- Loading Screen -->
@@ -53,53 +110,7 @@
53
 
54
 
55
 
56
- <script>
57
- jQuery(document).ready(function($) {
58
- var options = {
59
- $AutoPlay: true, //[Optional] Whether to auto play, to enable slideshow, this option must be set to true, default value is false
60
- $AutoPlayInterval: 4000, //[Optional] Interval (in milliseconds) to go for next slide since the previous stopped if the slider is auto playing, default value is 3000
61
- $SlideDuration: 500, //[Optional] Specifies default duration (swipe) for slide in milliseconds, default value is 500
62
- $DragOrientation: 3, //[Optional] Orientation to drag slide, 0 no drag, 1 horizental, 2 vertical, 3 either, default value is 1 (Note that the $DragOrientation should be the same as $PlayOrientation when $DisplayPieces is greater than 1, or parking position is not 0)
63
- $UISearchMode: 0, //[Optional] The way (0 parellel, 1 recursive, default value is 1) to search UI components (slides container, loading screen, navigator container, arrow navigator container, thumbnail navigator container etc).
64
-
65
- $ThumbnailNavigatorOptions: {
66
- $Class: $JssorThumbnailNavigator$, //[Required] Class to create thumbnail navigator instance
67
- $ChanceToShow: 2, //[Required] 0 Never, 1 Mouse Over, 2 Always
68
-
69
- $Loop: 2, //[Optional] Enable loop(circular) of carousel or not, 0: stop, 1: loop, 2 rewind, default value is 1
70
- $SpacingX: 3, //[Optional] Horizontal space between each thumbnail in pixel, default value is 0
71
- $SpacingY: 3, //[Optional] Vertical space between each thumbnail in pixel, default value is 0
72
- $DisplayPieces: 6, //[Optional] Number of pieces to display, default value is 1
73
- $ParkingPosition: 204, //[Optional] The offset position to park thumbnail,
74
-
75
- $ArrowNavigatorOptions: {
76
- $Class: $JssorArrowNavigator$, //[Requried] Class to create arrow navigator instance
77
- $ChanceToShow: 2, //[Required] 0 Never, 1 Mouse Over, 2 Always
78
- $AutoCenter: 2, //[Optional] Auto center arrows in parent container, 0 No, 1 Horizontal, 2 Vertical, 3 Both, default value is 0
79
- $Steps: 6 //[Optional] Steps to go for each navigation request, default value is 1
80
- }
81
- }
82
- };
83
-
84
- var jssor_slider1 = new $JssorSlider$("slider1_container", options);
85
-
86
- //responsive code begin
87
- //you can remove responsive code if you don't want the slider scales while window resizes
88
- function ScaleSlider() {
89
- var parentWidth = jssor_slider1.$Elmt.parentNode.clientWidth;
90
- if (parentWidth)
91
- jssor_slider1.$ScaleWidth(Math.min(parentWidth, 720));
92
- else
93
- window.setTimeout(ScaleSlider, 30);
94
- }
95
- ScaleSlider();
96
-
97
- $(window).bind("load", ScaleSlider);
98
- $(window).bind("resize", ScaleSlider);
99
- $(window).bind("orientationchange", ScaleSlider);
100
- //responsive code end
101
- });
102
- </script>
103
 
104
 
105
 
@@ -260,66 +271,13 @@ position: absolute; display: block; background: url(..media/img/loading.gif) no-
260
 
261
 
262
 
263
- <script>
264
- jQuery(document).ready(function ($) {
265
- var options = {
266
- $AutoPlay: true, //[Optional] Whether to auto play, to enable slideshow, this option must be set to true, default value is false
267
- $AutoPlayInterval: 4000, //[Optional] Interval (in milliseconds) to go for next slide since the previous stopped if the slider is auto playing, default value is 3000
268
- $SlideDuration: 500, //[Optional] Specifies default duration (swipe) for slide in milliseconds, default value is 500
269
- $DragOrientation: 3, //[Optional] Orientation to drag slide, 0 no drag, 1 horizental, 2 vertical, 3 either, default value is 1 (Note that the $DragOrientation should be the same as $PlayOrientation when $DisplayPieces is greater than 1, or parking position is not 0)
270
- $UISearchMode: 0, //[Optional] The way (0 parellel, 1 recursive, default value is 1) to search UI components (slides container, loading screen, navigator container, arrow navigator container, thumbnail navigator container etc).
271
-
272
- $ThumbnailNavigatorOptions: {
273
- $Class: $JssorThumbnailNavigator$, //[Required] Class to create thumbnail navigator instance
274
- $ChanceToShow: 2, //[Required] 0 Never, 1 Mouse Over, 2 Always
275
-
276
- $Loop: 2, //[Optional] Enable loop(circular) of carousel or not, 0: stop, 1: loop, 2 rewind, default value is 1
277
- $SpacingX: 3, //[Optional] Horizontal space between each thumbnail in pixel, default value is 0
278
- $SpacingY: 3, //[Optional] Vertical space between each thumbnail in pixel, default value is 0
279
- $DisplayPieces: 6, //[Optional] Number of pieces to display, default value is 1
280
- $ParkingPosition: 204, //[Optional] The offset position to park thumbnail,
281
-
282
- $ArrowNavigatorOptions: {
283
- $Class: $JssorArrowNavigator$, //[Requried] Class to create arrow navigator instance
284
- $ChanceToShow: 2, //[Required] 0 Never, 1 Mouse Over, 2 Always
285
- $AutoCenter: 2, //[Optional] Auto center arrows in parent container, 0 No, 1 Horizontal, 2 Vertical, 3 Both, default value is 0
286
- $Steps: 6 //[Optional] Steps to go for each navigation request, default value is 1
287
- }
288
- }
289
- };
290
-
291
- var jssor_slider1 = new $JssorSlider$("slider1_container", options);
292
-
293
- //responsive code begin
294
- //you can remove responsive code if you don't want the slider scales while window resizes
295
- function ScaleSlider() {
296
- var parentWidth = jssor_slider1.$Elmt.parentNode.clientWidth;
297
- if (parentWidth)
298
- jssor_slider1.$ScaleWidth(Math.min(parentWidth, 720));
299
- else
300
- window.setTimeout(ScaleSlider, 30);
301
- }
302
- ScaleSlider();
303
-
304
- $(window).bind("load", ScaleSlider);
305
- $(window).bind("resize", ScaleSlider);
306
- $(window).bind("orientationchange", ScaleSlider);
307
- //responsive code end
308
- });
309
- </script>
310
-
311
-
312
 
313
- <script src="<?php echo Mage::getBaseUrl(Mage_Core_Model_Store::URL_TYPE_WEB).'js/thumbnailslider/jquery-1.9.1.min.js'?>" type="text/javascript"></script>
314
 
315
 
316
- <script src="<?php echo Mage::getBaseUrl(Mage_Core_Model_Store::URL_TYPE_WEB).'js/thumbnailslider/jssor.js'?>" type="text/javascript"></script>
317
-
318
- <script src="<?php echo Mage::getBaseUrl(Mage_Core_Model_Store::URL_TYPE_WEB).'js/thumbnailslider/jssor.slider.js'?>" type="text/javascript"></script>
319
-
320
 
321
 
322
 
323
 
324
 
325
- <?php endif; ?>
1
  <?php $collection = $this->getSilderCollection(); ?>
2
+
3
+ <script src="<?php echo Mage::getBaseUrl(Mage_Core_Model_Store::URL_TYPE_WEB).'js/thumbnailslider/jquery-1.9.1.min.js'?>" type="text/javascript"></script>
4
+
5
+
6
+ <script src="<?php echo Mage::getBaseUrl(Mage_Core_Model_Store::URL_TYPE_WEB).'js/thumbnailslider/jssor.js'?>" type="text/javascript"></script>
7
+
8
+ <script src="<?php echo Mage::getBaseUrl(Mage_Core_Model_Store::URL_TYPE_WEB).'js/thumbnailslider/jssor.slider.js'?>" type="text/javascript"></script>
9
+
10
+ <script>
11
+ jQuery(document).ready(function($) {
12
+ var options = {
13
+ $AutoPlay: true, //[Optional] Whether to auto play, to enable slideshow, this option must be set to true, default value is false
14
+ $AutoPlayInterval: 4000, //[Optional] Interval (in milliseconds) to go for next slide since the previous stopped if the slider is auto playing, default value is 3000
15
+ $SlideDuration: 500, //[Optional] Specifies default duration (swipe) for slide in milliseconds, default value is 500
16
+ $DragOrientation: 3, //[Optional] Orientation to drag slide, 0 no drag, 1 horizental, 2 vertical, 3 either, default value is 1 (Note that the $DragOrientation should be the same as $PlayOrientation when $DisplayPieces is greater than 1, or parking position is not 0)
17
+ $UISearchMode: 0, //[Optional] The way (0 parellel, 1 recursive, default value is 1) to search UI components (slides container, loading screen, navigator container, arrow navigator container, thumbnail navigator container etc).
18
+
19
+ $ThumbnailNavigatorOptions: {
20
+ $Class: $JssorThumbnailNavigator$, //[Required] Class to create thumbnail navigator instance
21
+ $ChanceToShow: 2, //[Required] 0 Never, 1 Mouse Over, 2 Always
22
+
23
+ $Loop: 2, //[Optional] Enable loop(circular) of carousel or not, 0: stop, 1: loop, 2 rewind, default value is 1
24
+ $SpacingX: 3, //[Optional] Horizontal space between each thumbnail in pixel, default value is 0
25
+ $SpacingY: 3, //[Optional] Vertical space between each thumbnail in pixel, default value is 0
26
+ $DisplayPieces: 6, //[Optional] Number of pieces to display, default value is 1
27
+ $ParkingPosition: 204, //[Optional] The offset position to park thumbnail,
28
+
29
+ $ArrowNavigatorOptions: {
30
+ $Class: $JssorArrowNavigator$, //[Requried] Class to create arrow navigator instance
31
+ $ChanceToShow: 2, //[Required] 0 Never, 1 Mouse Over, 2 Always
32
+ $AutoCenter: 2, //[Optional] Auto center arrows in parent container, 0 No, 1 Horizontal, 2 Vertical, 3 Both, default value is 0
33
+ $Steps: 6 //[Optional] Steps to go for each navigation request, default value is 1
34
+ }
35
+ }
36
+ };
37
+
38
+ var jssor_slider1 = new $JssorSlider$("slider1_container", options);
39
+
40
+ //responsive code begin
41
+ //you can remove responsive code if you don't want the slider scales while window resizes
42
+ function ScaleSlider() {
43
+ var parentWidth = jssor_slider1.$Elmt.parentNode.clientWidth;
44
+ if (parentWidth)
45
+ jssor_slider1.$ScaleWidth(Math.min(parentWidth, 720));
46
+ else
47
+ window.setTimeout(ScaleSlider, 30);
48
+ }
49
+ ScaleSlider();
50
+
51
+ $(window).bind("load", ScaleSlider);
52
+ $(window).bind("resize", ScaleSlider);
53
+ $(window).bind("orientationchange", ScaleSlider);
54
+ //responsive code end
55
+ });
56
+ </script>
57
+
58
+
59
  <?php if ($collection->count() > 0): ?>
60
  <div id="slider1_container" style="position: relative; width: 720px; height: 480px; overflow: hidden;">
61
  <!-- Loading Screen -->
110
 
111
 
112
 
113
+
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
114
 
115
 
116
 
271
 
272
 
273
 
274
+
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
275
 
 
276
 
277
 
 
 
 
 
278
 
279
 
280
 
281
 
282
 
283
+ <?php endif; ?>
app/design/frontend/base/default/template/thumbnailslider/thumbnailslider.phtml~ CHANGED
@@ -216,7 +216,7 @@
216
  */
217
  .jssorb03 div, .jssorb03 div:hover, .jssorb03 .av
218
  {
219
- background: url(../media/img/b03.png) no-repeat;
220
  overflow:hidden;
221
  cursor: pointer;
222
  }
@@ -237,7 +237,7 @@
237
  */
238
  .jssorb03 div, .jssorb03 div:hover, .jssorb03 .av
239
  {
240
- background: url(../media/img/b03.png) no-repeat;
241
  overflow:hidden;
242
  cursor: pointer;
243
  }
@@ -247,7 +247,7 @@
247
  .jssorb03 .dn, .jssorb03 .dn:hover { background-position: -95px -4px; }
248
 
249
  .abca {
250
- position: absolute; display: block; background: url(../media/img/loading.gif) no-repeat center center;
251
  top: 0px; left: 0px;width: 100%;height:100%;
252
 
253
  }
@@ -260,53 +260,7 @@ position: absolute; display: block; background: url(../media/img/loading.gif) no
260
 
261
 
262
 
263
- <script>
264
- jQuery(document).ready(function ($) {
265
- var options = {
266
- $AutoPlay: true, //[Optional] Whether to auto play, to enable slideshow, this option must be set to true, default value is false
267
- $AutoPlayInterval: 4000, //[Optional] Interval (in milliseconds) to go for next slide since the previous stopped if the slider is auto playing, default value is 3000
268
- $SlideDuration: 500, //[Optional] Specifies default duration (swipe) for slide in milliseconds, default value is 500
269
- $DragOrientation: 3, //[Optional] Orientation to drag slide, 0 no drag, 1 horizental, 2 vertical, 3 either, default value is 1 (Note that the $DragOrientation should be the same as $PlayOrientation when $DisplayPieces is greater than 1, or parking position is not 0)
270
- $UISearchMode: 0, //[Optional] The way (0 parellel, 1 recursive, default value is 1) to search UI components (slides container, loading screen, navigator container, arrow navigator container, thumbnail navigator container etc).
271
-
272
- $ThumbnailNavigatorOptions: {
273
- $Class: $JssorThumbnailNavigator$, //[Required] Class to create thumbnail navigator instance
274
- $ChanceToShow: 2, //[Required] 0 Never, 1 Mouse Over, 2 Always
275
-
276
- $Loop: 2, //[Optional] Enable loop(circular) of carousel or not, 0: stop, 1: loop, 2 rewind, default value is 1
277
- $SpacingX: 3, //[Optional] Horizontal space between each thumbnail in pixel, default value is 0
278
- $SpacingY: 3, //[Optional] Vertical space between each thumbnail in pixel, default value is 0
279
- $DisplayPieces: 6, //[Optional] Number of pieces to display, default value is 1
280
- $ParkingPosition: 204, //[Optional] The offset position to park thumbnail,
281
-
282
- $ArrowNavigatorOptions: {
283
- $Class: $JssorArrowNavigator$, //[Requried] Class to create arrow navigator instance
284
- $ChanceToShow: 2, //[Required] 0 Never, 1 Mouse Over, 2 Always
285
- $AutoCenter: 2, //[Optional] Auto center arrows in parent container, 0 No, 1 Horizontal, 2 Vertical, 3 Both, default value is 0
286
- $Steps: 6 //[Optional] Steps to go for each navigation request, default value is 1
287
- }
288
- }
289
- };
290
-
291
- var jssor_slider1 = new $JssorSlider$("slider1_container", options);
292
-
293
- //responsive code begin
294
- //you can remove responsive code if you don't want the slider scales while window resizes
295
- function ScaleSlider() {
296
- var parentWidth = jssor_slider1.$Elmt.parentNode.clientWidth;
297
- if (parentWidth)
298
- jssor_slider1.$ScaleWidth(Math.min(parentWidth, 720));
299
- else
300
- window.setTimeout(ScaleSlider, 30);
301
- }
302
- ScaleSlider();
303
-
304
- $(window).bind("load", ScaleSlider);
305
- $(window).bind("resize", ScaleSlider);
306
- $(window).bind("orientationchange", ScaleSlider);
307
- //responsive code end
308
- });
309
- </script>
310
 
311
 
312
 
216
  */
217
  .jssorb03 div, .jssorb03 div:hover, .jssorb03 .av
218
  {
219
+ background: url(..media/img/b03.png) no-repeat;
220
  overflow:hidden;
221
  cursor: pointer;
222
  }
237
  */
238
  .jssorb03 div, .jssorb03 div:hover, .jssorb03 .av
239
  {
240
+ background: url(..media/img/b03.png) no-repeat;
241
  overflow:hidden;
242
  cursor: pointer;
243
  }
247
  .jssorb03 .dn, .jssorb03 .dn:hover { background-position: -95px -4px; }
248
 
249
  .abca {
250
+ position: absolute; display: block; background: url(..media/img/loading.gif) no-repeat center center;
251
  top: 0px; left: 0px;width: 100%;height:100%;
252
 
253
  }
260
 
261
 
262
 
263
+
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
264
 
265
 
266
 
media/thumbnailslider/03.jpg ADDED
Binary file
media/thumbnailslider/10.jpg ADDED
Binary file
media/thumbnailslider/11.jpg ADDED
Binary file
media/thumbnailslider/12.jpg ADDED
Binary file
media/thumbnailslider/thumb-03.jpg ADDED
Binary file
media/thumbnailslider/thumb-10.jpg ADDED
Binary file
media/thumbnailslider/thumb-11.jpg ADDED
Binary file
media/thumbnailslider/thumb-12.jpg ADDED
Binary file
package.xml CHANGED
@@ -1,7 +1,7 @@
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>Thumbnailslider</name>
4
- <version>0.1.0</version>
5
  <stability>stable</stability>
6
  <license>osl</license>
7
  <channel>community</channel>
@@ -10,9 +10,9 @@
10
  <description>This is beautiful responsive thumbnail slider for magento sites.Admin can manages any number of images into the thumbnail slider. Admin can add,edit and delete thumbnail slider images.</description>
11
  <notes>This is beautiful responsive thumbnail slider for magento sites.Admin can manages any number of images into the thumbnail slider. Admin can add,edit and delete thumbnail slider images.</notes>
12
  <authors><author><name>dataman</name><user>gauravmishra</user><email>webadmin@dataman.in</email></author></authors>
13
- <date>2015-01-22</date>
14
- <time>06:11:04</time>
15
- <contents><target name="mage"><dir name="app"><dir name="code"><dir name="local"><dir name="Dataman"><dir name="Thumbnailslider"><dir name="Block"><dir name="Adminhtml"><dir name="Thumbnailslider"><dir name="Edit"><file name="Form.php" hash="5d7a0ea704fcb56b899b5a364649d4e3"/><dir name="Tab"><file name="Form.php" hash="a6a4004720d55ce8c5b76fe2d04358f8"/></dir><file name="Tabs.php" hash="23c71f48e35555a6681dabcf8db2160c"/></dir><file name="Edit.php" hash="30d3d219d03c2166dec0f804f692a3eb"/><file name="Grid.php" hash="2956d68922f7b7340be669077b287a9c"/></dir><file name="Thumbnailslider.php" hash="bbb321b72bba69e6b142ad1a9ec449e8"/></dir><file name="Thumbnailslider.php" hash="6307db95a0b1cfb46072f32a2c9bde60"/></dir><dir name="Helper"><file name="Data.php" hash="c42a44c3b490a2aa429efa2960de7404"/></dir><dir name="Model"><dir name="Mysql4"><dir name="Thumbnailslider"><file name="Collection.php" hash="75f4440d10252be0b33e5f4e2f1e32a9"/></dir><file name="Thumbnailslider.php" hash="cd27cf2793370e658c35296c45658c66"/></dir><file name="Status.php" hash="161a3678a35ebe05016f422172700bf2"/><file name="Thumbnailslider.php" hash="105ddde0e9fcf0758b62f0c9e2e2fd2c"/></dir><dir name="controllers"><dir name="Adminhtml"><file name="ThumbnailsliderController.php" hash="71d23ccf432c428c9c94f8265e7f724c"/></dir><file name="IndexController.php" hash="ba26c6a5b4f91c16579acd5f17270580"/></dir><dir name="etc"><file name="config.xml" hash="19a4deafe3db44175212b92743e8903a"/></dir><dir name="sql"><dir name="thumbnailslider_setup"><file name="mysql4-install-0.1.0.php" hash="2b09537749b40a481376010b82da32b1"/></dir></dir></dir></dir></dir></dir><dir name="design"><dir name="frontend"><dir name="base"><dir name="default"><dir name="layout"><file name="thumbnailslider.xml" hash="8047a888cfaa1f1fea39c687e219f6fd"/></dir><dir name="template"><dir name="thumbnailslider"><file name="thumbnailslider.phtml" hash="0634e40f2bb978b412d4222a2d193f4c"/><file name="thumbnailslider.phtml~" hash="60b3824ed6f34a2118ed55d00bae4941"/></dir></dir></dir></dir></dir></dir></dir><dir name="js"><dir name="thumbnailslider"><file name="jquery-1.9.1.min.js" hash="8cb6c28c541f888d6044bfeb8a34724e"/><file name="jssor.js" hash="89b0070495d48c05865e87ff94f92827"/><file name="jssor.slider.js" hash="f30912c714a482f6bb4eb8a7fd566d61"/></dir></dir></target><target name="magedesign"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="layout"><file name="thumbnailslider.xml" hash="d5cee66a5f3c3011f80a35bf962e9954"/></dir></dir></dir></dir></target><target name="magemedia"><dir name="img"><file name="a11.png" hash="f7bcd8df5258346060276b9dbcb0c63a"/><file name="b03.png" hash="66ddc21fc1fad1a9fd04d042e7f442e8"/><file name="loading.gif" hash="dd78ac008009bd821d2bf2da98108854"/></dir><dir name="thumbnailslider"><file name="01.jpg" hash="1a7eddcc07ad3e9c4486329716ae6666"/><file name="02.jpg" hash="113c02330098f433f246c994cc677e67"/><file name="thumb-01.jpg" hash="b42bb7bce8344e46a7ffd00b10d4a86f"/><file name="thumb-02.jpg" hash="2a2c994818c1cad352b8c0468f4b22e2"/></dir></target><target name="mageetc"><dir name="modules"><file name="Dataman_Thumbnailslider.xml" hash="d8b12ca775cc990a1f21760e7196dbbe"/></dir></target></contents>
16
  <compatible/>
17
  <dependencies><required><php><min>5.1.0</min><max>6.0.0</max></php><package><name>magento_core_module</name><channel>community</channel><min>1.6</min><max>1.9</max></package></required></dependencies>
18
  </package>
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>Thumbnailslider</name>
4
+ <version>0.1.1</version>
5
  <stability>stable</stability>
6
  <license>osl</license>
7
  <channel>community</channel>
10
  <description>This is beautiful responsive thumbnail slider for magento sites.Admin can manages any number of images into the thumbnail slider. Admin can add,edit and delete thumbnail slider images.</description>
11
  <notes>This is beautiful responsive thumbnail slider for magento sites.Admin can manages any number of images into the thumbnail slider. Admin can add,edit and delete thumbnail slider images.</notes>
12
  <authors><author><name>dataman</name><user>gauravmishra</user><email>webadmin@dataman.in</email></author></authors>
13
+ <date>2015-02-26</date>
14
+ <time>06:56:11</time>
15
+ <contents><target name="mage"><dir name="app"><dir name="code"><dir name="local"><dir name="Dataman"><dir name="Thumbnailslider"><dir name="Block"><dir name="Adminhtml"><dir name="Thumbnailslider"><dir name="Edit"><file name="Form.php" hash="5d7a0ea704fcb56b899b5a364649d4e3"/><dir name="Tab"><file name="Form.php" hash="a6a4004720d55ce8c5b76fe2d04358f8"/></dir><file name="Tabs.php" hash="23c71f48e35555a6681dabcf8db2160c"/></dir><file name="Edit.php" hash="30d3d219d03c2166dec0f804f692a3eb"/><file name="Grid.php" hash="2956d68922f7b7340be669077b287a9c"/></dir><file name="Thumbnailslider.php" hash="bbb321b72bba69e6b142ad1a9ec449e8"/></dir><file name="Thumbnailslider.php" hash="6307db95a0b1cfb46072f32a2c9bde60"/></dir><dir name="Helper"><file name="Data.php" hash="c42a44c3b490a2aa429efa2960de7404"/></dir><dir name="Model"><dir name="Mysql4"><dir name="Thumbnailslider"><file name="Collection.php" hash="75f4440d10252be0b33e5f4e2f1e32a9"/></dir><file name="Thumbnailslider.php" hash="cd27cf2793370e658c35296c45658c66"/></dir><file name="Status.php" hash="161a3678a35ebe05016f422172700bf2"/><file name="Thumbnailslider.php" hash="105ddde0e9fcf0758b62f0c9e2e2fd2c"/></dir><dir name="controllers"><dir name="Adminhtml"><file name="ThumbnailsliderController.php" hash="71d23ccf432c428c9c94f8265e7f724c"/></dir><file name="IndexController.php" hash="ba26c6a5b4f91c16579acd5f17270580"/></dir><dir name="etc"><file name="config.xml" hash="19a4deafe3db44175212b92743e8903a"/></dir><dir name="sql"><dir name="thumbnailslider_setup"><file name="mysql4-install-0.1.0.php" hash="2b09537749b40a481376010b82da32b1"/></dir></dir></dir></dir></dir></dir><dir name="design"><dir name="frontend"><dir name="base"><dir name="default"><dir name="layout"><file name="thumbnailslider.xml" hash="8047a888cfaa1f1fea39c687e219f6fd"/></dir><dir name="template"><dir name="thumbnailslider"><file name="thumbnailslider.phtml" hash="7058a83e00ffdc6ef3b502aacad2f53b"/><file name="thumbnailslider.phtml~" hash="3fa778d17ec6a4e03a7f78a681c6d1e7"/></dir></dir></dir></dir></dir></dir></dir><dir name="js"><dir name="thumbnailslider"><file name="jquery-1.9.1.min.js" hash="8cb6c28c541f888d6044bfeb8a34724e"/><file name="jssor.js" hash="89b0070495d48c05865e87ff94f92827"/><file name="jssor.slider.js" hash="f30912c714a482f6bb4eb8a7fd566d61"/></dir></dir></target><target name="magedesign"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="layout"><file name="thumbnailslider.xml" hash="d5cee66a5f3c3011f80a35bf962e9954"/></dir></dir></dir></dir></target><target name="magemedia"><dir name="img"><file name="a11.png" hash="f7bcd8df5258346060276b9dbcb0c63a"/><file name="b03.png" hash="66ddc21fc1fad1a9fd04d042e7f442e8"/><file name="loading.gif" hash="dd78ac008009bd821d2bf2da98108854"/></dir><dir name="thumbnailslider"><file name="01.jpg" hash="1a7eddcc07ad3e9c4486329716ae6666"/><file name="02.jpg" hash="113c02330098f433f246c994cc677e67"/><file name="03.jpg" hash="d4c3a2bb9d0fe713d92078cb44141506"/><file name="10.jpg" hash="e0b3839670a31c45cf8efbd69610f0d2"/><file name="11.jpg" hash="f2ca0e84d11b59d3b261c76caa3afb26"/><file name="12.jpg" hash="e2e85be65995942f1fecf97adeb488b6"/><file name="thumb-01.jpg" hash="b42bb7bce8344e46a7ffd00b10d4a86f"/><file name="thumb-02.jpg" hash="2a2c994818c1cad352b8c0468f4b22e2"/><file name="thumb-03.jpg" hash="4b3966b0fb71edc42f71c2542fb644c3"/><file name="thumb-10.jpg" hash="623fd8e2b436d3ea9ac5afd30d7c4744"/><file name="thumb-11.jpg" hash="8af6bfc14ab36ea952deed95d1bd3051"/><file name="thumb-12.jpg" hash="45f67e9d7225d90ed7ff394b53d7867c"/></dir></target><target name="mageetc"><dir name="modules"><file name="Dataman_Thumbnailslider.xml" hash="d8b12ca775cc990a1f21760e7196dbbe"/></dir></target></contents>
16
  <compatible/>
17
  <dependencies><required><php><min>5.1.0</min><max>6.0.0</max></php><package><name>magento_core_module</name><channel>community</channel><min>1.6</min><max>1.9</max></package></required></dependencies>
18
  </package>