CorlleteLab_Imagezoom - Version 0.1.10

Version Notes

0.1.6
- Fixed PHP version requirements

0.1.7
- Added support for 1.4+

0.1.8
- Minor fixes

0.1.9
- Tint effect JS error FIX
- Language file minor fix

0.1.10
- Added new config settings

Download this release

Release Info

Developer Magento Core Team
Extension CorlleteLab_Imagezoom
Version 0.1.10
Comparing to
See all releases


Code changes from version 0.1.9 to 0.1.10

app/code/community/CorlleteLab/Imagezoom/etc/config.xml CHANGED
@@ -148,6 +148,9 @@
148
  <showTitle>1</showTitle>
149
  <titleOpacity></titleOpacity>
150
  </imagezoom_options>
 
 
 
151
  </imagezoomconfig>
152
  </default>
153
  </config>
148
  <showTitle>1</showTitle>
149
  <titleOpacity></titleOpacity>
150
  </imagezoom_options>
151
+ <imagezoom_images>
152
+ <imagesToShow></imagesToShow>
153
+ </imagezoom_images>
154
  </imagezoomconfig>
155
  </default>
156
  </config>
app/code/community/CorlleteLab/Imagezoom/etc/system.xml CHANGED
@@ -291,6 +291,26 @@
291
  </titleOpacity>
292
  </fields>
293
  </imagezoom_options>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
294
  </groups>
295
  </imagezoomconfig>
296
  </sections>
291
  </titleOpacity>
292
  </fields>
293
  </imagezoom_options>
294
+ <imagezoom_images translate="label">
295
+ <label>Image Zoom Additional Images (Configurable Products Only)</label>
296
+ <frontend_type>text</frontend_type>
297
+ <sort_order>400</sort_order>
298
+ <show_in_default>1</show_in_default>
299
+ <show_in_website>1</show_in_website>
300
+ <show_in_store>1</show_in_store>
301
+ <fields>
302
+ <imagesToShow translate="label comment">
303
+ <label>Images To Show</label>
304
+ <comment>Leave empty to show all images. If you enter a number ImageZoom will display this number of additional images. All other images will be hidden and a link "Show All" will be displayed.</comment>
305
+ <validate>validate-number</validate>
306
+ <frontend_type>text</frontend_type>
307
+ <sort_order>10</sort_order>
308
+ <show_in_default>1</show_in_default>
309
+ <show_in_website>1</show_in_website>
310
+ <show_in_store>1</show_in_store>
311
+ </imagesToShow>
312
+ </fields>
313
+ </imagezoom_images>
314
  </groups>
315
  </imagezoomconfig>
316
  </sections>
app/design/frontend/base/default/template/corlletelab/imagezoom/media.phtml CHANGED
@@ -15,7 +15,8 @@
15
  $_product = $this->getProduct();
16
  $_helper = $this->helper('catalog/output');
17
  $zoom_image_size = Mage::getStoreConfig('imagezoomconfig/imagezoom_style_css/img_size');
18
-
 
19
  $img_arr = array();
20
 
21
 
@@ -68,18 +69,7 @@
68
 
69
  <script type="text/javascript">
70
  function jSelectImage(id) {
71
- var add = $$('.more-views li.add');
72
- if (add && add.length > 0) {
73
- $('show-all').show();
74
- add.each(function(item,i){
75
- item.hide();
76
- var className = 'item-'+id;
77
-
78
- if (item.hasClassName(className)){
79
- item.show();
80
- }
81
- })
82
- }
83
 
84
  if (assocIMG['big_image_'+id] && assocIMG['small_image_'+id]) {
85
  // Destroy the previous zoom
@@ -94,6 +84,22 @@
94
  }
95
  }
96
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
97
  function showAll() {
98
  var add = $$('.more-views li.add');
99
  if (add && add.length > 0) {
@@ -130,15 +136,23 @@
130
  </li>
131
  <?php endforeach; ?>
132
  <?php if (isset($_childProducts) && count($_childProducts) > 0):?>
 
133
  <?php foreach ($img_arr as $img): ?>
134
- <li class="add item-<?php echo $img['id']; ?>">
135
  <a href="<?php echo $img['big_image']; ?>" class="cloud-zoom-gallery" title="<?php echo $img['label'] ?>"
136
  rel="useZoom: 'image-zoom', smallImage: '<?php echo $img['small_image']; ?>'" >
137
  <img src="<?php echo $img['thumb']; ?>" alt="<?php echo $img['label'] ?>" />
138
  </a>
139
- </li>
 
140
  <?php endforeach; ?>
141
- <li style=" padding: 0; background-color: transparent; display: none"></li>
 
 
 
 
 
 
142
  <?php endif; ?>
143
  </ul>
144
 
15
  $_product = $this->getProduct();
16
  $_helper = $this->helper('catalog/output');
17
  $zoom_image_size = Mage::getStoreConfig('imagezoomconfig/imagezoom_style_css/img_size');
18
+ $images_to_show = Mage::getStoreConfig('imagezoomconfig/imagezoom_images/imagesToShow');
19
+ $images_to_show = $images_to_show != '' ? $images_to_show : 999;
20
  $img_arr = array();
21
 
22
 
69
 
70
  <script type="text/javascript">
71
  function jSelectImage(id) {
72
+ hideSelected(id);
 
 
 
 
 
 
 
 
 
 
 
73
 
74
  if (assocIMG['big_image_'+id] && assocIMG['small_image_'+id]) {
75
  // Destroy the previous zoom
84
  }
85
  }
86
 
87
+ function hideSelected(id) {
88
+ console.log(id);
89
+ var add = $$('.more-views li.add');
90
+ if (add && add.length > 0) {
91
+ $('show-all').show();
92
+ add.each(function(item,i){
93
+ item.hide();
94
+ var className = 'item-'+id;
95
+
96
+ if (item.hasClassName(className)){
97
+ item.show();
98
+ }
99
+ })
100
+ }
101
+ }
102
+
103
  function showAll() {
104
  var add = $$('.more-views li.add');
105
  if (add && add.length > 0) {
136
  </li>
137
  <?php endforeach; ?>
138
  <?php if (isset($_childProducts) && count($_childProducts) > 0):?>
139
+ <?php $cnt = 0; ?>
140
  <?php foreach ($img_arr as $img): ?>
141
+ <li class="add item-<?php echo $img['id']; ?>"<?php if ($cnt > $images_to_show) : ?> style="display: none"<?php endif; ?>>
142
  <a href="<?php echo $img['big_image']; ?>" class="cloud-zoom-gallery" title="<?php echo $img['label'] ?>"
143
  rel="useZoom: 'image-zoom', smallImage: '<?php echo $img['small_image']; ?>'" >
144
  <img src="<?php echo $img['thumb']; ?>" alt="<?php echo $img['label'] ?>" />
145
  </a>
146
+ </li>
147
+ <?php $cnt++; ?>
148
  <?php endforeach; ?>
149
+
150
+ <li style="padding: 0; background-color: transparent; display: none"></li>
151
+ <?php if ($cnt > $images_to_show) : ?>
152
+ <script type="text/javascript">
153
+ $('show-all').show();
154
+ </script>
155
+ <?php endif; ?>
156
  <?php endif; ?>
157
  </ul>
158
 
app/design/frontend/default/default/template/corlletelab/imagezoom/media.phtml CHANGED
@@ -15,7 +15,8 @@
15
  $_product = $this->getProduct();
16
  $_helper = $this->helper('catalog/output');
17
  $zoom_image_size = Mage::getStoreConfig('imagezoomconfig/imagezoom_style_css/img_size');
18
-
 
19
  $img_arr = array();
20
 
21
 
@@ -68,18 +69,7 @@
68
 
69
  <script type="text/javascript">
70
  function jSelectImage(id) {
71
- var add = $$('.more-views li.add');
72
- if (add && add.length > 0) {
73
- $('show-all').show();
74
- add.each(function(item,i){
75
- item.hide();
76
- var className = 'item-'+id;
77
-
78
- if (item.hasClassName(className)){
79
- item.show();
80
- }
81
- })
82
- }
83
 
84
  if (assocIMG['big_image_'+id] && assocIMG['small_image_'+id]) {
85
  // Destroy the previous zoom
@@ -94,6 +84,22 @@
94
  }
95
  }
96
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
97
  function showAll() {
98
  var add = $$('.more-views li.add');
99
  if (add && add.length > 0) {
@@ -130,15 +136,23 @@
130
  </li>
131
  <?php endforeach; ?>
132
  <?php if (isset($_childProducts) && count($_childProducts) > 0):?>
 
133
  <?php foreach ($img_arr as $img): ?>
134
- <li class="add item-<?php echo $img['id']; ?>">
135
  <a href="<?php echo $img['big_image']; ?>" class="cloud-zoom-gallery" title="<?php echo $img['label'] ?>"
136
  rel="useZoom: 'image-zoom', smallImage: '<?php echo $img['small_image']; ?>'" >
137
  <img src="<?php echo $img['thumb']; ?>" alt="<?php echo $img['label'] ?>" />
138
  </a>
139
- </li>
 
140
  <?php endforeach; ?>
141
- <li style=" padding: 0; background-color: transparent; display: none"></li>
 
 
 
 
 
 
142
  <?php endif; ?>
143
  </ul>
144
 
15
  $_product = $this->getProduct();
16
  $_helper = $this->helper('catalog/output');
17
  $zoom_image_size = Mage::getStoreConfig('imagezoomconfig/imagezoom_style_css/img_size');
18
+ $images_to_show = Mage::getStoreConfig('imagezoomconfig/imagezoom_images/imagesToShow');
19
+ $images_to_show = $images_to_show != '' ? $images_to_show : 999;
20
  $img_arr = array();
21
 
22
 
69
 
70
  <script type="text/javascript">
71
  function jSelectImage(id) {
72
+ hideSelected(id);
 
 
 
 
 
 
 
 
 
 
 
73
 
74
  if (assocIMG['big_image_'+id] && assocIMG['small_image_'+id]) {
75
  // Destroy the previous zoom
84
  }
85
  }
86
 
87
+ function hideSelected(id) {
88
+ console.log(id);
89
+ var add = $$('.more-views li.add');
90
+ if (add && add.length > 0) {
91
+ $('show-all').show();
92
+ add.each(function(item,i){
93
+ item.hide();
94
+ var className = 'item-'+id;
95
+
96
+ if (item.hasClassName(className)){
97
+ item.show();
98
+ }
99
+ })
100
+ }
101
+ }
102
+
103
  function showAll() {
104
  var add = $$('.more-views li.add');
105
  if (add && add.length > 0) {
136
  </li>
137
  <?php endforeach; ?>
138
  <?php if (isset($_childProducts) && count($_childProducts) > 0):?>
139
+ <?php $cnt = 0; ?>
140
  <?php foreach ($img_arr as $img): ?>
141
+ <li class="add item-<?php echo $img['id']; ?>"<?php if ($cnt > $images_to_show) : ?> style="display: none"<?php endif; ?>>
142
  <a href="<?php echo $img['big_image']; ?>" class="cloud-zoom-gallery" title="<?php echo $img['label'] ?>"
143
  rel="useZoom: 'image-zoom', smallImage: '<?php echo $img['small_image']; ?>'" >
144
  <img src="<?php echo $img['thumb']; ?>" alt="<?php echo $img['label'] ?>" />
145
  </a>
146
+ </li>
147
+ <?php $cnt++; ?>
148
  <?php endforeach; ?>
149
+
150
+ <li style="padding: 0; background-color: transparent; display: none"></li>
151
+ <?php if ($cnt > $images_to_show) : ?>
152
+ <script type="text/javascript">
153
+ $('show-all').show();
154
+ </script>
155
+ <?php endif; ?>
156
  <?php endif; ?>
157
  </ul>
158
 
app/locale/en_US/CorlleteLab_ImageZoom.csv CHANGED
@@ -1,33 +1,35 @@
1
- "Adjust X (pixel)","Adjust X (pixel)"
2
- "Adjust Y (pixel)","Adjust Y (pixel)"
3
- "Amount of smoothness/drift of the zoom image as it moves. The higher the number, the smoother/more drifty the movement will be. 1 = no smoothing.","Amount of smoothness/drift of the zoom image as it moves. The higher the number, the smoother/more drifty the movement will be. 1 = no smoothing."
4
- "CorlleteLab Plugins","CorlleteLab Plugins"
5
- "e.g. 77CC99","e.g. 77CC99"
6
- "Enable Module","Enable Module"
7
- "Image Size (pixel)","Image Size (pixel)"
8
- "Image Zoom Configuration","Image Zoom Configuration"
9
- "Image Zoom Options","Image Zoom Options"
10
- "Image Zoom Style","Image Zoom Style"
11
- "Leave empty for default (default: 0). Negative values are allowed","Leave empty for default (default: 0). Negative values are allowed"
12
- "Leave empty for default (same as imge size)","Leave empty for default (same as imge size)"
13
- "Lens Opacity","Lens Opacity"
14
- "Load External jQuery","Load External jQuery"
15
- "Module Options","Module Options"
16
- "Moving Lens Background Color","Moving Lens Background Color"
17
- "Moving Lens Border Color","Moving Lens Border Color"
18
- "Moving Lens Border Thickness","Moving Lens Border Thickness"
19
- "Number between 0 and 1, where 0 is fully transparent and 1 is fully opaque.","Number between 0 and 1, where 0 is fully transparent and 1 is fully opaque."
20
- "Opacity of the lens mouse pointer, where 0 is fully transparent, and 1 is fully opaque. In tint and soft-focus modes, it will always be transparent.","Opacity of the lens mouse pointer, where 0 is fully transparent, and 1 is fully opaque. In tint and soft-focus modes, it will always be transparent."
21
- "Position","Position"
22
- "Show Title","Show Title"
23
- "Smooth Move","Smooth Move"
24
- "Specifies the position of the zoom window relative to the small image.","Specifies the position of the zoom window relative to the small image."
25
- "This will load the jQuery library from the This will load the jQuery library from the Google Content Network.<span class=""notice"">Probably better than from your own server. </span>","This will load the jQuery library from the This will load the jQuery library from the Google Content Network.<span class=""notice"">Probably better than from your own server. </span>"
26
- "Tint Color","Tint Color"
27
- "Tint Opacity","Tint Opacity"
28
- "Title Opacity","Title Opacity"
29
- "Zoom Effect","Zoom Effect"
30
- "Zoom Height","Zoom Height"
31
- "Zoom Width","Zoom Width"
32
- "Zoom Window Border Color","Zoom Window Border Color"
33
- "Zoom Window Border Thickness","Zoom Window Border Thickness"
 
 
1
+ "Adjust X (pixel)" "Adjust X (pixel)"
2
+ "Adjust Y (pixel)" "Adjust Y (pixel)"
3
+ "Amount of smoothness/drift of the zoom image as it moves. The higher the number, the smoother/more drifty the movement will be. 1 = no smoothing." "Amount of smoothness/drift of the zoom image as it moves. The higher the number, the smoother/more drifty the movement will be. 1 = no smoothing."
4
+ "CorlleteLab Plugins" "CorlleteLab Plugins"
5
+ "e.g. 77CC99" "e.g. 77CC99"
6
+ "Enable Module" "Enable Module"
7
+ "Image Size (pixel)" "Image Size (pixel)"
8
+ "Image Zoom Configuration" "Image Zoom Configuration"
9
+ "Image Zoom Options" "Image Zoom Options"
10
+ "Image Zoom Style" "Image Zoom Style"
11
+ "Leave empty for default (default: 0). Negative values are allowed" "Leave empty for default (default: 0). Negative values are allowed"
12
+ "Leave empty for default (same as imge size)" "Leave empty for default (same as imge size)"
13
+ "Lens Opacity" "Lens Opacity"
14
+ "Load External jQuery" "Load External jQuery"
15
+ "Module Options" "Module Options"
16
+ "Moving Lens Background Color" "Moving Lens Background Color"
17
+ "Moving Lens Border Color" "Moving Lens Border Color"
18
+ "Moving Lens Border Thickness" "Moving Lens Border Thickness"
19
+ "Number between 0 and 1, where 0 is fully transparent and 1 is fully opaque." "Number between 0 and 1, where 0 is fully transparent and 1 is fully opaque."
20
+ "Opacity of the lens mouse pointer, where 0 is fully transparent, and 1 is fully opaque. In tint and soft-focus modes, it will always be transparent." "Opacity of the lens mouse pointer, where 0 is fully transparent, and 1 is fully opaque. In tint and soft-focus modes, it will always be transparent."
21
+ "Position" "Position"
22
+ "Show Title" "Show Title"
23
+ "Smooth Move" "Smooth Move"
24
+ "Specifies the position of the zoom window relative to the small image." "Specifies the position of the zoom window relative to the small image."
25
+ "This will load the jQuery library from the This will load the jQuery library from the Google Content Network.<span class=""notice"">Probably better than from your own server. </span>" "This will load the jQuery library from the This will load the jQuery library from the Google Content Network.<span class=""notice"">Probably better than from your own server. </span>"
26
+ "Tint Color" "Tint Color"
27
+ "Tint Opacity" "Tint Opacity"
28
+ "Title Opacity" "Title Opacity"
29
+ "Zoom Effect" "Zoom Effect"
30
+ "Zoom Height" "Zoom Height"
31
+ "Zoom Width" "Zoom Width"
32
+ "Zoom Window Border Color" "Zoom Window Border Color"
33
+ "Zoom Window Border Thickness" "Zoom Window Border Thickness"
34
+ "Images To Show" "Images To Show"
35
+ "Leave empty to show all images. If you enter a number ImageZoom will display this number of additional images. All other images will be hidden and a link ""Show All"" will be displayed." "Leave empty to show all images. If you enter a number ImageZoom will display this number of additional images. All other images will be hidden and a link ""Show All"" will be displayed."
package.xml CHANGED
@@ -1,13 +1,16 @@
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>CorlleteLab_Imagezoom</name>
4
- <version>0.1.9</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>
8
  <extends/>
9
- <summary>Image Zoom for product images. Configurable and Grouped products are also supported.</summary>
10
- <description>Image Zoom for product images. Configurable and Grouped products are also supported.</description>
 
 
 
11
  <notes>0.1.6&#xD;
12
  - Fixed PHP version requirements&#xD;
13
  &#xD;
@@ -19,11 +22,14 @@
19
  &#xD;
20
  0.1.9&#xD;
21
  - Tint effect JS error FIX&#xD;
22
- - Language file minor fix</notes>
 
 
 
23
  <authors><author><name>Desislav Yosifov</name><user>auto-converted</user><email>deskin@probg.com</email></author></authors>
24
- <date>2011-10-03</date>
25
- <time>07:06:50</time>
26
- <contents><target name="magecommunity"><dir name="CorlleteLab"><dir name="Imagezoom"><dir name="Block"><dir name="Catalog"><dir name="Product"><file name="View.php" hash="49b559624494bf64ace997fbee9dfd52"/></dir></dir><dir name="Html"><file name="Head.php" hash="eb6a6cc918857cb6a49695946b3b0339"/></dir></dir><dir name="Helper"><file name="Data.php" hash="da181c23320ffd48fc13076a61e5743b"/></dir><dir name="Model"><dir name="Adminhtml"><dir name="System"><dir name="Config"><dir name="Source"><file name="Position.php" hash="3202945d312df9a18977e38473a88a33"/><file name="Zoomeffect.php" hash="506343ccb9ef940fc577029ed5a0a47c"/></dir></dir><file name="Color.php" hash="6d9be20970ecbbc3be9f4e29e4130d06"/><file name="Size.php" hash="4d27ab856f017b32626a19460b0984a5"/></dir></dir></dir><dir name="controllers"><file name="IndexController.php" hash="a7ae6f32c671c0624779a1d6a188a885"/></dir><dir name="etc"><file name="adminhtml.xml" hash="2774ef2b98fc8995157a97f1d05e0196"/><file name="config.xml" hash="55abb3b465f5fbcb1c8b3903fa8aab1d"/><file name="system.xml" hash="ec749375fdf843e6715a453ae3971d60"/></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="CorlleteLab_Imagezoom.xml" hash="be76b163aaf29b643d4a8c27ead5b5ee"/></dir></target><target name="magelocale"><dir name="en_US"><file name="CorlleteLab_ImageZoom.csv" hash="78e190b9b960a721edc12ae9c5bcb54c"/></dir></target><target name="mageweb"><dir name="js"><dir name="corlletelab"><dir name="imagezoom"><file name="cloud-zoom.1.0.2.js" hash="c1893fd33ca7e6329246342be8acc03d"/><file name="jquery-1.6.2.min.js" hash="a1a8cb16a060f6280a767187fd22e037"/><file name="product_override.js" hash="a7b9d9c1d0eec0937f6394f3b6b81dc0"/></dir></dir></dir></target><target name="magedesign"><dir name="frontend"><dir name="base"><dir name="default"><dir name="layout"><file name="imagezoom.xml" hash="7447d71df1a9c3cd48cd110d6dd2972c"/></dir><dir name="template"><dir name="corlletelab"><dir name="imagezoom"><file name="grouped.phtml" hash="cbb95504d0160bf8647ab1de975289ea"/><file name="media.phtml" hash="4bd0f67dae00bd4031d0851c68103f74"/></dir></dir></dir></dir></dir><dir name="default"><dir name="default"><dir name="layout"><file name="imagezoom.xml" hash="7447d71df1a9c3cd48cd110d6dd2972c"/></dir><dir name="template"><dir name="corlletelab"><dir name="imagezoom"><file name="grouped.phtml" hash="cbb95504d0160bf8647ab1de975289ea"/><file name="media.phtml" hash="4bd0f67dae00bd4031d0851c68103f74"/></dir></dir></dir></dir></dir></dir></target><target name="mageskin"><dir name="frontend"><dir name="base"><dir name="default"><dir name="css"><dir name="corlletelab"><file name="imagezoom.css" hash="988e76756be393d452cd36a570a94c7d"/></dir></dir></dir></dir><dir name="default"><dir name="default"><dir name="css"><dir name="corlletelab"><file name="imagezoom.css" hash="8bb60e53a7b337fd33db683dfae3c59c"/></dir></dir></dir></dir></dir></target></contents>
27
  <compatible/>
28
  <dependencies/>
29
  </package>
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>CorlleteLab_Imagezoom</name>
4
+ <version>0.1.10</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>
8
  <extends/>
9
+ <summary>Image Zoom v. 0.1.10</summary>
10
+ <description>Image Zoom for product images. Configurable and Grouped products are also supported.&#xD;
11
+ &#xD;
12
+ 0.1.10&#xD;
13
+ - Added new config settings</description>
14
  <notes>0.1.6&#xD;
15
  - Fixed PHP version requirements&#xD;
16
  &#xD;
22
  &#xD;
23
  0.1.9&#xD;
24
  - Tint effect JS error FIX&#xD;
25
+ - Language file minor fix&#xD;
26
+ &#xD;
27
+ 0.1.10&#xD;
28
+ - Added new config settings</notes>
29
  <authors><author><name>Desislav Yosifov</name><user>auto-converted</user><email>deskin@probg.com</email></author></authors>
30
+ <date>2011-10-28</date>
31
+ <time>07:05:46</time>
32
+ <contents><target name="magecommunity"><dir name="CorlleteLab"><dir name="Imagezoom"><dir name="Block"><dir name="Catalog"><dir name="Product"><file name="View.php" hash="49b559624494bf64ace997fbee9dfd52"/></dir></dir><dir name="Html"><file name="Head.php" hash="eb6a6cc918857cb6a49695946b3b0339"/></dir></dir><dir name="Helper"><file name="Data.php" hash="da181c23320ffd48fc13076a61e5743b"/></dir><dir name="Model"><dir name="Adminhtml"><dir name="System"><dir name="Config"><dir name="Source"><file name="Position.php" hash="3202945d312df9a18977e38473a88a33"/><file name="Zoomeffect.php" hash="506343ccb9ef940fc577029ed5a0a47c"/></dir></dir><file name="Color.php" hash="6d9be20970ecbbc3be9f4e29e4130d06"/><file name="Size.php" hash="4d27ab856f017b32626a19460b0984a5"/></dir></dir></dir><dir name="controllers"><file name="IndexController.php" hash="a7ae6f32c671c0624779a1d6a188a885"/></dir><dir name="etc"><file name="adminhtml.xml" hash="2774ef2b98fc8995157a97f1d05e0196"/><file name="config.xml" hash="c4e7c63cccf394a083eabd6ed46f35a7"/><file name="system.xml" hash="bf8d66ef415c1dcd01db3af51ccff862"/></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="CorlleteLab_Imagezoom.xml" hash="be76b163aaf29b643d4a8c27ead5b5ee"/></dir></target><target name="magelocale"><dir name="en_US"><file name="CorlleteLab_ImageZoom.csv" hash="1f1ec1c1fd6dd0c71717a644e4f4b20c"/></dir></target><target name="mageweb"><dir name="js"><dir name="corlletelab"><dir name="imagezoom"><file name="cloud-zoom.1.0.2.js" hash="c1893fd33ca7e6329246342be8acc03d"/><file name="jquery-1.6.2.min.js" hash="a1a8cb16a060f6280a767187fd22e037"/><file name="product_override.js" hash="a7b9d9c1d0eec0937f6394f3b6b81dc0"/></dir></dir></dir></target><target name="magedesign"><dir name="frontend"><dir name="base"><dir name="default"><dir name="layout"><file name="imagezoom.xml" hash="7447d71df1a9c3cd48cd110d6dd2972c"/></dir><dir name="template"><dir name="corlletelab"><dir name="imagezoom"><file name="grouped.phtml" hash="cbb95504d0160bf8647ab1de975289ea"/><file name="media.phtml" hash="2d5a77c39324e74ff429a47c23f384f4"/></dir></dir></dir></dir></dir><dir name="default"><dir name="default"><dir name="layout"><file name="imagezoom.xml" hash="7447d71df1a9c3cd48cd110d6dd2972c"/></dir><dir name="template"><dir name="corlletelab"><dir name="imagezoom"><file name="grouped.phtml" hash="cbb95504d0160bf8647ab1de975289ea"/><file name="media.phtml" hash="2d5a77c39324e74ff429a47c23f384f4"/></dir></dir></dir></dir></dir></dir></target><target name="mageskin"><dir name="frontend"><dir name="base"><dir name="default"><dir name="css"><dir name="corlletelab"><file name="imagezoom.css" hash="988e76756be393d452cd36a570a94c7d"/></dir></dir></dir></dir><dir name="default"><dir name="default"><dir name="css"><dir name="corlletelab"><file name="imagezoom.css" hash="8bb60e53a7b337fd33db683dfae3c59c"/></dir></dir></dir></dir></dir></target></contents>
33
  <compatible/>
34
  <dependencies/>
35
  </package>