Version Notes
New Feature: The 'new' attribute is now shown in products catalogue and a product view.
Bug Fix: Error occured on the configuration page in the admin area.
Bug Fix: 'Extended One Page Checkout' JavaScript file.
Bug Fix: SQL and Data installer
Download this release
Release Info
Developer | ModulesGarden |
Extension | ModulesGarden_Swifty |
Version | 1.0.1 |
Comparing to | |
See all releases |
Code changes from version 1.0.0 to 1.0.1
- app/code/community/Modulesgarden/ThemeSwifty/Model/System/Config/Source/Select.php +1 -1
- app/code/community/Modulesgarden/ThemeSwifty/data/mgthemeswifty_setup/data-install-1.0.0.php +59 -0
- app/code/community/Modulesgarden/ThemeSwifty/etc/config.xml +1 -1
- app/code/community/Modulesgarden/ThemeSwifty/etc/system.xml +190 -190
- app/code/community/Modulesgarden/ThemeSwifty/moduleVersion.php +0 -11
- app/code/community/Modulesgarden/ThemeSwifty/sql/mgthemeswifty_setup/install-1.0.0.php +0 -54
- app/design/frontend/modulesgarden/swifty/layout/catalog.xml +4 -0
- app/design/frontend/modulesgarden/swifty/template/catalog/product/featured.phtml +1 -0
- app/design/frontend/modulesgarden/swifty/template/catalog/product/view/media.phtml +4 -0
- app/design/frontend/modulesgarden/swifty/template/checkout/onepage.phtml +1 -0
- package.xml +9 -6
- skin/frontend/modulesgarden/swifty/css/styles-blue.css +1 -1
- skin/frontend/modulesgarden/swifty/css/styles-green.css +1 -1
- skin/frontend/modulesgarden/swifty/css/styles.css +1 -1
- skin/frontend/modulesgarden/swifty/js/custom.js +7 -0
- skin/frontend/modulesgarden/swifty/js/opcheckout.extended.js +35 -0
app/code/community/Modulesgarden/ThemeSwifty/Model/System/Config/Source/Select.php
CHANGED
@@ -46,7 +46,7 @@ class Modulesgarden_ThemeSwifty_Model_System_Config_Source_Select extends Varien
|
|
46 |
foreach ($field->options->children() as $option) {
|
47 |
$options[] = array(
|
48 |
'value' => $option->value,
|
49 |
-
'label' =>
|
50 |
);
|
51 |
}
|
52 |
}
|
46 |
foreach ($field->options->children() as $option) {
|
47 |
$options[] = array(
|
48 |
'value' => $option->value,
|
49 |
+
'label' => $option->label,
|
50 |
);
|
51 |
}
|
52 |
}
|
app/code/community/Modulesgarden/ThemeSwifty/data/mgthemeswifty_setup/data-install-1.0.0.php
ADDED
@@ -0,0 +1,59 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
|
3 |
+
$storeName = Mage::getStoreConfig('general/store_information/name');
|
4 |
+
if(!$storeName) { $storeName = "Theme Swifty";}
|
5 |
+
$storeAddress = Mage::getStoreConfig('general/store_information/address');
|
6 |
+
if(!$storeAddress) { $storeAddress = "Your Street 22/A, Alaska";}
|
7 |
+
$storePhone = Mage::getStoreConfig('general/store_information/phone');
|
8 |
+
if(!$storePhone) { $storePhone = "+48 112 334 567";}
|
9 |
+
$storeEmail = Mage::getStoreConfig('trans_email/ident_general/email');
|
10 |
+
if(!$storeEmail) { $storeEmail = "company@my-company.com";}
|
11 |
+
$storeUrl = Mage::getBaseUrl();
|
12 |
+
|
13 |
+
$now = date("Y-m-d H:i:s", Mage::getModel('core/date')->timestamp(time()));
|
14 |
+
$block1 = Mage::getModel('cms/block')
|
15 |
+
->setTitle('Contact Block - Footer')
|
16 |
+
->setIdentifier('swifty-footer-col1')
|
17 |
+
->setContent("<h2>Contact:</h2>\r\n<ul>\r\n<li>{$storeName}<br />{$storeAddress}</li>\r\n<li>{$storePhone}</li>\r\n<li>{$storeEmail}</li>\r\n</ul>")
|
18 |
+
->setCreationTime($now)
|
19 |
+
->setUpdateTime($now)
|
20 |
+
->setIsActive(1)
|
21 |
+
->save();
|
22 |
+
$block2 = Mage::getModel('cms/block')
|
23 |
+
->setTitle('Information Block - Footer')
|
24 |
+
->setIdentifier('swifty-footer-col2')
|
25 |
+
->setContent("<h2>Information</h2>\r\n<ul>\r\n<li><a title=\"About Us\" href=\"{$storeUrl}about\">About Us</a></li>\r\n<li><a title=\"Contact Us\" href=\"{$storeUrl}contacts\">Contact Us</a></li>\r\n<li><a title=\"Terms &Conditions\" href=\"{$storeUrl}terms-conditions\">Terms & Conditions</a></li>\r\n<li><a title=\"Privacy Policy\" href=\"{$storeUrl}privacy-policy\">Privacy Policy</a></li>\r\n<li><a title=\"Orders and Returns\" href=\"{$storeUrl}orders-and-returns\">Orders and Returns</a></li>\r\n<li><a title=\"Site Map\" href=\"{$storeUrl}sitemap\">Site Map</a></li>\r\n</ul>")
|
26 |
+
->setCreationTime($now)
|
27 |
+
->setUpdateTime($now)
|
28 |
+
->setIsActive(1)
|
29 |
+
->save();
|
30 |
+
$block3 = Mage::getModel('cms/block')
|
31 |
+
->setTitle('Why choose us - Footer')
|
32 |
+
->setIdentifier('swifty-footer-col3')
|
33 |
+
->setContent("<h2>Why choose us</h2>\r\n<ul>\r\n<li><a title=\"Returns and Exchanges\" href=\"{$storeUrl}returns-and-exchanges\">Returns and Exchanges</a></li>\r\n<li><a title=\"Shipping Options\" href=\"{$storeUrl}shipping-options\">Shipping Options</a></li>\r\n<li><a title=\"Help & FAQs\" href=\"{$storeUrl}faq\">Help & FAQs</a></li>\r\n</ul>")
|
34 |
+
->setCreationTime($now)
|
35 |
+
->setUpdateTime($now)
|
36 |
+
->setIsActive(1)
|
37 |
+
->save();
|
38 |
+
$block4 = Mage::getModel('cms/block')
|
39 |
+
->setTitle('My Account Block - Footer')
|
40 |
+
->setIdentifier('swifty-footer-col4')
|
41 |
+
->setContent("<h2>My Account</h2>\r\n<ul>\r\n<li><a title=\"Sign In\" href=\"{$storeUrl}customer/account/login/\">Sign In</a></li>\r\n<li><a title=\"View Cart\" href=\"{$storeUrl}checkout/cart/\">View Cart</a></li>\r\n<li><a title=\"My Wishlist\" href=\"{$storeUrl}wishlist/\">My Wishlist</a></li>\r\n<li><a title=\"Checkout\" href=\"{$storeUrl}checkout/onepage/\">Check out</a></li>\r\n<li><a title=\"Help\" href=\"{$storeUrl}help\">Help</a></li>\r\n</ul>")
|
42 |
+
->setCreationTime($now)
|
43 |
+
->setUpdateTime($now)
|
44 |
+
->setIsActive(1)
|
45 |
+
->save();
|
46 |
+
|
47 |
+
$installer = $this;
|
48 |
+
$installer->startSetup();
|
49 |
+
|
50 |
+
foreach (array($block1->getId(), $block2->getId(), $block3->getId(), $block4->getId()) as $block_id){
|
51 |
+
$installer->run("INSERT INTO ".Mage::getSingleton('core/resource')->getTableName('cms_block_store')." (block_id, store_id) VALUES ({$block_id}, 0)");
|
52 |
+
}
|
53 |
+
|
54 |
+
$installer->run("
|
55 |
+
INSERT INTO `".Mage::getSingleton('core/resource')->getTableName('cms_page')."` (`page_id`, `title`, `root_template`, `meta_keywords`, `meta_description`, `identifier`, `content_heading`, `content`, `creation_time`, `update_time`, `is_active`, `sort_order`, `layout_update_xml`, `custom_theme`, `custom_root_template`, `custom_layout_update_xml`, `custom_theme_from`, `custom_theme_to`) VALUES
|
56 |
+
(NULL, 'Home page', 'one_column', NULL, NULL, 'home', NULL, '<h2>Welcome to our website</h2>\r\n<p><strong>Lorem ipsum dolor sit amet</strong>, consectetur adipiscing elit. Curabitur id est et sem facilisis tincidunt. In blandit elementum hendrerit. Donec efficitur sodales tincidunt. Etiam ac est dignissim, ornare magna ut, mattis magna. Nulla eu maximus tortor, non vehicula purus. Nullam ullamcorper vitae quam eu consequat.</p>\r\n<p>Aliquam tempus urna ipsum, quis dictum neque fermentum id. Etiam facilisis malesuada euismod. Sed in velit vulputate, volutpat nibh ut, faucibus nisi. Nam eget imperdiet ante. Quisque sit amet faucibus velit, id ornare ante. Cras eget metus lorem. Sed elit elit, imperdiet a mattis eget, tincidunt interdum turpis.</p>\r\n', '2007-08-23 10:03:25', '2014-11-06 15:13:54', 1, 0, NULL, NULL, NULL, NULL, NULL, NULL);
|
57 |
+
");
|
58 |
+
|
59 |
+
$installer->endSetup();
|
app/code/community/Modulesgarden/ThemeSwifty/etc/config.xml
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
<config>
|
3 |
<modules>
|
4 |
<Modulesgarden_ThemeSwifty>
|
5 |
-
<version>1.0.
|
6 |
</Modulesgarden_ThemeSwifty>
|
7 |
</modules>
|
8 |
|
2 |
<config>
|
3 |
<modules>
|
4 |
<Modulesgarden_ThemeSwifty>
|
5 |
+
<version>1.0.1</version>
|
6 |
</Modulesgarden_ThemeSwifty>
|
7 |
</modules>
|
8 |
|
app/code/community/Modulesgarden/ThemeSwifty/etc/system.xml
CHANGED
@@ -1,193 +1,193 @@
|
|
1 |
<?xml version="1.0" encoding="UTF-8"?>
|
2 |
<config>
|
3 |
-
|
4 |
-
|
5 |
-
|
6 |
-
|
7 |
-
|
8 |
-
|
9 |
-
|
10 |
-
|
11 |
-
|
12 |
-
|
13 |
-
|
14 |
-
|
15 |
-
|
16 |
-
|
17 |
-
|
18 |
-
|
19 |
-
|
20 |
-
|
21 |
-
|
22 |
-
|
23 |
-
|
24 |
-
|
25 |
-
|
26 |
-
|
27 |
-
|
28 |
-
|
29 |
-
|
30 |
-
|
31 |
-
|
32 |
-
|
33 |
-
|
34 |
-
|
35 |
-
|
36 |
-
|
37 |
-
|
38 |
-
|
39 |
-
|
40 |
-
|
41 |
-
|
42 |
-
|
43 |
-
|
44 |
-
|
45 |
-
|
46 |
-
|
47 |
-
|
48 |
-
|
49 |
-
|
50 |
-
|
51 |
-
|
52 |
-
|
53 |
-
|
54 |
-
|
55 |
-
|
56 |
-
|
57 |
-
|
58 |
-
|
59 |
-
|
60 |
-
|
61 |
-
|
62 |
-
|
63 |
-
|
64 |
-
|
65 |
-
|
66 |
-
|
67 |
-
|
68 |
-
|
69 |
-
|
70 |
-
|
71 |
-
|
72 |
-
|
73 |
-
|
74 |
-
|
75 |
-
|
76 |
-
|
77 |
-
|
78 |
-
|
79 |
-
|
80 |
-
|
81 |
-
|
82 |
-
|
83 |
-
|
84 |
-
|
85 |
-
|
86 |
-
|
87 |
-
|
88 |
-
|
89 |
-
|
90 |
-
|
91 |
-
|
92 |
-
|
93 |
-
|
94 |
-
|
95 |
-
|
96 |
-
|
97 |
-
|
98 |
-
|
99 |
-
|
100 |
-
|
101 |
-
|
102 |
-
|
103 |
-
|
104 |
-
|
105 |
-
|
106 |
-
|
107 |
-
|
108 |
-
|
109 |
-
|
110 |
-
|
111 |
-
|
112 |
-
|
113 |
-
|
114 |
-
|
115 |
-
|
116 |
-
|
117 |
-
|
118 |
-
|
119 |
-
|
120 |
-
|
121 |
-
|
122 |
-
|
123 |
-
|
124 |
-
|
125 |
-
|
126 |
-
|
127 |
-
|
128 |
-
|
129 |
-
|
130 |
-
|
131 |
-
|
132 |
-
|
133 |
-
|
134 |
-
|
135 |
-
|
136 |
-
|
137 |
-
|
138 |
-
|
139 |
-
|
140 |
-
|
141 |
-
|
142 |
-
|
143 |
-
|
144 |
-
|
145 |
-
|
146 |
-
|
147 |
-
|
148 |
-
|
149 |
-
|
150 |
-
|
151 |
-
|
152 |
-
|
153 |
-
|
154 |
-
|
155 |
-
|
156 |
-
|
157 |
-
|
158 |
-
|
159 |
-
|
160 |
-
|
161 |
-
|
162 |
-
|
163 |
-
|
164 |
-
|
165 |
-
|
166 |
-
|
167 |
-
|
168 |
-
|
169 |
-
|
170 |
-
|
171 |
-
|
172 |
-
|
173 |
-
|
174 |
-
|
175 |
-
|
176 |
-
|
177 |
-
|
178 |
-
|
179 |
-
|
180 |
-
|
181 |
-
|
182 |
-
|
183 |
-
|
184 |
-
|
185 |
-
|
186 |
-
|
187 |
-
|
188 |
-
|
189 |
-
|
190 |
-
|
191 |
-
|
192 |
-
|
193 |
</config>
|
1 |
<?xml version="1.0" encoding="UTF-8"?>
|
2 |
<config>
|
3 |
+
<tabs>
|
4 |
+
<modulesgarden>
|
5 |
+
<label><![CDATA[<div style="line-height:0;"><img id="mg_logo_block" src="http://www.modulesgarden.com/images/magento/mgcommerce-logo-black.png" /></div>]]></label>
|
6 |
+
<sort_order>1100</sort_order>
|
7 |
+
</modulesgarden>
|
8 |
+
</tabs>
|
9 |
+
<sections>
|
10 |
+
<mgthemeswifty translate="label">
|
11 |
+
<class>separator-top</class>
|
12 |
+
<label>Theme Swifty</label> <!-- change it for theme name -->
|
13 |
+
<tab>modulesgarden</tab>
|
14 |
+
<sort_order>10</sort_order>
|
15 |
+
<show_in_default>1</show_in_default>
|
16 |
+
<show_in_website>1</show_in_website>
|
17 |
+
<show_in_store>1</show_in_store>
|
18 |
+
<groups>
|
19 |
+
<main translate="label">
|
20 |
+
<label>Configuration</label>
|
21 |
+
<frontend_type>text</frontend_type>
|
22 |
+
<sort_order>1</sort_order>
|
23 |
+
<show_in_default>1</show_in_default>
|
24 |
+
<show_in_website>1</show_in_website>
|
25 |
+
<show_in_store>1</show_in_store>
|
26 |
+
<fields>
|
27 |
+
<!-- FIELDS IN CONFIGURATION -->
|
28 |
+
<colorscheme translate="label"> <!-- Mage::getStoreConfig('mgthemeswifty/main/colorscheme') -->
|
29 |
+
<label>Color Scheme</label>
|
30 |
+
<comment></comment>
|
31 |
+
<frontend_type>select</frontend_type> <!-- http://www.magentocommerce.com/wiki/5_-_modules_and_development/admin/xml_structure_for_admin_configurations -->
|
32 |
+
<source_model>mgthemeswifty/system_config_source_select</source_model> <!-- only if select|multiselect with constant options (see below) -->
|
33 |
+
<options> <!-- only if select|multiselect with constant options -->
|
34 |
+
<red>
|
35 |
+
<label>Red</label>
|
36 |
+
<value>red</value>
|
37 |
+
</red>
|
38 |
+
<blue> <!-- just unique -->
|
39 |
+
<label>Blue</label>
|
40 |
+
<value>blue</value>
|
41 |
+
</blue>
|
42 |
+
<green>
|
43 |
+
<label>Green</label>
|
44 |
+
<value>green</value>
|
45 |
+
</green>
|
46 |
+
</options>
|
47 |
+
<sort_order>1</sort_order>
|
48 |
+
<show_in_default>1</show_in_default>
|
49 |
+
<show_in_website>1</show_in_website>
|
50 |
+
<show_in_store>1</show_in_store> <!-- field per Store View -->
|
51 |
+
</colorscheme>
|
52 |
+
<slider translate="label"> <!-- Mage::getStoreConfig('mgthemeswifty/main/colorscheme') -->
|
53 |
+
<label>Select Slider type</label>
|
54 |
+
<comment>Select type of slider which you want display on your home page.</comment>
|
55 |
+
<frontend_type>select</frontend_type> <!-- http://www.magentocommerce.com/wiki/5_-_modules_and_development/admin/xml_structure_for_admin_configurations -->
|
56 |
+
<source_model>mgthemeswifty/system_config_source_select</source_model> <!-- only if select|multiselect with constant options (see below) -->
|
57 |
+
<options> <!-- only if select|multiselect with constant options -->
|
58 |
+
<full>
|
59 |
+
<label>Slider full width</label>
|
60 |
+
<value>full</value>
|
61 |
+
</full>
|
62 |
+
<wrapped> <!-- just unique -->
|
63 |
+
<label>Slider wrapped</label>
|
64 |
+
<value>wrapped</value>
|
65 |
+
</wrapped>
|
66 |
+
</options>
|
67 |
+
<sort_order>1</sort_order>
|
68 |
+
<show_in_default>1</show_in_default>
|
69 |
+
<show_in_website>1</show_in_website>
|
70 |
+
<show_in_store>1</show_in_store> <!-- field per Store View -->
|
71 |
+
</slider>
|
72 |
+
<fontfamily translate="label">
|
73 |
+
<label>Font</label>
|
74 |
+
<comment>Choose your favorite font.</comment>
|
75 |
+
<frontend_type>select</frontend_type> <!-- http://www.magentocommerce.com/wiki/5_-_modules_and_development/admin/xml_structure_for_admin_configurations -->
|
76 |
+
<source_model>mgthemeswifty/system_config_source_select</source_model> <!-- only if select|multiselect with constant options (see below) -->
|
77 |
+
<options> <!-- only if select|multiselect with constant options -->
|
78 |
+
<opensans> <!-- just unique -->
|
79 |
+
<label>Open Sans</label>
|
80 |
+
<value>opensans</value>
|
81 |
+
</opensans>
|
82 |
+
<lato>
|
83 |
+
<label>Lato</label>
|
84 |
+
<value>lato</value>
|
85 |
+
</lato>
|
86 |
+
<roboto>
|
87 |
+
<label>Roboto</label>
|
88 |
+
<value>roboto</value>
|
89 |
+
</roboto>
|
90 |
+
<raleway>
|
91 |
+
<label>Raleway</label>
|
92 |
+
<value>raleway</value>
|
93 |
+
</raleway>
|
94 |
+
</options>
|
95 |
+
<sort_order>1</sort_order>
|
96 |
+
<show_in_default>1</show_in_default>
|
97 |
+
<show_in_website>1</show_in_website>
|
98 |
+
<show_in_store>1</show_in_store> <!-- field per Store View -->
|
99 |
+
</fontfamily>
|
100 |
+
<colorfooter translate="label">
|
101 |
+
<label>Choose color (footer)</label>
|
102 |
+
<comment></comment>
|
103 |
+
<frontend_type>select</frontend_type> <!-- http://www.magentocommerce.com/wiki/5_-_modules_and_development/admin/xml_structure_for_admin_configurations -->
|
104 |
+
<source_model>mgthemeswifty/system_config_source_select</source_model> <!-- only if select|multiselect with constant options (see below) -->
|
105 |
+
<options> <!-- only if select|multiselect with constant options -->
|
106 |
+
<lightgray> <!-- just unique -->
|
107 |
+
<label>Light Gray</label>
|
108 |
+
<value>lightgray</value>
|
109 |
+
</lightgray>
|
110 |
+
<dark>
|
111 |
+
<label>Dark</label>
|
112 |
+
<value>dark</value>
|
113 |
+
</dark>
|
114 |
+
<white>
|
115 |
+
<label>White</label>
|
116 |
+
<value>white</value>
|
117 |
+
</white>
|
118 |
+
</options>
|
119 |
+
<sort_order>1</sort_order>
|
120 |
+
<show_in_default>1</show_in_default>
|
121 |
+
<show_in_website>1</show_in_website>
|
122 |
+
<show_in_store>1</show_in_store> <!-- field per Store View -->
|
123 |
+
</colorfooter>
|
124 |
+
<breadcrumbs translate="label">
|
125 |
+
<label>Show breadcrumbs</label>
|
126 |
+
<comment>Breadcrumbs under menu navigation.</comment>
|
127 |
+
<frontend_type>select</frontend_type> <!-- http://www.magentocommerce.com/wiki/5_-_modules_and_development/admin/xml_structure_for_admin_configurations -->
|
128 |
+
<source_model>mgthemeswifty/system_config_source_select</source_model> <!-- only if select|multiselect with constant options (see below) -->
|
129 |
+
<options> <!-- only if select|multiselect with constant options -->
|
130 |
+
<yes> <!-- just unique -->
|
131 |
+
<label>Yes</label>
|
132 |
+
<value>yes</value>
|
133 |
+
</yes>
|
134 |
+
<no>
|
135 |
+
<label>No</label>
|
136 |
+
<value>no</value>
|
137 |
+
</no>
|
138 |
+
</options>
|
139 |
+
<sort_order>1</sort_order>
|
140 |
+
<show_in_default>1</show_in_default>
|
141 |
+
<show_in_website>1</show_in_website>
|
142 |
+
<show_in_store>1</show_in_store> <!-- field per Store View -->
|
143 |
+
</breadcrumbs>
|
144 |
+
<showhome translate="label"> <!-- just an example -->
|
145 |
+
<label>Show home page link</label>
|
146 |
+
<comment>Add home page link in top-navigation.</comment>
|
147 |
+
<frontend_type>select</frontend_type> <!-- http://www.magentocommerce.com/wiki/5_-_modules_and_development/admin/xml_structure_for_admin_configurations -->
|
148 |
+
<source_model>mgthemeswifty/system_config_source_select</source_model> <!-- only if select|multiselect with constant options (see below) -->
|
149 |
+
<options> <!-- only if select|multiselect with constant options -->
|
150 |
+
<no>
|
151 |
+
<label>No</label>
|
152 |
+
<value>no</value>
|
153 |
+
</no>
|
154 |
+
<yes>
|
155 |
+
<label>Yes</label>
|
156 |
+
<value>yes</value>
|
157 |
+
</yes>
|
158 |
+
</options>
|
159 |
+
<sort_order>1</sort_order>
|
160 |
+
<show_in_default>1</show_in_default>
|
161 |
+
<show_in_website>1</show_in_website>
|
162 |
+
<show_in_store>1</show_in_store> <!-- field per Store View -->
|
163 |
+
</showhome>
|
164 |
+
<logo translate="label"> <!-- just an example -->
|
165 |
+
<label>Logo</label>
|
166 |
+
<comment>Choose where logotyp should be displayed.</comment>
|
167 |
+
<frontend_type>select</frontend_type> <!-- http://www.magentocommerce.com/wiki/5_-_modules_and_development/admin/xml_structure_for_admin_configurations -->
|
168 |
+
<source_model>mgthemeswifty/system_config_source_select</source_model> <!-- only if select|multiselect with constant options (see below) -->
|
169 |
+
<options> <!-- only if select|multiselect with constant options -->
|
170 |
+
<center>
|
171 |
+
<label>Center</label>
|
172 |
+
<value>center</value>
|
173 |
+
</center>
|
174 |
+
<left>
|
175 |
+
<label>Left</label>
|
176 |
+
<value>left</value>
|
177 |
+
</left>
|
178 |
+
<right>
|
179 |
+
<label>Right</label>
|
180 |
+
<value>right</value>
|
181 |
+
</right>
|
182 |
+
</options>
|
183 |
+
<sort_order>1</sort_order>
|
184 |
+
<show_in_default>1</show_in_default>
|
185 |
+
<show_in_website>1</show_in_website>
|
186 |
+
<show_in_store>1</show_in_store> <!-- field per Store View -->
|
187 |
+
</logo>
|
188 |
+
</fields>
|
189 |
+
</main>
|
190 |
+
</groups>
|
191 |
+
</mgthemeswifty>
|
192 |
+
</sections>
|
193 |
</config>
|
app/code/community/Modulesgarden/ThemeSwifty/moduleVersion.php
DELETED
@@ -1,11 +0,0 @@
|
|
1 |
-
<?php
|
2 |
-
/*
|
3 |
-
* File generated by ModulesGarden packages system
|
4 |
-
*
|
5 |
-
* Below you can find current version & revision of this module
|
6 |
-
*/
|
7 |
-
|
8 |
-
$moduleName = 'Swifty Theme For Magento';
|
9 |
-
$moduleVersion = '1.0.0';
|
10 |
-
$moduleRevision = '1d730c4f83506db842744a50e09cf40340f38a44';
|
11 |
-
$moduleWikiUrl = 'http://www.docs.modulesgarden.com/';
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
app/code/community/Modulesgarden/ThemeSwifty/sql/mgthemeswifty_setup/install-1.0.0.php
CHANGED
@@ -76,58 +76,4 @@ foreach ($attrs as $attr){
|
|
76 |
}
|
77 |
}
|
78 |
|
79 |
-
|
80 |
-
$storeName = Mage::getStoreConfig('general/store_information/name');
|
81 |
-
if(!$storeName) { $storeName = "Theme Crystal";}
|
82 |
-
$storeAddress = Mage::getStoreConfig('general/store_information/address');
|
83 |
-
if(!$storeAddress) { $storeAddress = "Your Street 22/A, Alaska";}
|
84 |
-
$storePhone = Mage::getStoreConfig('general/store_information/phone');
|
85 |
-
if(!$storePhone) { $storePhone = "+48 112 334 567";}
|
86 |
-
$storeEmail = Mage::getStoreConfig('trans_email/ident_general/email');
|
87 |
-
if(!$storeEmail) { $storeEmail = "company@my-company.com";}
|
88 |
-
$storeUrl = Mage::getBaseUrl();
|
89 |
-
|
90 |
-
$now = date("Y-m-d H:i:s", Mage::getModel('core/date')->timestamp(time()));
|
91 |
-
$block1 = Mage::getModel('cms/block')
|
92 |
-
->setTitle('Contact Block - Footer')
|
93 |
-
->setIdentifier('swifty-footer-col1')
|
94 |
-
->setContent("<h2>Contact:</h2>\r\n<ul>\r\n<li>{$storeName}<br />{$storeAddress}</li>\r\n<li>{$storePhone}</li>\r\n<li>{$storeEmail}</li>\r\n</ul>")
|
95 |
-
->setCreationTime($now)
|
96 |
-
->setUpdateTime($now)
|
97 |
-
->setIsActive(1)
|
98 |
-
->save();
|
99 |
-
$block2 = Mage::getModel('cms/block')
|
100 |
-
->setTitle('Information Block - Footer')
|
101 |
-
->setIdentifier('swifty-footer-col2')
|
102 |
-
->setContent("<h2>Information</h2>\r\n<ul>\r\n<li><a title=\"About Us\" href=\"{$storeUrl}about\">About Us</a></li>\r\n<li><a title=\"Contact Us\" href=\"{$storeUrl}contacts\">Contact Us</a></li>\r\n<li><a title=\"Terms &Conditions\" href=\"{$storeUrl}terms-conditions\">Terms & Conditions</a></li>\r\n<li><a title=\"Privacy Policy\" href=\"{$storeUrl}privacy-policy\">Privacy Policy</a></li>\r\n<li><a title=\"Orders and Returns\" href=\"{$storeUrl}orders-and-returns\">Orders and Returns</a></li>\r\n<li><a title=\"Site Map\" href=\"{$storeUrl}sitemap\">Site Map</a></li>\r\n</ul>")
|
103 |
-
->setCreationTime($now)
|
104 |
-
->setUpdateTime($now)
|
105 |
-
->setIsActive(1)
|
106 |
-
->save();
|
107 |
-
$block3 = Mage::getModel('cms/block')
|
108 |
-
->setTitle('Why choose us - Footer')
|
109 |
-
->setIdentifier('swifty-footer-col3')
|
110 |
-
->setContent("<h2>Why choose us</h2>\r\n<ul>\r\n<li><a title=\"Returns and Exchanges\" href=\"{$storeUrl}returns-and-exchanges\">Returns and Exchanges</a></li>\r\n<li><a title=\"Shipping Options\" href=\"{$storeUrl}shipping-options\">Shipping Options</a></li>\r\n<li><a title=\"Help & FAQs\" href=\"{$storeUrl}faq\">Help & FAQs</a></li>\r\n</ul>")
|
111 |
-
->setCreationTime($now)
|
112 |
-
->setUpdateTime($now)
|
113 |
-
->setIsActive(1)
|
114 |
-
->save();
|
115 |
-
$block4 = Mage::getModel('cms/block')
|
116 |
-
->setTitle('My Account Block - Footer')
|
117 |
-
->setIdentifier('swifty-footer-col4')
|
118 |
-
->setContent("<h2>My Account</h2>\r\n<ul>\r\n<li><a title=\"Sign In\" href=\"{$storeUrl}customer/account/login/\">Sign In</a></li>\r\n<li><a title=\"View Cart\" href=\"{$storeUrl}checkout/cart/\">View Cart</a></li>\r\n<li><a title=\"My Wishlist\" href=\"{$storeUrl}wishlist/\">My Wishlist</a></li>\r\n<li><a title=\"Checkout\" href=\"{$storeUrl}checkout/onepage/\">Check out</a></li>\r\n<li><a title=\"Help\" href=\"{$storeUrl}help\">Help</a></li>\r\n</ul>")
|
119 |
-
->setCreationTime($now)
|
120 |
-
->setUpdateTime($now)
|
121 |
-
->setIsActive(1)
|
122 |
-
->save();
|
123 |
-
|
124 |
-
foreach (array($block1->getId(), $block2->getId(), $block3->getId(), $block4->getId()) as $block_id){
|
125 |
-
$installer->run("INSERT INTO ".Mage::getSingleton('core/resource')->getTableName('cms_block_store')." (block_id, store_id) VALUES ({$block_id}, 0)");
|
126 |
-
}
|
127 |
-
|
128 |
-
$installer->run("
|
129 |
-
INSERT INTO `".Mage::getSingleton('core/resource')->getTableName('cms_page')."` (`page_id`, `title`, `root_template`, `meta_keywords`, `meta_description`, `identifier`, `content_heading`, `content`, `creation_time`, `update_time`, `is_active`, `sort_order`, `layout_update_xml`, `custom_theme`, `custom_root_template`, `custom_layout_update_xml`, `custom_theme_from`, `custom_theme_to`) VALUES
|
130 |
-
(NULL, 'Home page', 'one_column', NULL, NULL, 'home', NULL, '<h2>Welcome to our website</h2>\r\n<p><strong>Lorem ipsum dolor sit amet</strong>, consectetur adipiscing elit. Curabitur id est et sem facilisis tincidunt. In blandit elementum hendrerit. Donec efficitur sodales tincidunt. Etiam ac est dignissim, ornare magna ut, mattis magna. Nulla eu maximus tortor, non vehicula purus. Nullam ullamcorper vitae quam eu consequat.</p>\r\n<p>Aliquam tempus urna ipsum, quis dictum neque fermentum id. Etiam facilisis malesuada euismod. Sed in velit vulputate, volutpat nibh ut, faucibus nisi. Nam eget imperdiet ante. Quisque sit amet faucibus velit, id ornare ante. Cras eget metus lorem. Sed elit elit, imperdiet a mattis eget, tincidunt interdum turpis.</p>\r\n', '2007-08-23 10:03:25', '2014-11-06 15:13:54', 1, 0, NULL, NULL, NULL, NULL, NULL, NULL);
|
131 |
-
");
|
132 |
-
|
133 |
$installer->endSetup();
|
76 |
}
|
77 |
}
|
78 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
79 |
$installer->endSetup();
|
app/design/frontend/modulesgarden/swifty/layout/catalog.xml
CHANGED
@@ -117,6 +117,8 @@ Category default layout
|
|
117 |
<action method="addColumnCountLayoutDepend"><layout>two_columns_right</layout><count>3</count></action>
|
118 |
<action method="addColumnCountLayoutDepend"><layout>three_columns</layout><count>2</count></action>
|
119 |
<action method="setToolbarBlockName"><name>product_list_toolbar</name></action>
|
|
|
|
|
120 |
</block>
|
121 |
</block>
|
122 |
</reference>
|
@@ -168,6 +170,8 @@ Category layered navigation layout
|
|
168 |
<action method="addColumnCountLayoutDepend"><layout>two_columns_right</layout><count>3</count></action>
|
169 |
<action method="addColumnCountLayoutDepend"><layout>three_columns</layout><count>2</count></action>
|
170 |
<action method="setToolbarBlockName"><name>product_list_toolbar</name></action>
|
|
|
|
|
171 |
</block>
|
172 |
</block>
|
173 |
</reference>
|
117 |
<action method="addColumnCountLayoutDepend"><layout>two_columns_right</layout><count>3</count></action>
|
118 |
<action method="addColumnCountLayoutDepend"><layout>three_columns</layout><count>2</count></action>
|
119 |
<action method="setToolbarBlockName"><name>product_list_toolbar</name></action>
|
120 |
+
|
121 |
+
<action method="addAttribute"><name>mg_is_new</name></action>
|
122 |
</block>
|
123 |
</block>
|
124 |
</reference>
|
170 |
<action method="addColumnCountLayoutDepend"><layout>two_columns_right</layout><count>3</count></action>
|
171 |
<action method="addColumnCountLayoutDepend"><layout>three_columns</layout><count>2</count></action>
|
172 |
<action method="setToolbarBlockName"><name>product_list_toolbar</name></action>
|
173 |
+
|
174 |
+
<action method="addAttribute"><name>mg_is_new</name></action>
|
175 |
</block>
|
176 |
</block>
|
177 |
</reference>
|
app/design/frontend/modulesgarden/swifty/template/catalog/product/featured.phtml
CHANGED
@@ -2,6 +2,7 @@
|
|
2 |
<?php $featured_products = $this->getProducts(); ?>
|
3 |
<?php $_helper = $this->helper('catalog/output'); ?>
|
4 |
<?php if (($featured_products = $this->getProducts()) && $featured_products->getSize()): ?>
|
|
|
5 |
<?php shuffle($featured_products); ?>
|
6 |
<div class="box recently">
|
7 |
<div class="page-title catalog_title"><h2><?php echo $this->__('Featured Products') ?></h2></div>
|
2 |
<?php $featured_products = $this->getProducts(); ?>
|
3 |
<?php $_helper = $this->helper('catalog/output'); ?>
|
4 |
<?php if (($featured_products = $this->getProducts()) && $featured_products->getSize()): ?>
|
5 |
+
<?php $featured_products = $featured_products->getItems() ?>
|
6 |
<?php shuffle($featured_products); ?>
|
7 |
<div class="box recently">
|
8 |
<div class="page-title catalog_title"><h2><?php echo $this->__('Featured Products') ?></h2></div>
|
app/design/frontend/modulesgarden/swifty/template/catalog/product/view/media.phtml
CHANGED
@@ -34,9 +34,12 @@
|
|
34 |
$_product = $this->getProduct();
|
35 |
$_helper = $this->helper('catalog/output');
|
36 |
?>
|
|
|
|
|
37 |
<?php if ($_product->getImage() != 'no_selection' && $_product->getImage()): ?>
|
38 |
|
39 |
<p class="product-image">
|
|
|
40 |
<?php
|
41 |
$_img = '<a href="' . $this->helper('catalog/image')->init($_product, 'image') . '" class="fancybox-img" rel="product-gallery"><img id="image" src="'.$this->helper('catalog/image')->init($_product, 'image') ->resize(405).'" alt="'.$this->htmlEscape($this->getImageLabel()).'" title="'.$this->htmlEscape($this->getImageLabel()).'" /></a>';
|
42 |
echo $_helper->productAttribute($_product, $_img, 'image');
|
@@ -45,6 +48,7 @@
|
|
45 |
|
46 |
<?php else: ?>
|
47 |
<p class="product-image">
|
|
|
48 |
<?php
|
49 |
$_img = '<img src="'.$this->helper('catalog/image')->init($_product, 'image')->resize(405).'" alt="'.$this->escapeHtml($this->getImageLabel()).'" title="'.$this->escapeHtml($this->getImageLabel()).'" />';
|
50 |
echo $_helper->productAttribute($_product, $_img, 'image');
|
34 |
$_product = $this->getProduct();
|
35 |
$_helper = $this->helper('catalog/output');
|
36 |
?>
|
37 |
+
<?php $_new_attribute = $_product->getMgIsNew() ? '<div class="new-product">' . $this->__('NEW') . '</div>' : '' ?>
|
38 |
+
|
39 |
<?php if ($_product->getImage() != 'no_selection' && $_product->getImage()): ?>
|
40 |
|
41 |
<p class="product-image">
|
42 |
+
<?php echo $_new_attribute ?>
|
43 |
<?php
|
44 |
$_img = '<a href="' . $this->helper('catalog/image')->init($_product, 'image') . '" class="fancybox-img" rel="product-gallery"><img id="image" src="'.$this->helper('catalog/image')->init($_product, 'image') ->resize(405).'" alt="'.$this->htmlEscape($this->getImageLabel()).'" title="'.$this->htmlEscape($this->getImageLabel()).'" /></a>';
|
45 |
echo $_helper->productAttribute($_product, $_img, 'image');
|
48 |
|
49 |
<?php else: ?>
|
50 |
<p class="product-image">
|
51 |
+
<?php echo $_new_attribute ?>
|
52 |
<?php
|
53 |
$_img = '<img src="'.$this->helper('catalog/image')->init($_product, 'image')->resize(405).'" alt="'.$this->escapeHtml($this->getImageLabel()).'" title="'.$this->escapeHtml($this->getImageLabel()).'" />';
|
54 |
echo $_helper->productAttribute($_product, $_img, 'image');
|
app/design/frontend/modulesgarden/swifty/template/checkout/onepage.phtml
CHANGED
@@ -29,6 +29,7 @@
|
|
29 |
</div>
|
30 |
<script type="text/javascript" src="<?php echo $this->getJsUrl('varien/accordion.js') ?>"></script>
|
31 |
<script type="text/javascript" src="<?php echo $this->getSkinUrl('js/opcheckout.js') ?>"></script>
|
|
|
32 |
<ol class="opc" id="checkoutSteps">
|
33 |
<?php $i=0; foreach($this->getSteps() as $_stepId => $_stepInfo): ?>
|
34 |
<?php if (!$this->getChild($_stepId) || !$this->getChild($_stepId)->isShow()): continue; endif; $i++ ?>
|
29 |
</div>
|
30 |
<script type="text/javascript" src="<?php echo $this->getJsUrl('varien/accordion.js') ?>"></script>
|
31 |
<script type="text/javascript" src="<?php echo $this->getSkinUrl('js/opcheckout.js') ?>"></script>
|
32 |
+
<script type="text/javascript" src="<?php echo $this->getSkinUrl('js/opcheckout.extended.js') ?>"></script>
|
33 |
<ol class="opc" id="checkoutSteps">
|
34 |
<?php $i=0; foreach($this->getSteps() as $_stepId => $_stepInfo): ?>
|
35 |
<?php if (!$this->getChild($_stepId) || !$this->getChild($_stepId)->isShow()): continue; endif; $i++ ?>
|
package.xml
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>ModulesGarden_Swifty</name>
|
4 |
-
<version>1.0.
|
5 |
<stability>stable</stability>
|
6 |
<license>OSL</license>
|
7 |
<channel>community</channel>
|
@@ -10,11 +10,14 @@
|
|
10 |
<description>ModulesGarden Swifty - Theme For Magento is a responsive skin for your online store created to please the senses of your customers. The centerpiece of the theme is a transparent slider which, combined with fresh graphic design, makes your eCommerce platform vivid and enjoyable.
|
11 |

|
12 |
Provide your customers with unforgettable experience and achieve it without spending a penny! Swifty - Theme For Magento is entirely free and does not require any installation nor modification of Magento code. Simply download it, upload the files on your server and activate!</description>
|
13 |
-
<notes>
|
|
|
|
|
|
|
14 |
<authors><author><name>ModulesGarden</name><user>ModulesGarden</user><email>peter@inbsgroup.com</email></author></authors>
|
15 |
-
<date>2015-
|
16 |
-
<time>
|
17 |
-
<contents><target name="magecommunity"><dir name="Modulesgarden"><dir name="ThemeSwifty"><dir name="Block"><dir name="Product"><file name="Bestseller.php" hash="70f7bab6bdb902700acbddf170df0947"/><file name="Featured.php" hash="9a683e05ff200ebf1b3409dd8033fdf4"/></dir></dir><dir name="Helper"><file name="Data.php" hash="58765b37e8db3ad57ff6a27e470b30c0"/></dir><dir name="Model"><dir name="System"><dir name="Config"><dir name="Source"><file name="Select.php" hash="5ce24a289decafaf8e064290c79fcdac"/></dir></dir></dir></dir><dir name="etc"><file name="config.xml" hash="72ba8b9437cf6400ceb3a076ceb83cf4"/><file name="system.xml" hash="d9d92a25a51e9f2434aa6f75f70634fd"/></dir><file name="moduleVersion.php" hash="850228d62b58639035c2306f0aad0139"/><dir name="sql"><dir name="mgthemeswifty_setup"><file name="install-1.0.0.php" hash="bc95b00e38b1328ddbb8844dbb23ffae"/></dir></dir></dir></dir></target><target name="magedesign"><dir name="frontend"><dir name="modulesgarden"><dir name="swifty"><dir name="layout"><file name="catalog.xml" hash="067b21f8219021f3dae0e1a2985b0a56"/><file name="catalogsearch.xml" hash="9b97d4fcb2c2d4265e5efb5e3f877be0"/><file name="checkout.xml" hash="3073bcb4ab927d933973f4feca0740e4"/><file name="cms.xml" hash="2563b8cda9e485a41aece377d5bfd878"/><file name="customer.xml" hash="d2b9b2e3f2dafd5557bbd347a8e754f1"/><file name="local.xml" hash="80c96926d01be45cfa492d204f945a00"/><file name="newsletter.xml" hash="d651d53837b9ad6cb70102b3e603179b"/><file name="page.xml" hash="0f391a8546c395bfa36c86b7aae1423e"/><file name="paypal.xml" hash="9c414774a1ad55feed3e6656aa3b77f2"/><file name="poll.xml" hash="2b2dccf513b83cea4ac9e3d9e9a07c4f"/><file name="reports.xml" hash="006dd44fd96bbdc872c4983bab8a2879"/><file name="review.xml" hash="3f86fc3f30c16721ae7888c810bafcd4"/><file name="tag.xml" hash="85dc3d54f65ddcff7ccecf9f8c3df3e4"/><file name="wishlist.xml" hash="f507945890c634c2cf3a4e077e97281f"/></dir><dir name="template"><dir name="callouts"><file name="left_col.phtml" hash="0834af473826bb3b948e6d443968d59f"/><file name="right_col.phtml" hash="0834af473826bb3b948e6d443968d59f"/></dir><dir name="catalog"><dir name="category"><file name="page.phtml" hash="da8088fd881c776e68f2096e3ccdb515"/><file name="view.phtml" hash="348d15b1044084bd926aecb1f505d892"/><dir name="widget"><dir name="link"><file name="link_block.phtml" hash="db7ebf6737ad571c9fdaa0e77029f554"/><file name="link_inline.phtml" hash="a0bf94c67c9b299639f0919945aab2b9"/></dir></dir></dir><dir name="layer"><file name="filter.phtml" hash="19a84cdf122ea2f81e513e6f312e44f0"/><file name="state.phtml" hash="a027df04a1906a48cdbed3bc2d59c5cf"/><file name="view.phtml" hash="34cadd2da077f4d2180b25d76179befe"/></dir><dir name="navigation"><file name="left.phtml" hash="9c7d8595136b4bcec87eee043582c08c"/><file name="top.phtml" hash="c91ddb53b136b440b3814e926f8d2b2f"/></dir><dir name="product"><file name="bestseller.phtml" hash="4d5f65c785d7446eb018e6015996cf6c"/><dir name="compare"><file name="list.phtml" hash="de875c2e4dbcef23be1ea9ed7004a750"/><file name="sidebar.phtml" hash="eb95eb9b8ef892e8f097cd3b406da52e"/></dir><file name="featured.phtml" hash="b9c238f75a1c98c88dc37c9d3b6b8c99"/><file name="gallery.phtml" hash="ef28634ad6fa4f1bab2fcfeb22efbece"/><dir name="list"><file name="related.phtml" hash="09ede9b24eea2a416048610d140fff9e"/><file name="toolbar.phtml" hash="640926d716bf6f0f34374c7a7301997d"/><file name="upsell.phtml" hash="609f0aa6eb4e844d414f855dcaff86d8"/></dir><file name="list.phtml" hash="ef2e15701e72d226c43c383b072ea1a3"/><file name="new.phtml" hash="bffd564c90211337f832d9403479c305"/><file name="price.phtml" hash="4aa514c0e54e1819be6b2cec31e2a59b"/><dir name="view"><file name="additional.phtml" hash="75d35ae44509ed4870d0474d244e1b08"/><file name="addto.phtml" hash="fbd3e1f65e3ae8f250392ef28a1af45c"/><file name="addtocart.phtml" hash="fba30c9a5febd48460e827d0b7a39262"/><file name="attributes.phtml" hash="8f0d6d0559372f02ff8884fe29dcab6a"/><file name="description.phtml" hash="d6947fdbdf690f6593bfd8dfa51aaf62"/><file name="media.phtml" hash="adb9b40530342f90e99b8d4291cca258"/><dir name="options"><file name="js.phtml" hash="cbce4dbf550a285377e912a0d84ffac5"/><dir name="type"><file name="date.phtml" hash="10db5e907373a5dd29aaa6c697fe48ed"/><file name="default.phtml" hash="12ca975f28ceb725c86d88c3b02bfdfd"/><file name="file.phtml" hash="bd76fb7fda5ed6f80e64c019e891283e"/><file name="select.phtml" hash="32f52b09af56e1dba477d510cfdef8b8"/><file name="text.phtml" hash="1c29cdba2a0e0b1f15f68c3fbc3b07eb"/></dir><dir name="wrapper"><file name="bottom.phtml" hash="f74e0101b9348de711673a442a523883"/></dir><file name="wrapper.phtml" hash="deccc0442fcd68885e0ebfeaa91018ea"/></dir><file name="options.phtml" hash="014679e6223efcb1fcaede2b66f0ac7e"/><file name="price.phtml" hash="c55bb537b537845cc22fe46eee32b3f2"/><file name="price_clone.phtml" hash="aca0dd622abfcd04e82407d2b4763c65"/><file name="tierprices.phtml" hash="0105721a68cc8e7210fd6240a8c656bf"/><dir name="type"><file name="configurable.phtml" hash="e0dbac1a30611fa918be451ff274687d"/><file name="default.phtml" hash="07591ae059411e254686c34c81007120"/><file name="grouped.phtml" hash="8ec000960905666d70d5f8a5e664c59f"/><dir name="options"><file name="configurable.phtml" hash="d4d7a289ddcb74624111957fd4440370"/></dir><file name="simple.phtml" hash="e0dbac1a30611fa918be451ff274687d"/><file name="virtual.phtml" hash="e0dbac1a30611fa918be451ff274687d"/></dir></dir><file name="view.phtml" hash="54269effa69196c7e01752c606f99284"/><dir name="widget"><dir name="link"><file name="link_block.phtml" hash="acb9c13c312a0c94e7961ccab5c65d68"/><file name="link_inline.phtml" hash="3dfa87b0129d802a5c9ea560d1f6acbb"/></dir><dir name="new"><dir name="column"><file name="new_default_list.phtml" hash="dcf590457d8452a484982d92b07d4ddb"/><file name="new_images_list.phtml" hash="3857d8040dc4bdade3bf6f6bf61f7133"/><file name="new_names_list.phtml" hash="f6634f4255ab4cffd99460d9909a59c6"/></dir><dir name="content"><file name="new_grid.phtml" hash="fcc88367a6195d901ac6fd01d2061ac5"/><file name="new_list.phtml" hash="a3942e747640c685bc269b1e6eaa8164"/></dir></dir></dir></dir></dir><dir name="catalogsearch"><dir name="advanced"><file name="form.phtml" hash="7516f69430370cce1bfcca6206b3943e"/><file name="result.phtml" hash="c8363d5f0e3a5a226e991809959a952f"/></dir><file name="form.mini.phtml" hash="241e7a915d2cc0c3f0c630955ebf96a5"/><file name="result.phtml" hash="1c0913417f5832f97bc8f3050847397a"/><file name="term.phtml" hash="5845fda49f8df1d31ac7082d0e78cbef"/></dir><dir name="checkout"><dir name="cart"><file name="coupon.phtml" hash="ab4d09a164198154f1a0e05b4a794a3b"/><file name="crosssell.phtml" hash="ce7e2f067cd4b80457d608f4eb4aaf41"/><dir name="item"><dir name="configure"><file name="updatecart.phtml" hash="ca22b44c298674148a80fe8ada1a5fb1"/></dir><file name="default.phtml" hash="8224692753f4e15784a0c5d1eaf7f082"/></dir><file name="noItems.phtml" hash="411c34be69c804d60e0bd5bcae714a9c"/><dir name="render"><file name="default.phtml" hash="9b2d0e47b6fc42c97cd05fa96ff6fb35"/><file name="simple.phtml" hash="656aba2c7b4be9755ed38a73a85ec2fa"/></dir><file name="shipping.phtml" hash="4c3e61c34c4ea4a1785cd3ce7e7f809a"/><dir name="sidebar"><file name="default.phtml" hash="cdee4fc166a08cb8bc67fd3add18185c"/></dir><file name="sidebar.phtml" hash="c2a8d3484529073567a94621bf1a4724"/><file name="totals.phtml" hash="1ef7ee9d74757622950be3c09e6fb907"/></dir><file name="cart.phtml" hash="88a77348a5aca7b78f81678b04fdba77"/><dir name="multishipping"><dir name="address"><file name="select.phtml" hash="24e5b3ae470161224b7ec93dfa076d20"/></dir><file name="addresses.phtml" hash="c4a8ddb3f20ec901c128fc53493cbb89"/><file name="agreements.phtml" hash="40405d808754920a21384811150c428a"/><dir name="billing"><file name="items.phtml" hash="dd651dc188bdf99f7e66a8c13c6ac5ff"/></dir><file name="billing.phtml" hash="ba2f65a2005ad5a7e672beb05abb0755"/><dir name="item"><file name="default.phtml" hash="7611ccf607bb1bfa7a6da29d15ab4bde"/></dir><file name="link.phtml" hash="485c52635edde2b20cae0195572c4cf1"/><dir name="overview"><file name="item.phtml" hash="b56df45e1197995f8e4bdecf1a03f475"/></dir><file name="overview.phtml" hash="8ff1b918d1b5d0cbb401b00ee59e15bf"/><file name="shipping.phtml" hash="4b14b9aca6a3f15e341cc35dd66ecfbe"/><file name="state.phtml" hash="70b551955e8039952f7ee34bd8965db1"/><file name="success.phtml" hash="ab59b63b15572789ecb1cb7e3b4632b7"/></dir><dir name="onepage"><file name="link.phtml" hash="7a760608709b3008233161d107b73110"/><file name="login.phtml" hash="828a87a6e8fb700c4f99f4f14ca42b6c"/><dir name="payment"><file name="info.phtml" hash="8e6e9b895acebae19f2cc9109fa72df3"/><file name="methods.phtml" hash="d874f75263e3eb9c7abd28bbe3750a38"/></dir><file name="payment.phtml" hash="97b5645289f03970355636f8f0461be1"/><dir name="review"><file name="button.phtml" hash="3b56a08133efff951d10e664f9cc6b07"/><file name="info.phtml" hash="174fc64c1890657a182cf517776455ad"/></dir><file name="shipping_method.phtml" hash="2d6c8db9efe5b19d2efbc78ceca147fc"/></dir><file name="onepage.phtml" hash="3317bb6bd13de8fced90130cb92df056"/><file name="success.phtml" hash="8bdb46b17a5a5a0cbd36f25ae9acf61f"/><dir name="total"><file name="default.phtml" hash="7ee091bdabdc050724203568cb433eb0"/></dir></dir><dir name="cms"><file name="content.phtml" hash="1dd256bfecd8e159da5750999f692ea0"/><dir name="widget"><dir name="static_block"><file name="default.phtml" hash="f03fd36d42a84f2f1aa2a96c7501a375"/></dir></dir></dir><dir name="contacts"><file name="form.phtml" hash="c6c56fdb8516ad717599285ea044d835"/></dir><dir name="customer"><dir name="account"><dir name="dashboard"><file name="address.phtml" hash="bd1d2e0b663af08cb893524cb14a5878"/><file name="hello.phtml" hash="aaf6637cf204354d10ced5975ffa8628"/><file name="info.phtml" hash="d66afd402a82ce5952f7cd10967959fb"/><file name="newsletter.phtml" hash="7a88755792de255d8734420b24aed220"/></dir><file name="dashboard.phtml" hash="138c8acecc3c7a72855d5482c0d41a03"/><dir name="link"><file name="back.phtml" hash="269b03c61ac58ecd42b376da3c4951d6"/></dir><file name="navigation.phtml" hash="d80c92e74821c7d4832bb5cb6630f9bb"/></dir><dir name="address"><file name="book.phtml" hash="e3397c3ceeba1630cabc3037452e5d58"/><file name="edit.phtml" hash="18c163f1c83bc45106dc9c40b44772f9"/></dir><file name="address.phtml" hash="c7d1e96e337bd0f6fd42c619f80cbf45"/><file name="balance.phtml" hash="ffa5f9c1eb242c496867672d79be73e0"/><dir name="form"><file name="address.phtml" hash="e216399279d85465677990bc7494e269"/><file name="changepassword.phtml" hash="6ad2dd980476c29a028027dd41d8303a"/><file name="confirmation.phtml" hash="c39f36698a5c4ecc361abcddccb69d25"/><file name="edit.phtml" hash="4824abf69c20fe13f97b51377a9b08ca"/><file name="forgotpassword.phtml" hash="025f136a7da53f4017fac2e6aa9a2c11"/><file name="login.phtml" hash="a787ec12e5c529a0fc6e3b702a2d7391"/><file name="mini.login.phtml" hash="f1df8f8a52dd3d964731029a171afee8"/><file name="newsletter.phtml" hash="4766be7bd5d3a2ec1c94130ef0e34023"/><file name="register.phtml" hash="4daa8e884978121e4ef96b41be891d68"/><file name="resetforgottenpassword.phtml" hash="daf6afabee59356227af4b5664ad8a03"/></dir><file name="logout.phtml" hash="aa38c8d8147fdfacffecdacf6e09a52a"/><file name="orders.phtml" hash="8d3430d4841209de8267892d42457300"/><dir name="widget"><file name="dob.phtml" hash="af46c6cfb854ad52b892e39ff29388de"/><file name="gender.phtml" hash="594a9f74083e45aa2328a3927534a321"/><file name="name.phtml" hash="9548a15c7e0b8185d694b887f9b96e63"/><file name="taxvat.phtml" hash="7ef67202f72805aa4c30d7e12ba6048a"/></dir><file name="wishlist.phtml" hash="24bae79b660c3aab3d180d93638c4cdd"/></dir><dir name="downloadable"><dir name="checkout"><dir name="cart"><dir name="item"><file name="default.phtml" hash="1e89739a6c07806a66b5b0e4deccf501"/></dir></dir></dir><dir name="customer"><dir name="products"><file name="list.phtml" hash="b0a6197b323f8194952c205a224bb8c2"/></dir></dir></dir><dir name="newsletter"><file name="subscribe.phtml" hash="dca96e0c573ecb6784d494b69142472c"/></dir><dir name="page"><file name="1column.phtml" hash="c9f732bf8044c309da0da60a070bae3f"/><file name="2columns-left.phtml" hash="a4eafbdd0b6bc0fcbd82ee03da22d419"/><file name="2columns-right.phtml" hash="9095777891ae24422c87bee2de5449c0"/><file name="3columns.phtml" hash="29228dfc82b767a0c8624ca7249e9bbd"/><file name="baners.phtml" hash="9b44ceb33f82f0d2fa080ff6b0836259"/><file name="brands.phtml" hash="94cea8f9a3051af39711a90b5f1de22a"/><file name="empty.phtml" hash="766c793ae739fe85b7902d7ef9c80696"/><dir name="html"><file name="breadcrumbs.phtml" hash="b2fa7f6eaf26e082e87441795165de90"/><file name="cookienotice.phtml" hash="5c5122d19c8799a2d6fbbf8773bbe55a"/><file name="footer.phtml" hash="62a54bf5f5ec8adf3753dc95c9ee4fb3"/><file name="head.phtml" hash="064a34a7c4ca590a21924342a559092e"/><file name="header.phtml" hash="442800b8d724383f292e45382c1195cf"/><file name="notices.phtml" hash="da5ebd928526806c5908e5f53533b774"/><file name="pager.phtml" hash="a4569ae9195f026fe48d852c622c1e37"/><file name="top.links.phtml" hash="5a2867d7e8e0367c7a5ccd279c6b5f9d"/><file name="topmenu.phtml" hash="8e60b075c0b38754a3a9ff16c305cb28"/><file name="viewpointmeta.phtml" hash="605fe92e7abaa2018e83f09776f18f9e"/><file name="wrapper.phtml" hash="17f11c22d69e9633c2a09f41cc28eaa9"/></dir><dir name="js"><file name="calendar.phtml" hash="8e32c4072f4adfe3ae921f7321fc7b2f"/><file name="cookie.phtml" hash="b5146fa39350acdb70ccdb807c60a1d9"/></dir><file name="popup.phtml" hash="c085beaa9a222ac22b2122a51e05d7a9"/><file name="print.phtml" hash="7aefb18efe3091a4ad8f4559b280d660"/><file name="redirect.phtml" hash="1c00ea085f3d24730d386550ab186594"/><dir name="switch"><file name="flags.phtml" hash="ffa358e4b33eae0a8ffd667c082c8579"/><file name="languages.phtml" hash="ef27ad040530bb57e8dbad00a2edbd8b"/><file name="stores.phtml" hash="e6c5a485a0472f169096226f0f5e430e"/></dir><dir name="template"><file name="container.phtml" hash="f1506fbaabfa796beaeabb9a74dc1367"/><file name="links.phtml" hash="d96096b9bfca580035b57e85963a3ce4"/><file name="linksblock.phtml" hash="3c0c73c49d39492e7a049f9d6b6f6200"/></dir></dir><dir name="payment"><dir name="catalog"><dir name="product"><dir name="view"><dir name="profile"><file name="options.phtml" hash="486e22cdd97f53d06489250a2d8ba349"/><file name="schedule.phtml" hash="2fecc41bba90f77cabb7ff87eed33c81"/></dir></dir></dir></dir><dir name="form"><file name="banktransfer.phtml" hash="78cfa40ca72015dde7227664c6b35f1b"/><file name="cashondelivery.phtml" hash="50541f512870ae803c04aeb3658a93d7"/><file name="cc.phtml" hash="630581c3d649ee8fe151a36182b6203e"/><file name="ccsave.phtml" hash="4755252df87e17b47b18c6836a69f938"/><file name="checkmo.phtml" hash="eeed7840c16ffbf56addac2588f0dbab"/><file name="purchaseorder.phtml" hash="aadf40ccc3e093874b7b0fe01465e500"/></dir><dir name="info"><file name="banktransfer.phtml" hash="5f4c13e7db3f80164ea73d13eb437bd1"/><file name="checkmo.phtml" hash="ebcdc5ee889dadd063a89dc9702bcb5d"/><file name="default.phtml" hash="45c8c15ae25c36cb2eff916d97ef822d"/><file name="purchaseorder.phtml" hash="c9e165e5f6009b3126e2c0743f1ecd06"/></dir></dir><dir name="persistent"><dir name="checkout"><dir name="onepage"><file name="billing.phtml" hash="565640adf366d32d52d71699c2308543"/><file name="login.phtml" hash="91688327b7d92548b17f0910f98b2cd0"/></dir></dir><dir name="customer"><dir name="form"><file name="login.phtml" hash="42b83ae604c19b8ac856f0a6d698b49a"/></dir></dir></dir><dir name="rating"><file name="detailed.phtml" hash="fd0413a654744d23ce6eea412221a2e4"/><file name="empty.phtml" hash="2b5189dccbaa36740993f45bd6f11214"/></dir><dir name="review"><dir name="customer"><file name="list.phtml" hash="3eff3e3faf65fd7addc56203a4ad5f77"/><file name="recent.phtml" hash="db2da0952d12c186927fa0e5de73ef92"/><file name="view.phtml" hash="f829a98a214c59676589063ef427aadf"/></dir><file name="form.phtml" hash="e25cd60279bd075dc560ca343346eded"/><dir name="helper"><file name="summary.phtml" hash="7c15b7078c848df9d2346ccd1d13cad5"/><file name="summary_short.phtml" hash="3235ad0cf2262197433a415c30fcadc2"/></dir><dir name="product"><dir name="view"><file name="count.phtml" hash="4330b226b0de0c1e151ea0e8cfc60bec"/><file name="list.phtml" hash="581e6f2c2198689b86f23f277f93f238"/><file name="other.phtml" hash="0f7a97276b6b495e1b3dedf488018625"/></dir></dir><dir name="rev"><file name="form.phtml" hash="9cd174c1aeb52c69d4a915696ee206e7"/></dir><file name="view.phtml" hash="0aeb91cca40ccadffc2cde36918af5d6"/></dir><dir name="sales"><dir name="reorder"><file name="sidebar.phtml" hash="ac91918f5063450f491937521c9b1bf9"/></dir></dir><dir name="tag"><file name="list.phtml" hash="72206a445a6af8e6dca7c119bfda7b80"/><file name="popular.phtml" hash="e9b088139e11f865c080f15b9859d02d"/></dir><dir name="wishlist"><file name="view.phtml" hash="15959ac531383b9d597e22960d6340c4"/></dir></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Modulesgarden_ThemeSwifty.xml" hash="afbe0392f5aa6da20ea8897ba27fda2c"/></dir></target><target name="mageskin"><dir name="frontend"><dir name="modulesgarden"><dir name="swifty"><dir name="css"><file name="color-footer-dark.css" hash="60aaafb908a65be8d8146cb1228b82f7"/><file name="color-footer-lightgray.css" hash="ea4cfd6da68f7a6204a06371f0b63bdf"/><file name="color-footer-white.css" hash="e72c1b009a3c7297f77f6f3e168b64ca"/><dir name="font_awesome"><dir name="css"><file name="font-awesome.css" hash="701a716398620a5f24f4b15bd312b934"/><file name="font-awesome.min.css" hash="feda974a77ea5783b8be673f142b7c88"/></dir><dir name="fonts"><file name="FontAwesome.otf" hash="19231917733e2bcdf257c9be99cdbaf1"/><file name="fontawesome-webfont.eot" hash="7149833697a959306ec3012a8588dcfa"/><file name="fontawesome-webfont.svg" hash="65bcbc899f379216109acd0b6c494618"/><file name="fontawesome-webfont.ttf" hash="c4668ed2440df82d3fd2f8be9d31d07d"/><file name="fontawesome-webfont.woff" hash="d95d6f5d5ab7cfefd09651800b69bd54"/></dir><dir name="less"><file name="bordered-pulled.less" hash="5b3f3e1353ea7ab9d10fd7598fbd214b"/><file name="core.less" hash="b5507859b83e01561e0b171a1a8a21a7"/><file name="fixed-width.less" hash="5e07ec001f8d21bd279c12ee542813f7"/><file name="font-awesome.less" hash="65493b74c9bfb5c6942e61239efdb3de"/><file name="icons.less" hash="2e03dd427613acb1f97eb506bcc24c83"/><file name="larger.less" hash="8cb65280c0f889daf72626c21a7c8628"/><file name="list.less" hash="975571323cf880a4a30601998236b027"/><file name="mixins.less" hash="3a0108713f34ca1fcbe22451585886b5"/><file name="path.less" hash="baaf503b6821b49336f242445bcf26ca"/><file name="rotated-flipped.less" hash="a8476cdc50c264abd11ff59d6a9dd025"/><file name="spinning.less" hash="f7ceb182bd98b795cf0a55e90c518a14"/><file name="stacked.less" hash="518e2b2d263982d2caa1e6514b4b4eac"/><file name="variables.less" hash="d40d1e811702269d6aa862070b652a34"/></dir><dir name="scss"><file name="_bordered-pulled.scss" hash="e4f85472a1f6ed0e23a473b8e00ef071"/><file name="_core.scss" hash="5a0ac797103875112d48b5d51f0dc71d"/><file name="_fixed-width.scss" hash="9277ab6964a434d499873687b00be906"/><file name="_icons.scss" hash="18308d3f72183aaad1047e3e4200f7ba"/><file name="_larger.scss" hash="e95931566f6fc6ad5685c4fa9802e206"/><file name="_list.scss" hash="7107e80b053928271d5fcf422dc29490"/><file name="_mixins.scss" hash="e0baf3cfd00f9ba22126d3dfbacbce22"/><file name="_path.scss" hash="ac2a848f68cffed328272615bfca2500"/><file name="_rotated-flipped.scss" hash="9f5d4bc6fadea89328d2aac26574a9d8"/><file name="_spinning.scss" hash="7dcbea35ea3ee2f576354daeb510ab33"/><file name="_stacked.scss" hash="5594237226aedfbca2fa1c7f4604c214"/><file name="_variables.scss" hash="259f90841b8ddd08055d42737acaae95"/><file name="font-awesome.scss" hash="6adfa5c642be301ec4af882faa5cecbf"/></dir></dir><file name="iwd-active.css" hash="d4bcaacba357815d4b985d4b179e897a"/><file name="iwd-disable.css" hash="d06d6e5bc4ce0444c59b506ea8dc737b"/><file name="lato-font.css" hash="9c379db05b96f1b617a482bec1168151"/><file name="oauth-simple.css" hash="3da633ac3800b0d5a9501e089202c760"/><file name="open-sans-font.css" hash="4491bb143adcc947d66c60626e4f2afa"/><file name="print.css" hash="0931bba935b423c1e1866b4e586de88e"/><file name="raleway-font.css" hash="17c6cc32ad89359046d8717b44fa2bec"/><file name="responsive.css" hash="457952de03515e9600986ee744ae07a0"/><file name="roboto-font.css" hash="e5ccdc6ff699061e49da5e768937e1eb"/><file name="styles-blue.css" hash="1463c937b51ed18700082bda1bf0e858"/><file name="styles-green.css" hash="bdf62e5bc76428c4c4c389845b1d829a"/><file name="styles-ie.css" hash="fd54c1025b9de3cea9002e1d6d8efdaf"/><file name="styles.css" hash="93a50f4625fad80eb59135f77217a029"/><file name="widgets.css" hash="e755828e5680da2e27edecbeafe553fc"/></dir><file name="favicon.ico" hash="88733ee53676a47fc354a61c32516e82"/><dir name="images"><file name="arrow_carusel.jpg" hash="a5c4b8b509a145c21faa5e58183bc6be"/><file name="bkg_rating-blue.png" hash="480db23df8c7d9093015ce1bd1cf2cba"/><file name="bkg_rating-green.png" hash="0d5c5d47eafabb985d90b2dc743c74da"/><file name="bkg_rating-red.png" hash="c05e2f061a0e1875b5fb2407a04770b9"/><file name="cart.png" hash="5264089f8398835f5dca1c163fc95c3d"/><dir name="catalog"><dir name="product"><dir name="placeholder"><file name="image.jpg" hash="7f8ec531ce4e8be7caa9a588c738877e"/><file name="small_image.jpg" hash="262c03da4f05f6ee86e047d9778def87"/><file name="thumbnail.jpg" hash="b2b682d28a08a748a73d2cda70ab5a57"/></dir></dir></dir><file name="circle-blue.png" hash="65773c811f4c62d6667dfdf7a2dd2877"/><file name="circle-green.png" hash="698c895a69ea60fe3ef1ef93d4866948"/><file name="circle-red.png" hash="b67de6802e947790ec65fd490f02578f"/><file name="crsl-image.png" hash="8e59a2012a223eb15a1afcfe2c7d3e35"/><file name="eye.png" hash="b567c4baa4a8425776926e2abdd14ab8"/><file name="grid-blue.png" hash="739d05993cea3fd85583b36f5f2c119e"/><file name="grid-green.png" hash="82c9ab7b1a399af6f2e03cb1b8e7c807"/><file name="grid-n.png" hash="7764b9c1bf94004090cc2f8611d33050"/><file name="grid-red.png" hash="ec02f3ceb42a746bb6c38ed009d56ce4"/><file name="grid_n.png" hash="29e6511c2dc11d1c037ce4254396804b"/><file name="i_arrow-top-blue.png" hash="5441b4366fd88c1c0c3b5d2736345bf6"/><file name="i_arrow-top-green.png" hash="246caf560443a978c27fecc925c10603"/><file name="i_arrow-top-red.png" hash="379b1b38f91341b02d052a93a502b3c8"/><file name="i_asc_arrow-blue.png" hash="68467d21a9f0b13fa4d804cb0c8c8e84"/><file name="i_asc_arrow-green.png" hash="dfed1d9a748b196ddbb3b2eab31f5082"/><file name="i_asc_arrow-red.png" hash="6ccb0fb4d457c213e790ca00b7c32684"/><file name="i_desc_arrow-blue.png" hash="62556aa312de052608ee732b5843c2e5"/><file name="i_desc_arrow-green.png" hash="3644e8ff707a8bbdc38d72de3d075b9d"/><file name="i_desc_arrow-red.png" hash="215c5f24b6da79fdc4887902dc447f2c"/><file name="i_desc_arrow.png" hash="e1249e34c9e8a674cef5f1ad1da9942f"/><file name="i_desc_arrow_blue.png" hash="b7a4b20427275af7dd073b693ae3c4de"/><file name="i_desc_arrow_red.png" hash="215c5f24b6da79fdc4887902dc447f2c"/><file name="list-blue.png" hash="bc24a5e4aa7637bd9578184fa35650fd"/><file name="list-green.png" hash="a2ac891fdaace534a17269bbc373dd31"/><file name="list-n.png" hash="db6eb32375cbfdee7286844e7d79fd8e"/><file name="list-red.png" hash="444ee7d3a2c2a1193e65fc5306174f2d"/><file name="list_n.png" hash="db6eb32375cbfdee7286844e7d79fd8e"/><file name="logo.gif" hash="a5d68b996e99cb00fdb4124300e40229"/><file name="logo.png" hash="23bf05fabed0fc1ee42590c3ae794f99"/><dir name="media"><file name="logo.png" hash="d471a234abeb63aaff96ea6fb61ccf70"/></dir><file name="mgcommerce-logo.png" hash="7d81b1ccb16fe0efc1387deabea5203d"/><file name="pager_arrow_left-blue.gif" hash="6366e610644e71410554315b3fcca373"/><file name="pager_arrow_left-green.gif" hash="17c9f0070a4a3fb19120a598ede3b9b7"/><file name="pager_arrow_left-red.gif" hash="be12af073dd071ccb1303fd1b577dd58"/><file name="pager_arrow_right-blue.gif" hash="666a5bab4b321f6d1b0053a50d4f0524"/><file name="pager_arrow_right-green.gif" hash="7ce157678c4f7918a3f489149591ac04"/><file name="pager_arrow_right-red.gif" hash="cd8605d7ff3f69fb29b800a0ab234950"/><file name="plus-blue.png" hash="d3e7343e3877228315f3d4590bfdde6a"/><file name="plus-green.png" hash="04823d1d33ab7aaec84ea103e072e09f"/><file name="plus-red.png" hash="3529bb7de7aa3f8545c12ab7b5cee248"/><file name="plus.png" hash="a139600f7d032a4ccfc43ebd958b54af"/><file name="search_button.png" hash="0290f655516bc71dfa2c4f22d3f85062"/><dir name="sliderimages"><file name="Thumbs.db" hash="e6d40648c0045112d0496c7dd1f7e01a"/><file name="blue-bg.jpg" hash="f0187dda4a5b7ec45950e8e548c9960e"/><file name="blue-bg2.jpg" hash="98fa36280e983f9f26f84019c5b43983"/><file name="circles.png" hash="58a987b184bb886368fcfcae7c86ce80"/><file name="green-bg.jpg" hash="bfbadeb4e484c464c168d067edd81097"/><file name="green-bg2.jpg" hash="ae914f03228a1956f94803812115f6f5"/><file name="left.png" hash="fd70aa066331f1549915005e22d7a9d1"/><file name="red-bg.jpg" hash="403bec66472fa0e92a0db30e29816a09"/><file name="red-bg2.jpg" hash="dfa4a5756b61bd05d49a8acffea0d602"/><file name="right.png" hash="14a440a0fdd9ba41c9f3ab0baeec058e"/><file name="sample_transitions.js" hash="1f65b36db3d6ced91e21ce24fb04b3c2"/></dir><file name="wish.png" hash="cfe8dcd3f8aa6d1c9ae3bd60804fb781"/><dir name="xmlconnect"><dir name="catalog"><dir name="category"><dir name="placeholder"><file name="image.jpg" hash="097ab8a3051bc037ea3de0e17f440540"/><file name="small_image.jpg" hash="f825d16f97a640453553c79c48ebaa73"/><file name="thumbnail.jpg" hash="b2b682d28a08a748a73d2cda70ab5a57"/></dir></dir></dir></dir></dir><dir name="js"><file name="custom.js" hash="5c07d6e27a7d9f383c3d447ca0b39225"/><dir name="fancybox"><file name="Thumbs.db" hash="46cb90ca1e3dd98d22dfeb9eaea914a6"/><file name="blank.gif" hash="325472601571f31e1bf00674c368d335"/><file name="fancybox_loading.gif" hash="328cc0f6c78211485058d460e80f4fa8"/><file name="fancybox_loading@2x.gif" hash="f92938639fa894a0e8ded1c3368abe98"/><file name="fancybox_overlay.png" hash="77aeaa52715b898b73c74d68c630330e"/><file name="fancybox_sprite.png" hash="783d4031fe50c3d83c960911e1fbc705"/><file name="fancybox_sprite@2x.png" hash="ed9970ce22242421e66ff150aa97fe5f"/><dir name="helpers"><file name="fancybox_buttons.png" hash="b448080f8615e664b7788c7003803b59"/><file name="jquery.fancybox-buttons.css" hash="cac75538c2e3ddfadef839feaca8e356"/><file name="jquery.fancybox-buttons.js" hash="f53c246661fb995a3f12e67fa38e0fa0"/><file name="jquery.fancybox-media.js" hash="c017067f48d97ec4a077ccdf056e6a2e"/><file name="jquery.fancybox-thumbs.css" hash="52ddd84a9f42c1d4cd86d518a7f7e8bc"/><file name="jquery.fancybox-thumbs.js" hash="cf1fc1df534eede4cb460c5cbd71aba6"/></dir><file name="jquery.fancybox.css" hash="6c55951ce1e3115711f63f99b7501f3a"/><file name="jquery.fancybox.js" hash="921e9cb04ad6e2559869ec845c5be39b"/><file name="jquery.fancybox.pack.js" hash="cc9e759f24ba773aeef8a131889d3728"/></dir><file name="ie6.js" hash="5dbfb553bbaab5ef71ecf92ea81b7a59"/><file name="jquery.flexisel.js" hash="e2b1e9926a23e002e3283df45e47ee8b"/><file name="jquery.selectric.min.js" hash="30882566d7242c3140968156b5873c56"/><dir name="layerslider"><dir name="css"><file name="blank.gif" hash="76084e29cb2cf72b320e888edc583dfb"/><file name="layerslider.css" hash="cff418c08f8f6c03660f90e791beddb5"/></dir><dir name="js"><file name="greensock.js" hash="37b8cf3e6997604340964adb3462b76d"/><file name="jquery.js" hash="994b732780279e0c6431465beeaad782"/><file name="layerslider.kreaturamedia.jquery.js" hash="15d2411ac58e00b29bfc552ab6428f54"/><file name="layerslider.transitions.js" hash="33f82fea7aa75721d82fc3cec6d48690"/></dir><dir name="skins"><dir name="borderlessdark"><file name="loading.gif" hash="e82577eeffcfdbb0ee0b96210a4c9afd"/><file name="nothumb.png" hash="575f8a12504e09d515edc26a0fe5eece"/><file name="shadow.png" hash="35a1002c529afb496b5642e8a9b35466"/><file name="skin.css" hash="81f75d27f86e83b442572e9660983df8"/><file name="skin.png" hash="dfc9e677df11103054c1c043ff52a4a9"/></dir><dir name="borderlessdark3d"><file name="loading.gif" hash="e32ddf7c031699fc4f43ce30a9d57c39"/><file name="nothumb.png" hash="4fb095d42325d69e33f9e08620db283a"/><file name="shadow.png" hash="dfc1373cfdc6bcc673ad236d9482cf39"/><file name="skin.css" hash="6c937a06bcac530ed839dc9659891a69"/><file name="skin.png" hash="744e435ecd2a7513fa1cf1e586ecd14a"/></dir><dir name="borderlesslight"><file name="loading.gif" hash="4f31acc6c5e9aa3e15d9e8a2475c5f55"/><file name="nothumb.png" hash="4fb095d42325d69e33f9e08620db283a"/><file name="shadow.png" hash="35a1002c529afb496b5642e8a9b35466"/><file name="skin.css" hash="2473f57f10bd6f0774e269cc7f48154d"/><file name="skin.png" hash="dd7e700c6895505621f0fea9d13dc46e"/></dir><dir name="borderlesslight3d"><file name="loading.gif" hash="4f31acc6c5e9aa3e15d9e8a2475c5f55"/><file name="nothumb.png" hash="4fb095d42325d69e33f9e08620db283a"/><file name="shadow.png" hash="dfc1373cfdc6bcc673ad236d9482cf39"/><file name="skin.css" hash="c08f1c979ba318c785ce9e108a81a0f5"/><file name="skin.png" hash="50031e6021412aa36c2bd19a317c1071"/></dir><dir name="carousel"><file name="loading.gif" hash="4f31acc6c5e9aa3e15d9e8a2475c5f55"/><file name="nothumb.png" hash="4fb095d42325d69e33f9e08620db283a"/><file name="skin.css" hash="86e04178853cbcb48b2804584b607d2d"/><file name="skin.png" hash="2168ddf8139d2f6e4bfaf5f0288b8137"/></dir><dir name="darkskin"><file name="loading.gif" hash="e32ddf7c031699fc4f43ce30a9d57c39"/><file name="nothumb.png" hash="575f8a12504e09d515edc26a0fe5eece"/><file name="skin.css" hash="7aa8160d6a51a6644ce5c94b5455683d"/><file name="skin.png" hash="d9ec414f3779a5dc5654403f3c59a7ea"/></dir><dir name="defaultskin"><file name="loading.gif" hash="088b0fa7c6f5ef8a6f0c838999b4a2de"/><file name="nothumb.png" hash="4fb095d42325d69e33f9e08620db283a"/><file name="skin.css" hash="43461c47d6853954b7df5663708077c7"/><file name="skin.png" hash="715012a0ceef20b603c81dede7ad5a65"/></dir><dir name="fullwidth"><file name="loading.gif" hash="088b0fa7c6f5ef8a6f0c838999b4a2de"/><file name="nothumb.png" hash="4fb095d42325d69e33f9e08620db283a"/><file name="skin.css" hash="b3f8dbdbfa285ce58cf629f72e93c2ed"/><file name="skin.png" hash="50031e6021412aa36c2bd19a317c1071"/></dir><dir name="fullwidthdark"><file name="loading.gif" hash="e32ddf7c031699fc4f43ce30a9d57c39"/><file name="nothumb.png" hash="4fb095d42325d69e33f9e08620db283a"/><file name="skin.css" hash="77f91e85513a68c68363ea8f5ce49046"/><file name="skin.png" hash="c2a9f34b086952c71cb599618fc928ba"/></dir><dir name="glass"><file name="loading.gif" hash="088b0fa7c6f5ef8a6f0c838999b4a2de"/><file name="nothumb.png" hash="4fb095d42325d69e33f9e08620db283a"/><file name="shadow.png" hash="7feecb2e0fe23274fe6a0bda004680fe"/><file name="skin.css" hash="bc481392c81acab1393f11f7736923d0"/><file name="skin.png" hash="a52d3924867a503e3a191affd35af3ce"/></dir><dir name="lightskin"><file name="loading.gif" hash="088b0fa7c6f5ef8a6f0c838999b4a2de"/><file name="nothumb.png" hash="4fb095d42325d69e33f9e08620db283a"/><file name="skin.css" hash="76dd2fcd0e9a152ac268a844249e03b3"/><file name="skin.png" hash="7a7014b8762c5855d4a973ad44b4115b"/></dir><dir name="minimal"><file name="loading.gif" hash="088b0fa7c6f5ef8a6f0c838999b4a2de"/><file name="nothumb.png" hash="4fb095d42325d69e33f9e08620db283a"/><file name="skin.css" hash="12a92190387c645598e919df09987d4b"/><file name="skin.png" hash="683ce20cf7650bb023a509b2182a183b"/></dir><dir name="noskin"><file name="loading.gif" hash="088b0fa7c6f5ef8a6f0c838999b4a2de"/><file name="nothumb.png" hash="4fb095d42325d69e33f9e08620db283a"/><file name="skin.css" hash="a7490e3bb30033a37d1fe123c5a675e4"/><file name="skin.png" hash="04b2ee7f7f946c9af534a01bf683505f"/></dir><dir name="v5"><file name="loading.gif" hash="088b0fa7c6f5ef8a6f0c838999b4a2de"/><file name="nothumb.png" hash="4fb095d42325d69e33f9e08620db283a"/><file name="skin.css" hash="bc97c95ae9fed681515eb45e119fea31"/><file name="skin.png" hash="04ec18a1e23a9b20cde5575245ebead4"/></dir></dir></dir><dir name="owl-carousel"><file name="AjaxLoader.gif" hash="5b8b06c052cac80413d62e5c45f9f37b"/><file name="Thumbs.db" hash="a222d71aeade05d901cd99b0008ce598"/><file name="grabbing.png" hash="d817e1dba5bd5d891d0504bf1715807b"/><file name="local.xml" hash="80c96926d01be45cfa492d204f945a00"/><file name="owl.carousel.css" hash="b51416af9e8adbe3d16f5f2526aba221"/><file name="owl.carousel.js" hash="a7f535ea24c4c9cf5f01ac9322634f58"/><file name="owl.carousel.min.js" hash="ffaa3c82ad2c6e216e68aca44746e1be"/><file name="owl.theme.css" hash="f23cf727e4fcca9a5470658da5e755c9"/><file name="owl.transitions.css" hash="b1bdaeac4065bf67a7d7a06213192964"/></dir><file name="responsiveCarousel.js" hash="4f6c26ebf80ceebac90ab073770636ff"/></dir><file name="oauth-simple.css" hash="3da633ac3800b0d5a9501e089202c760"/></dir></dir></dir></target></contents>
|
18 |
<compatible/>
|
19 |
-
<dependencies><required><php><min>5.2.13</min><max>5.
|
20 |
</package>
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>ModulesGarden_Swifty</name>
|
4 |
+
<version>1.0.1</version>
|
5 |
<stability>stable</stability>
|
6 |
<license>OSL</license>
|
7 |
<channel>community</channel>
|
10 |
<description>ModulesGarden Swifty - Theme For Magento is a responsive skin for your online store created to please the senses of your customers. The centerpiece of the theme is a transparent slider which, combined with fresh graphic design, makes your eCommerce platform vivid and enjoyable.
|
11 |

|
12 |
Provide your customers with unforgettable experience and achieve it without spending a penny! Swifty - Theme For Magento is entirely free and does not require any installation nor modification of Magento code. Simply download it, upload the files on your server and activate!</description>
|
13 |
+
<notes>New Feature: The 'new' attribute is now shown in products catalogue and a product view.
|
14 |
+
Bug Fix: Error occured on the configuration page in the admin area.
|
15 |
+
Bug Fix: 'Extended One Page Checkout' JavaScript file. 
|
16 |
+
Bug Fix: SQL and Data installer</notes>
|
17 |
<authors><author><name>ModulesGarden</name><user>ModulesGarden</user><email>peter@inbsgroup.com</email></author></authors>
|
18 |
+
<date>2015-05-14</date>
|
19 |
+
<time>11:16:17</time>
|
20 |
+
<contents><target name="magecommunity"><dir name="Modulesgarden"><dir name="ThemeSwifty"><dir name="Block"><dir name="Product"><file name="Bestseller.php" hash="70f7bab6bdb902700acbddf170df0947"/><file name="Featured.php" hash="9a683e05ff200ebf1b3409dd8033fdf4"/></dir></dir><dir name="Helper"><file name="Data.php" hash="58765b37e8db3ad57ff6a27e470b30c0"/></dir><dir name="Model"><dir name="System"><dir name="Config"><dir name="Source"><file name="Select.php" hash="745a4a4d43ae9ddb2132119829b7fdc9"/></dir></dir></dir></dir><dir name="data"><dir name="mgthemeswifty_setup"><file name="data-install-1.0.0.php" hash="19a4a1e40e723209a81d40890f0496f7"/></dir></dir><dir name="etc"><file name="config.xml" hash="aeeddd2f7eb68d6236d09712ab9efd04"/><file name="system.xml" hash="edb1981f117a608b99235336601390ab"/></dir><dir name="sql"><dir name="mgthemeswifty_setup"><file name="install-1.0.0.php" hash="05354a941184556310ba14719a178ace"/></dir></dir></dir></dir></target><target name="magedesign"><dir name="frontend"><dir name="modulesgarden"><dir name="swifty"><dir name="layout"><file name="catalog.xml" hash="f3c60316b0bd5cfd166bd347b9748ed3"/><file name="catalogsearch.xml" hash="9b97d4fcb2c2d4265e5efb5e3f877be0"/><file name="checkout.xml" hash="3073bcb4ab927d933973f4feca0740e4"/><file name="cms.xml" hash="2563b8cda9e485a41aece377d5bfd878"/><file name="customer.xml" hash="d2b9b2e3f2dafd5557bbd347a8e754f1"/><file name="local.xml" hash="80c96926d01be45cfa492d204f945a00"/><file name="newsletter.xml" hash="d651d53837b9ad6cb70102b3e603179b"/><file name="page.xml" hash="0f391a8546c395bfa36c86b7aae1423e"/><file name="paypal.xml" hash="9c414774a1ad55feed3e6656aa3b77f2"/><file name="poll.xml" hash="2b2dccf513b83cea4ac9e3d9e9a07c4f"/><file name="reports.xml" hash="006dd44fd96bbdc872c4983bab8a2879"/><file name="review.xml" hash="3f86fc3f30c16721ae7888c810bafcd4"/><file name="tag.xml" hash="85dc3d54f65ddcff7ccecf9f8c3df3e4"/><file name="wishlist.xml" hash="f507945890c634c2cf3a4e077e97281f"/></dir><dir name="template"><dir name="callouts"><file name="left_col.phtml" hash="0834af473826bb3b948e6d443968d59f"/><file name="right_col.phtml" hash="0834af473826bb3b948e6d443968d59f"/></dir><dir name="catalog"><dir name="category"><file name="page.phtml" hash="da8088fd881c776e68f2096e3ccdb515"/><file name="view.phtml" hash="348d15b1044084bd926aecb1f505d892"/><dir name="widget"><dir name="link"><file name="link_block.phtml" hash="db7ebf6737ad571c9fdaa0e77029f554"/><file name="link_inline.phtml" hash="a0bf94c67c9b299639f0919945aab2b9"/></dir></dir></dir><dir name="layer"><file name="filter.phtml" hash="19a84cdf122ea2f81e513e6f312e44f0"/><file name="state.phtml" hash="a027df04a1906a48cdbed3bc2d59c5cf"/><file name="view.phtml" hash="34cadd2da077f4d2180b25d76179befe"/></dir><dir name="navigation"><file name="left.phtml" hash="9c7d8595136b4bcec87eee043582c08c"/><file name="top.phtml" hash="c91ddb53b136b440b3814e926f8d2b2f"/></dir><dir name="product"><file name="bestseller.phtml" hash="4d5f65c785d7446eb018e6015996cf6c"/><dir name="compare"><file name="list.phtml" hash="de875c2e4dbcef23be1ea9ed7004a750"/><file name="sidebar.phtml" hash="eb95eb9b8ef892e8f097cd3b406da52e"/></dir><file name="featured.phtml" hash="be9eaf25cf39f1ca01f11fc882d111f3"/><file name="gallery.phtml" hash="ef28634ad6fa4f1bab2fcfeb22efbece"/><dir name="list"><file name="related.phtml" hash="09ede9b24eea2a416048610d140fff9e"/><file name="toolbar.phtml" hash="640926d716bf6f0f34374c7a7301997d"/><file name="upsell.phtml" hash="609f0aa6eb4e844d414f855dcaff86d8"/></dir><file name="list.phtml" hash="ef2e15701e72d226c43c383b072ea1a3"/><file name="new.phtml" hash="bffd564c90211337f832d9403479c305"/><file name="price.phtml" hash="4aa514c0e54e1819be6b2cec31e2a59b"/><dir name="view"><file name="additional.phtml" hash="75d35ae44509ed4870d0474d244e1b08"/><file name="addto.phtml" hash="fbd3e1f65e3ae8f250392ef28a1af45c"/><file name="addtocart.phtml" hash="fba30c9a5febd48460e827d0b7a39262"/><file name="attributes.phtml" hash="8f0d6d0559372f02ff8884fe29dcab6a"/><file name="description.phtml" hash="d6947fdbdf690f6593bfd8dfa51aaf62"/><file name="media.phtml" hash="3ed5438710673de61b88984622d29d3c"/><dir name="options"><file name="js.phtml" hash="cbce4dbf550a285377e912a0d84ffac5"/><dir name="type"><file name="date.phtml" hash="10db5e907373a5dd29aaa6c697fe48ed"/><file name="default.phtml" hash="12ca975f28ceb725c86d88c3b02bfdfd"/><file name="file.phtml" hash="bd76fb7fda5ed6f80e64c019e891283e"/><file name="select.phtml" hash="32f52b09af56e1dba477d510cfdef8b8"/><file name="text.phtml" hash="1c29cdba2a0e0b1f15f68c3fbc3b07eb"/></dir><dir name="wrapper"><file name="bottom.phtml" hash="f74e0101b9348de711673a442a523883"/></dir><file name="wrapper.phtml" hash="deccc0442fcd68885e0ebfeaa91018ea"/></dir><file name="options.phtml" hash="014679e6223efcb1fcaede2b66f0ac7e"/><file name="price.phtml" hash="c55bb537b537845cc22fe46eee32b3f2"/><file name="price_clone.phtml" hash="aca0dd622abfcd04e82407d2b4763c65"/><file name="tierprices.phtml" hash="0105721a68cc8e7210fd6240a8c656bf"/><dir name="type"><file name="configurable.phtml" hash="e0dbac1a30611fa918be451ff274687d"/><file name="default.phtml" hash="07591ae059411e254686c34c81007120"/><file name="grouped.phtml" hash="8ec000960905666d70d5f8a5e664c59f"/><dir name="options"><file name="configurable.phtml" hash="d4d7a289ddcb74624111957fd4440370"/></dir><file name="simple.phtml" hash="e0dbac1a30611fa918be451ff274687d"/><file name="virtual.phtml" hash="e0dbac1a30611fa918be451ff274687d"/></dir></dir><file name="view.phtml" hash="54269effa69196c7e01752c606f99284"/><dir name="widget"><dir name="link"><file name="link_block.phtml" hash="acb9c13c312a0c94e7961ccab5c65d68"/><file name="link_inline.phtml" hash="3dfa87b0129d802a5c9ea560d1f6acbb"/></dir><dir name="new"><dir name="column"><file name="new_default_list.phtml" hash="dcf590457d8452a484982d92b07d4ddb"/><file name="new_images_list.phtml" hash="3857d8040dc4bdade3bf6f6bf61f7133"/><file name="new_names_list.phtml" hash="f6634f4255ab4cffd99460d9909a59c6"/></dir><dir name="content"><file name="new_grid.phtml" hash="fcc88367a6195d901ac6fd01d2061ac5"/><file name="new_list.phtml" hash="a3942e747640c685bc269b1e6eaa8164"/></dir></dir></dir></dir></dir><dir name="catalogsearch"><dir name="advanced"><file name="form.phtml" hash="7516f69430370cce1bfcca6206b3943e"/><file name="result.phtml" hash="c8363d5f0e3a5a226e991809959a952f"/></dir><file name="form.mini.phtml" hash="241e7a915d2cc0c3f0c630955ebf96a5"/><file name="result.phtml" hash="1c0913417f5832f97bc8f3050847397a"/><file name="term.phtml" hash="5845fda49f8df1d31ac7082d0e78cbef"/></dir><dir name="checkout"><dir name="cart"><file name="coupon.phtml" hash="ab4d09a164198154f1a0e05b4a794a3b"/><file name="crosssell.phtml" hash="ce7e2f067cd4b80457d608f4eb4aaf41"/><dir name="item"><dir name="configure"><file name="updatecart.phtml" hash="ca22b44c298674148a80fe8ada1a5fb1"/></dir><file name="default.phtml" hash="8224692753f4e15784a0c5d1eaf7f082"/></dir><file name="noItems.phtml" hash="411c34be69c804d60e0bd5bcae714a9c"/><dir name="render"><file name="default.phtml" hash="9b2d0e47b6fc42c97cd05fa96ff6fb35"/><file name="simple.phtml" hash="656aba2c7b4be9755ed38a73a85ec2fa"/></dir><file name="shipping.phtml" hash="4c3e61c34c4ea4a1785cd3ce7e7f809a"/><dir name="sidebar"><file name="default.phtml" hash="cdee4fc166a08cb8bc67fd3add18185c"/></dir><file name="sidebar.phtml" hash="c2a8d3484529073567a94621bf1a4724"/><file name="totals.phtml" hash="1ef7ee9d74757622950be3c09e6fb907"/></dir><file name="cart.phtml" hash="88a77348a5aca7b78f81678b04fdba77"/><dir name="multishipping"><dir name="address"><file name="select.phtml" hash="24e5b3ae470161224b7ec93dfa076d20"/></dir><file name="addresses.phtml" hash="c4a8ddb3f20ec901c128fc53493cbb89"/><file name="agreements.phtml" hash="40405d808754920a21384811150c428a"/><dir name="billing"><file name="items.phtml" hash="dd651dc188bdf99f7e66a8c13c6ac5ff"/></dir><file name="billing.phtml" hash="ba2f65a2005ad5a7e672beb05abb0755"/><dir name="item"><file name="default.phtml" hash="7611ccf607bb1bfa7a6da29d15ab4bde"/></dir><file name="link.phtml" hash="485c52635edde2b20cae0195572c4cf1"/><dir name="overview"><file name="item.phtml" hash="b56df45e1197995f8e4bdecf1a03f475"/></dir><file name="overview.phtml" hash="8ff1b918d1b5d0cbb401b00ee59e15bf"/><file name="shipping.phtml" hash="4b14b9aca6a3f15e341cc35dd66ecfbe"/><file name="state.phtml" hash="70b551955e8039952f7ee34bd8965db1"/><file name="success.phtml" hash="ab59b63b15572789ecb1cb7e3b4632b7"/></dir><dir name="onepage"><file name="link.phtml" hash="7a760608709b3008233161d107b73110"/><file name="login.phtml" hash="828a87a6e8fb700c4f99f4f14ca42b6c"/><dir name="payment"><file name="info.phtml" hash="8e6e9b895acebae19f2cc9109fa72df3"/><file name="methods.phtml" hash="d874f75263e3eb9c7abd28bbe3750a38"/></dir><file name="payment.phtml" hash="97b5645289f03970355636f8f0461be1"/><dir name="review"><file name="button.phtml" hash="3b56a08133efff951d10e664f9cc6b07"/><file name="info.phtml" hash="174fc64c1890657a182cf517776455ad"/></dir><file name="shipping_method.phtml" hash="2d6c8db9efe5b19d2efbc78ceca147fc"/></dir><file name="onepage.phtml" hash="59c27b03fbd8556e5967526a1ec9648d"/><file name="success.phtml" hash="8bdb46b17a5a5a0cbd36f25ae9acf61f"/><dir name="total"><file name="default.phtml" hash="7ee091bdabdc050724203568cb433eb0"/></dir></dir><dir name="cms"><file name="content.phtml" hash="1dd256bfecd8e159da5750999f692ea0"/><dir name="widget"><dir name="static_block"><file name="default.phtml" hash="f03fd36d42a84f2f1aa2a96c7501a375"/></dir></dir></dir><dir name="contacts"><file name="form.phtml" hash="c6c56fdb8516ad717599285ea044d835"/></dir><dir name="customer"><dir name="account"><dir name="dashboard"><file name="address.phtml" hash="bd1d2e0b663af08cb893524cb14a5878"/><file name="hello.phtml" hash="aaf6637cf204354d10ced5975ffa8628"/><file name="info.phtml" hash="d66afd402a82ce5952f7cd10967959fb"/><file name="newsletter.phtml" hash="7a88755792de255d8734420b24aed220"/></dir><file name="dashboard.phtml" hash="138c8acecc3c7a72855d5482c0d41a03"/><dir name="link"><file name="back.phtml" hash="269b03c61ac58ecd42b376da3c4951d6"/></dir><file name="navigation.phtml" hash="d80c92e74821c7d4832bb5cb6630f9bb"/></dir><dir name="address"><file name="book.phtml" hash="e3397c3ceeba1630cabc3037452e5d58"/><file name="edit.phtml" hash="18c163f1c83bc45106dc9c40b44772f9"/></dir><file name="address.phtml" hash="c7d1e96e337bd0f6fd42c619f80cbf45"/><file name="balance.phtml" hash="ffa5f9c1eb242c496867672d79be73e0"/><dir name="form"><file name="address.phtml" hash="e216399279d85465677990bc7494e269"/><file name="changepassword.phtml" hash="6ad2dd980476c29a028027dd41d8303a"/><file name="confirmation.phtml" hash="c39f36698a5c4ecc361abcddccb69d25"/><file name="edit.phtml" hash="4824abf69c20fe13f97b51377a9b08ca"/><file name="forgotpassword.phtml" hash="025f136a7da53f4017fac2e6aa9a2c11"/><file name="login.phtml" hash="a787ec12e5c529a0fc6e3b702a2d7391"/><file name="mini.login.phtml" hash="f1df8f8a52dd3d964731029a171afee8"/><file name="newsletter.phtml" hash="4766be7bd5d3a2ec1c94130ef0e34023"/><file name="register.phtml" hash="4daa8e884978121e4ef96b41be891d68"/><file name="resetforgottenpassword.phtml" hash="daf6afabee59356227af4b5664ad8a03"/></dir><file name="logout.phtml" hash="aa38c8d8147fdfacffecdacf6e09a52a"/><file name="orders.phtml" hash="8d3430d4841209de8267892d42457300"/><dir name="widget"><file name="dob.phtml" hash="af46c6cfb854ad52b892e39ff29388de"/><file name="gender.phtml" hash="594a9f74083e45aa2328a3927534a321"/><file name="name.phtml" hash="9548a15c7e0b8185d694b887f9b96e63"/><file name="taxvat.phtml" hash="7ef67202f72805aa4c30d7e12ba6048a"/></dir><file name="wishlist.phtml" hash="24bae79b660c3aab3d180d93638c4cdd"/></dir><dir name="downloadable"><dir name="checkout"><dir name="cart"><dir name="item"><file name="default.phtml" hash="1e89739a6c07806a66b5b0e4deccf501"/></dir></dir></dir><dir name="customer"><dir name="products"><file name="list.phtml" hash="b0a6197b323f8194952c205a224bb8c2"/></dir></dir></dir><dir name="newsletter"><file name="subscribe.phtml" hash="dca96e0c573ecb6784d494b69142472c"/></dir><dir name="page"><file name="1column.phtml" hash="c9f732bf8044c309da0da60a070bae3f"/><file name="2columns-left.phtml" hash="a4eafbdd0b6bc0fcbd82ee03da22d419"/><file name="2columns-right.phtml" hash="9095777891ae24422c87bee2de5449c0"/><file name="3columns.phtml" hash="29228dfc82b767a0c8624ca7249e9bbd"/><file name="baners.phtml" hash="9b44ceb33f82f0d2fa080ff6b0836259"/><file name="brands.phtml" hash="94cea8f9a3051af39711a90b5f1de22a"/><file name="empty.phtml" hash="766c793ae739fe85b7902d7ef9c80696"/><dir name="html"><file name="breadcrumbs.phtml" hash="b2fa7f6eaf26e082e87441795165de90"/><file name="cookienotice.phtml" hash="5c5122d19c8799a2d6fbbf8773bbe55a"/><file name="footer.phtml" hash="62a54bf5f5ec8adf3753dc95c9ee4fb3"/><file name="head.phtml" hash="064a34a7c4ca590a21924342a559092e"/><file name="header.phtml" hash="442800b8d724383f292e45382c1195cf"/><file name="notices.phtml" hash="da5ebd928526806c5908e5f53533b774"/><file name="pager.phtml" hash="a4569ae9195f026fe48d852c622c1e37"/><file name="top.links.phtml" hash="5a2867d7e8e0367c7a5ccd279c6b5f9d"/><file name="topmenu.phtml" hash="8e60b075c0b38754a3a9ff16c305cb28"/><file name="viewpointmeta.phtml" hash="605fe92e7abaa2018e83f09776f18f9e"/><file name="wrapper.phtml" hash="17f11c22d69e9633c2a09f41cc28eaa9"/></dir><dir name="js"><file name="calendar.phtml" hash="8e32c4072f4adfe3ae921f7321fc7b2f"/><file name="cookie.phtml" hash="b5146fa39350acdb70ccdb807c60a1d9"/></dir><file name="popup.phtml" hash="c085beaa9a222ac22b2122a51e05d7a9"/><file name="print.phtml" hash="7aefb18efe3091a4ad8f4559b280d660"/><file name="redirect.phtml" hash="1c00ea085f3d24730d386550ab186594"/><dir name="switch"><file name="flags.phtml" hash="ffa358e4b33eae0a8ffd667c082c8579"/><file name="languages.phtml" hash="ef27ad040530bb57e8dbad00a2edbd8b"/><file name="stores.phtml" hash="e6c5a485a0472f169096226f0f5e430e"/></dir><dir name="template"><file name="container.phtml" hash="f1506fbaabfa796beaeabb9a74dc1367"/><file name="links.phtml" hash="d96096b9bfca580035b57e85963a3ce4"/><file name="linksblock.phtml" hash="3c0c73c49d39492e7a049f9d6b6f6200"/></dir></dir><dir name="payment"><dir name="catalog"><dir name="product"><dir name="view"><dir name="profile"><file name="options.phtml" hash="486e22cdd97f53d06489250a2d8ba349"/><file name="schedule.phtml" hash="2fecc41bba90f77cabb7ff87eed33c81"/></dir></dir></dir></dir><dir name="form"><file name="banktransfer.phtml" hash="78cfa40ca72015dde7227664c6b35f1b"/><file name="cashondelivery.phtml" hash="50541f512870ae803c04aeb3658a93d7"/><file name="cc.phtml" hash="630581c3d649ee8fe151a36182b6203e"/><file name="ccsave.phtml" hash="4755252df87e17b47b18c6836a69f938"/><file name="checkmo.phtml" hash="eeed7840c16ffbf56addac2588f0dbab"/><file name="purchaseorder.phtml" hash="aadf40ccc3e093874b7b0fe01465e500"/></dir><dir name="info"><file name="banktransfer.phtml" hash="5f4c13e7db3f80164ea73d13eb437bd1"/><file name="checkmo.phtml" hash="ebcdc5ee889dadd063a89dc9702bcb5d"/><file name="default.phtml" hash="45c8c15ae25c36cb2eff916d97ef822d"/><file name="purchaseorder.phtml" hash="c9e165e5f6009b3126e2c0743f1ecd06"/></dir></dir><dir name="persistent"><dir name="checkout"><dir name="onepage"><file name="billing.phtml" hash="565640adf366d32d52d71699c2308543"/><file name="login.phtml" hash="91688327b7d92548b17f0910f98b2cd0"/></dir></dir><dir name="customer"><dir name="form"><file name="login.phtml" hash="42b83ae604c19b8ac856f0a6d698b49a"/></dir></dir></dir><dir name="rating"><file name="detailed.phtml" hash="fd0413a654744d23ce6eea412221a2e4"/><file name="empty.phtml" hash="2b5189dccbaa36740993f45bd6f11214"/></dir><dir name="review"><dir name="customer"><file name="list.phtml" hash="3eff3e3faf65fd7addc56203a4ad5f77"/><file name="recent.phtml" hash="db2da0952d12c186927fa0e5de73ef92"/><file name="view.phtml" hash="f829a98a214c59676589063ef427aadf"/></dir><file name="form.phtml" hash="e25cd60279bd075dc560ca343346eded"/><dir name="helper"><file name="summary.phtml" hash="7c15b7078c848df9d2346ccd1d13cad5"/><file name="summary_short.phtml" hash="3235ad0cf2262197433a415c30fcadc2"/></dir><dir name="product"><dir name="view"><file name="count.phtml" hash="4330b226b0de0c1e151ea0e8cfc60bec"/><file name="list.phtml" hash="581e6f2c2198689b86f23f277f93f238"/><file name="other.phtml" hash="0f7a97276b6b495e1b3dedf488018625"/></dir></dir><dir name="rev"><file name="form.phtml" hash="9cd174c1aeb52c69d4a915696ee206e7"/></dir><file name="view.phtml" hash="0aeb91cca40ccadffc2cde36918af5d6"/></dir><dir name="sales"><dir name="reorder"><file name="sidebar.phtml" hash="ac91918f5063450f491937521c9b1bf9"/></dir></dir><dir name="tag"><file name="list.phtml" hash="72206a445a6af8e6dca7c119bfda7b80"/><file name="popular.phtml" hash="e9b088139e11f865c080f15b9859d02d"/></dir><dir name="wishlist"><file name="view.phtml" hash="15959ac531383b9d597e22960d6340c4"/></dir></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Modulesgarden_ThemeSwifty.xml" hash="afbe0392f5aa6da20ea8897ba27fda2c"/></dir></target><target name="mageskin"><dir name="frontend"><dir name="modulesgarden"><dir name="swifty"><dir name="css"><file name="color-footer-dark.css" hash="60aaafb908a65be8d8146cb1228b82f7"/><file name="color-footer-lightgray.css" hash="ea4cfd6da68f7a6204a06371f0b63bdf"/><file name="color-footer-white.css" hash="e72c1b009a3c7297f77f6f3e168b64ca"/><dir name="font_awesome"><dir name="css"><file name="font-awesome.css" hash="701a716398620a5f24f4b15bd312b934"/><file name="font-awesome.min.css" hash="feda974a77ea5783b8be673f142b7c88"/></dir><dir name="fonts"><file name="FontAwesome.otf" hash="19231917733e2bcdf257c9be99cdbaf1"/><file name="fontawesome-webfont.eot" hash="7149833697a959306ec3012a8588dcfa"/><file name="fontawesome-webfont.svg" hash="65bcbc899f379216109acd0b6c494618"/><file name="fontawesome-webfont.ttf" hash="c4668ed2440df82d3fd2f8be9d31d07d"/><file name="fontawesome-webfont.woff" hash="d95d6f5d5ab7cfefd09651800b69bd54"/></dir><dir name="less"><file name="bordered-pulled.less" hash="5b3f3e1353ea7ab9d10fd7598fbd214b"/><file name="core.less" hash="b5507859b83e01561e0b171a1a8a21a7"/><file name="fixed-width.less" hash="5e07ec001f8d21bd279c12ee542813f7"/><file name="font-awesome.less" hash="65493b74c9bfb5c6942e61239efdb3de"/><file name="icons.less" hash="2e03dd427613acb1f97eb506bcc24c83"/><file name="larger.less" hash="8cb65280c0f889daf72626c21a7c8628"/><file name="list.less" hash="975571323cf880a4a30601998236b027"/><file name="mixins.less" hash="3a0108713f34ca1fcbe22451585886b5"/><file name="path.less" hash="baaf503b6821b49336f242445bcf26ca"/><file name="rotated-flipped.less" hash="a8476cdc50c264abd11ff59d6a9dd025"/><file name="spinning.less" hash="f7ceb182bd98b795cf0a55e90c518a14"/><file name="stacked.less" hash="518e2b2d263982d2caa1e6514b4b4eac"/><file name="variables.less" hash="d40d1e811702269d6aa862070b652a34"/></dir><dir name="scss"><file name="_bordered-pulled.scss" hash="e4f85472a1f6ed0e23a473b8e00ef071"/><file name="_core.scss" hash="5a0ac797103875112d48b5d51f0dc71d"/><file name="_fixed-width.scss" hash="9277ab6964a434d499873687b00be906"/><file name="_icons.scss" hash="18308d3f72183aaad1047e3e4200f7ba"/><file name="_larger.scss" hash="e95931566f6fc6ad5685c4fa9802e206"/><file name="_list.scss" hash="7107e80b053928271d5fcf422dc29490"/><file name="_mixins.scss" hash="e0baf3cfd00f9ba22126d3dfbacbce22"/><file name="_path.scss" hash="ac2a848f68cffed328272615bfca2500"/><file name="_rotated-flipped.scss" hash="9f5d4bc6fadea89328d2aac26574a9d8"/><file name="_spinning.scss" hash="7dcbea35ea3ee2f576354daeb510ab33"/><file name="_stacked.scss" hash="5594237226aedfbca2fa1c7f4604c214"/><file name="_variables.scss" hash="259f90841b8ddd08055d42737acaae95"/><file name="font-awesome.scss" hash="6adfa5c642be301ec4af882faa5cecbf"/></dir></dir><file name="iwd-active.css" hash="d4bcaacba357815d4b985d4b179e897a"/><file name="iwd-disable.css" hash="d06d6e5bc4ce0444c59b506ea8dc737b"/><file name="lato-font.css" hash="9c379db05b96f1b617a482bec1168151"/><file name="oauth-simple.css" hash="3da633ac3800b0d5a9501e089202c760"/><file name="open-sans-font.css" hash="4491bb143adcc947d66c60626e4f2afa"/><file name="print.css" hash="0931bba935b423c1e1866b4e586de88e"/><file name="raleway-font.css" hash="17c6cc32ad89359046d8717b44fa2bec"/><file name="responsive.css" hash="457952de03515e9600986ee744ae07a0"/><file name="roboto-font.css" hash="e5ccdc6ff699061e49da5e768937e1eb"/><file name="styles-blue.css" hash="e66b1a674374de3534d5a61ff4e95174"/><file name="styles-green.css" hash="238e7e68e352f9e100ab309cbaf6f085"/><file name="styles-ie.css" hash="fd54c1025b9de3cea9002e1d6d8efdaf"/><file name="styles.css" hash="d893c807aafd4c5413708955d8fd2bde"/><file name="widgets.css" hash="e755828e5680da2e27edecbeafe553fc"/></dir><file name="favicon.ico" hash="88733ee53676a47fc354a61c32516e82"/><dir name="images"><file name="arrow_carusel.jpg" hash="a5c4b8b509a145c21faa5e58183bc6be"/><file name="bkg_rating-blue.png" hash="480db23df8c7d9093015ce1bd1cf2cba"/><file name="bkg_rating-green.png" hash="0d5c5d47eafabb985d90b2dc743c74da"/><file name="bkg_rating-red.png" hash="c05e2f061a0e1875b5fb2407a04770b9"/><file name="cart.png" hash="5264089f8398835f5dca1c163fc95c3d"/><dir name="catalog"><dir name="product"><dir name="placeholder"><file name="image.jpg" hash="7f8ec531ce4e8be7caa9a588c738877e"/><file name="small_image.jpg" hash="262c03da4f05f6ee86e047d9778def87"/><file name="thumbnail.jpg" hash="b2b682d28a08a748a73d2cda70ab5a57"/></dir></dir></dir><file name="circle-blue.png" hash="65773c811f4c62d6667dfdf7a2dd2877"/><file name="circle-green.png" hash="698c895a69ea60fe3ef1ef93d4866948"/><file name="circle-red.png" hash="b67de6802e947790ec65fd490f02578f"/><file name="crsl-image.png" hash="8e59a2012a223eb15a1afcfe2c7d3e35"/><file name="eye.png" hash="b567c4baa4a8425776926e2abdd14ab8"/><file name="grid-blue.png" hash="739d05993cea3fd85583b36f5f2c119e"/><file name="grid-green.png" hash="82c9ab7b1a399af6f2e03cb1b8e7c807"/><file name="grid-n.png" hash="7764b9c1bf94004090cc2f8611d33050"/><file name="grid-red.png" hash="ec02f3ceb42a746bb6c38ed009d56ce4"/><file name="grid_n.png" hash="29e6511c2dc11d1c037ce4254396804b"/><file name="i_arrow-top-blue.png" hash="5441b4366fd88c1c0c3b5d2736345bf6"/><file name="i_arrow-top-green.png" hash="246caf560443a978c27fecc925c10603"/><file name="i_arrow-top-red.png" hash="379b1b38f91341b02d052a93a502b3c8"/><file name="i_asc_arrow-blue.png" hash="68467d21a9f0b13fa4d804cb0c8c8e84"/><file name="i_asc_arrow-green.png" hash="dfed1d9a748b196ddbb3b2eab31f5082"/><file name="i_asc_arrow-red.png" hash="6ccb0fb4d457c213e790ca00b7c32684"/><file name="i_desc_arrow-blue.png" hash="62556aa312de052608ee732b5843c2e5"/><file name="i_desc_arrow-green.png" hash="3644e8ff707a8bbdc38d72de3d075b9d"/><file name="i_desc_arrow-red.png" hash="215c5f24b6da79fdc4887902dc447f2c"/><file name="i_desc_arrow.png" hash="e1249e34c9e8a674cef5f1ad1da9942f"/><file name="i_desc_arrow_blue.png" hash="b7a4b20427275af7dd073b693ae3c4de"/><file name="i_desc_arrow_red.png" hash="215c5f24b6da79fdc4887902dc447f2c"/><file name="list-blue.png" hash="bc24a5e4aa7637bd9578184fa35650fd"/><file name="list-green.png" hash="a2ac891fdaace534a17269bbc373dd31"/><file name="list-n.png" hash="db6eb32375cbfdee7286844e7d79fd8e"/><file name="list-red.png" hash="444ee7d3a2c2a1193e65fc5306174f2d"/><file name="list_n.png" hash="db6eb32375cbfdee7286844e7d79fd8e"/><file name="logo.gif" hash="a5d68b996e99cb00fdb4124300e40229"/><file name="logo.png" hash="23bf05fabed0fc1ee42590c3ae794f99"/><dir name="media"><file name="logo.png" hash="d471a234abeb63aaff96ea6fb61ccf70"/></dir><file name="mgcommerce-logo.png" hash="7d81b1ccb16fe0efc1387deabea5203d"/><file name="pager_arrow_left-blue.gif" hash="6366e610644e71410554315b3fcca373"/><file name="pager_arrow_left-green.gif" hash="17c9f0070a4a3fb19120a598ede3b9b7"/><file name="pager_arrow_left-red.gif" hash="be12af073dd071ccb1303fd1b577dd58"/><file name="pager_arrow_right-blue.gif" hash="666a5bab4b321f6d1b0053a50d4f0524"/><file name="pager_arrow_right-green.gif" hash="7ce157678c4f7918a3f489149591ac04"/><file name="pager_arrow_right-red.gif" hash="cd8605d7ff3f69fb29b800a0ab234950"/><file name="plus-blue.png" hash="d3e7343e3877228315f3d4590bfdde6a"/><file name="plus-green.png" hash="04823d1d33ab7aaec84ea103e072e09f"/><file name="plus-red.png" hash="3529bb7de7aa3f8545c12ab7b5cee248"/><file name="plus.png" hash="a139600f7d032a4ccfc43ebd958b54af"/><file name="search_button.png" hash="0290f655516bc71dfa2c4f22d3f85062"/><dir name="sliderimages"><file name="Thumbs.db" hash="e6d40648c0045112d0496c7dd1f7e01a"/><file name="blue-bg.jpg" hash="f0187dda4a5b7ec45950e8e548c9960e"/><file name="blue-bg2.jpg" hash="98fa36280e983f9f26f84019c5b43983"/><file name="circles.png" hash="58a987b184bb886368fcfcae7c86ce80"/><file name="green-bg.jpg" hash="bfbadeb4e484c464c168d067edd81097"/><file name="green-bg2.jpg" hash="ae914f03228a1956f94803812115f6f5"/><file name="left.png" hash="fd70aa066331f1549915005e22d7a9d1"/><file name="red-bg.jpg" hash="403bec66472fa0e92a0db30e29816a09"/><file name="red-bg2.jpg" hash="dfa4a5756b61bd05d49a8acffea0d602"/><file name="right.png" hash="14a440a0fdd9ba41c9f3ab0baeec058e"/><file name="sample_transitions.js" hash="1f65b36db3d6ced91e21ce24fb04b3c2"/></dir><file name="wish.png" hash="cfe8dcd3f8aa6d1c9ae3bd60804fb781"/><dir name="xmlconnect"><dir name="catalog"><dir name="category"><dir name="placeholder"><file name="image.jpg" hash="097ab8a3051bc037ea3de0e17f440540"/><file name="small_image.jpg" hash="f825d16f97a640453553c79c48ebaa73"/><file name="thumbnail.jpg" hash="b2b682d28a08a748a73d2cda70ab5a57"/></dir></dir></dir></dir></dir><dir name="js"><file name="custom.js" hash="cf16a7d1dd8168cf18173e79a20660ae"/><dir name="fancybox"><file name="Thumbs.db" hash="46cb90ca1e3dd98d22dfeb9eaea914a6"/><file name="blank.gif" hash="325472601571f31e1bf00674c368d335"/><file name="fancybox_loading.gif" hash="328cc0f6c78211485058d460e80f4fa8"/><file name="fancybox_loading@2x.gif" hash="f92938639fa894a0e8ded1c3368abe98"/><file name="fancybox_overlay.png" hash="77aeaa52715b898b73c74d68c630330e"/><file name="fancybox_sprite.png" hash="783d4031fe50c3d83c960911e1fbc705"/><file name="fancybox_sprite@2x.png" hash="ed9970ce22242421e66ff150aa97fe5f"/><dir name="helpers"><file name="fancybox_buttons.png" hash="b448080f8615e664b7788c7003803b59"/><file name="jquery.fancybox-buttons.css" hash="cac75538c2e3ddfadef839feaca8e356"/><file name="jquery.fancybox-buttons.js" hash="f53c246661fb995a3f12e67fa38e0fa0"/><file name="jquery.fancybox-media.js" hash="c017067f48d97ec4a077ccdf056e6a2e"/><file name="jquery.fancybox-thumbs.css" hash="52ddd84a9f42c1d4cd86d518a7f7e8bc"/><file name="jquery.fancybox-thumbs.js" hash="cf1fc1df534eede4cb460c5cbd71aba6"/></dir><file name="jquery.fancybox.css" hash="6c55951ce1e3115711f63f99b7501f3a"/><file name="jquery.fancybox.js" hash="921e9cb04ad6e2559869ec845c5be39b"/><file name="jquery.fancybox.pack.js" hash="cc9e759f24ba773aeef8a131889d3728"/></dir><file name="ie6.js" hash="5dbfb553bbaab5ef71ecf92ea81b7a59"/><file name="jquery.flexisel.js" hash="e2b1e9926a23e002e3283df45e47ee8b"/><file name="jquery.selectric.min.js" hash="30882566d7242c3140968156b5873c56"/><dir name="layerslider"><dir name="css"><file name="blank.gif" hash="76084e29cb2cf72b320e888edc583dfb"/><file name="layerslider.css" hash="cff418c08f8f6c03660f90e791beddb5"/></dir><dir name="js"><file name="greensock.js" hash="37b8cf3e6997604340964adb3462b76d"/><file name="jquery.js" hash="994b732780279e0c6431465beeaad782"/><file name="layerslider.kreaturamedia.jquery.js" hash="15d2411ac58e00b29bfc552ab6428f54"/><file name="layerslider.transitions.js" hash="33f82fea7aa75721d82fc3cec6d48690"/></dir><dir name="skins"><dir name="borderlessdark"><file name="loading.gif" hash="e82577eeffcfdbb0ee0b96210a4c9afd"/><file name="nothumb.png" hash="575f8a12504e09d515edc26a0fe5eece"/><file name="shadow.png" hash="35a1002c529afb496b5642e8a9b35466"/><file name="skin.css" hash="81f75d27f86e83b442572e9660983df8"/><file name="skin.png" hash="dfc9e677df11103054c1c043ff52a4a9"/></dir><dir name="borderlessdark3d"><file name="loading.gif" hash="e32ddf7c031699fc4f43ce30a9d57c39"/><file name="nothumb.png" hash="4fb095d42325d69e33f9e08620db283a"/><file name="shadow.png" hash="dfc1373cfdc6bcc673ad236d9482cf39"/><file name="skin.css" hash="6c937a06bcac530ed839dc9659891a69"/><file name="skin.png" hash="744e435ecd2a7513fa1cf1e586ecd14a"/></dir><dir name="borderlesslight"><file name="loading.gif" hash="4f31acc6c5e9aa3e15d9e8a2475c5f55"/><file name="nothumb.png" hash="4fb095d42325d69e33f9e08620db283a"/><file name="shadow.png" hash="35a1002c529afb496b5642e8a9b35466"/><file name="skin.css" hash="2473f57f10bd6f0774e269cc7f48154d"/><file name="skin.png" hash="dd7e700c6895505621f0fea9d13dc46e"/></dir><dir name="borderlesslight3d"><file name="loading.gif" hash="4f31acc6c5e9aa3e15d9e8a2475c5f55"/><file name="nothumb.png" hash="4fb095d42325d69e33f9e08620db283a"/><file name="shadow.png" hash="dfc1373cfdc6bcc673ad236d9482cf39"/><file name="skin.css" hash="c08f1c979ba318c785ce9e108a81a0f5"/><file name="skin.png" hash="50031e6021412aa36c2bd19a317c1071"/></dir><dir name="carousel"><file name="loading.gif" hash="4f31acc6c5e9aa3e15d9e8a2475c5f55"/><file name="nothumb.png" hash="4fb095d42325d69e33f9e08620db283a"/><file name="skin.css" hash="86e04178853cbcb48b2804584b607d2d"/><file name="skin.png" hash="2168ddf8139d2f6e4bfaf5f0288b8137"/></dir><dir name="darkskin"><file name="loading.gif" hash="e32ddf7c031699fc4f43ce30a9d57c39"/><file name="nothumb.png" hash="575f8a12504e09d515edc26a0fe5eece"/><file name="skin.css" hash="7aa8160d6a51a6644ce5c94b5455683d"/><file name="skin.png" hash="d9ec414f3779a5dc5654403f3c59a7ea"/></dir><dir name="defaultskin"><file name="loading.gif" hash="088b0fa7c6f5ef8a6f0c838999b4a2de"/><file name="nothumb.png" hash="4fb095d42325d69e33f9e08620db283a"/><file name="skin.css" hash="43461c47d6853954b7df5663708077c7"/><file name="skin.png" hash="715012a0ceef20b603c81dede7ad5a65"/></dir><dir name="fullwidth"><file name="loading.gif" hash="088b0fa7c6f5ef8a6f0c838999b4a2de"/><file name="nothumb.png" hash="4fb095d42325d69e33f9e08620db283a"/><file name="skin.css" hash="b3f8dbdbfa285ce58cf629f72e93c2ed"/><file name="skin.png" hash="50031e6021412aa36c2bd19a317c1071"/></dir><dir name="fullwidthdark"><file name="loading.gif" hash="e32ddf7c031699fc4f43ce30a9d57c39"/><file name="nothumb.png" hash="4fb095d42325d69e33f9e08620db283a"/><file name="skin.css" hash="77f91e85513a68c68363ea8f5ce49046"/><file name="skin.png" hash="c2a9f34b086952c71cb599618fc928ba"/></dir><dir name="glass"><file name="loading.gif" hash="088b0fa7c6f5ef8a6f0c838999b4a2de"/><file name="nothumb.png" hash="4fb095d42325d69e33f9e08620db283a"/><file name="shadow.png" hash="7feecb2e0fe23274fe6a0bda004680fe"/><file name="skin.css" hash="bc481392c81acab1393f11f7736923d0"/><file name="skin.png" hash="a52d3924867a503e3a191affd35af3ce"/></dir><dir name="lightskin"><file name="loading.gif" hash="088b0fa7c6f5ef8a6f0c838999b4a2de"/><file name="nothumb.png" hash="4fb095d42325d69e33f9e08620db283a"/><file name="skin.css" hash="76dd2fcd0e9a152ac268a844249e03b3"/><file name="skin.png" hash="7a7014b8762c5855d4a973ad44b4115b"/></dir><dir name="minimal"><file name="loading.gif" hash="088b0fa7c6f5ef8a6f0c838999b4a2de"/><file name="nothumb.png" hash="4fb095d42325d69e33f9e08620db283a"/><file name="skin.css" hash="12a92190387c645598e919df09987d4b"/><file name="skin.png" hash="683ce20cf7650bb023a509b2182a183b"/></dir><dir name="noskin"><file name="loading.gif" hash="088b0fa7c6f5ef8a6f0c838999b4a2de"/><file name="nothumb.png" hash="4fb095d42325d69e33f9e08620db283a"/><file name="skin.css" hash="a7490e3bb30033a37d1fe123c5a675e4"/><file name="skin.png" hash="04b2ee7f7f946c9af534a01bf683505f"/></dir><dir name="v5"><file name="loading.gif" hash="088b0fa7c6f5ef8a6f0c838999b4a2de"/><file name="nothumb.png" hash="4fb095d42325d69e33f9e08620db283a"/><file name="skin.css" hash="bc97c95ae9fed681515eb45e119fea31"/><file name="skin.png" hash="04ec18a1e23a9b20cde5575245ebead4"/></dir></dir></dir><file name="opcheckout.extended.js" hash="f7a2b2bed8b6b9ad63754e3c983c2e93"/><dir name="owl-carousel"><file name="AjaxLoader.gif" hash="5b8b06c052cac80413d62e5c45f9f37b"/><file name="Thumbs.db" hash="a222d71aeade05d901cd99b0008ce598"/><file name="grabbing.png" hash="d817e1dba5bd5d891d0504bf1715807b"/><file name="local.xml" hash="80c96926d01be45cfa492d204f945a00"/><file name="owl.carousel.css" hash="b51416af9e8adbe3d16f5f2526aba221"/><file name="owl.carousel.js" hash="a7f535ea24c4c9cf5f01ac9322634f58"/><file name="owl.carousel.min.js" hash="ffaa3c82ad2c6e216e68aca44746e1be"/><file name="owl.theme.css" hash="f23cf727e4fcca9a5470658da5e755c9"/><file name="owl.transitions.css" hash="b1bdaeac4065bf67a7d7a06213192964"/></dir><file name="responsiveCarousel.js" hash="4f6c26ebf80ceebac90ab073770636ff"/></dir><file name="oauth-simple.css" hash="3da633ac3800b0d5a9501e089202c760"/></dir></dir></dir></target></contents>
|
21 |
<compatible/>
|
22 |
+
<dependencies><required><php><min>5.2.13</min><max>5.6.0</max></php><package><name>Modulesgarden_Base</name><channel>community</channel><min>1.0.0</min><max></max></package></required></dependencies>
|
23 |
</package>
|
skin/frontend/modulesgarden/swifty/css/styles-blue.css
CHANGED
@@ -906,7 +906,7 @@ border-radius: 3px; }
|
|
906 |
#products-list .item .f-fix p { display:block; text-align:right; }
|
907 |
#products-list .item .f-fix .minimal-price { text-align:left; }
|
908 |
|
909 |
-
.products-list li.item { padding:12px 10px; }
|
910 |
.products-list li.item.last { border-bottom:0; }
|
911 |
.products-list .product-image { float:left; width:135px; height:135px; margin:0 0 10px; }
|
912 |
.products-list .product-shop { margin-left:150px; }
|
906 |
#products-list .item .f-fix p { display:block; text-align:right; }
|
907 |
#products-list .item .f-fix .minimal-price { text-align:left; }
|
908 |
|
909 |
+
.products-list li.item { padding:12px 10px; position:relative; }
|
910 |
.products-list li.item.last { border-bottom:0; }
|
911 |
.products-list .product-image { float:left; width:135px; height:135px; margin:0 0 10px; }
|
912 |
.products-list .product-shop { margin-left:150px; }
|
skin/frontend/modulesgarden/swifty/css/styles-green.css
CHANGED
@@ -908,7 +908,7 @@ border-radius: 3px; }
|
|
908 |
#products-list .item .f-fix p { display:block; text-align:right; }
|
909 |
#products-list .item .f-fix .minimal-price { text-align:left; }
|
910 |
|
911 |
-
.products-list li.item { padding:12px 10px; }
|
912 |
.products-list li.item.last { border-bottom:0; }
|
913 |
.products-list .product-image { float:left; width:135px; height:135px; margin:0 0 10px; }
|
914 |
.products-list .product-shop { margin-left:150px; }
|
908 |
#products-list .item .f-fix p { display:block; text-align:right; }
|
909 |
#products-list .item .f-fix .minimal-price { text-align:left; }
|
910 |
|
911 |
+
.products-list li.item { padding:12px 10px; position:relative; }
|
912 |
.products-list li.item.last { border-bottom:0; }
|
913 |
.products-list .product-image { float:left; width:135px; height:135px; margin:0 0 10px; }
|
914 |
.products-list .product-shop { margin-left:150px; }
|
skin/frontend/modulesgarden/swifty/css/styles.css
CHANGED
@@ -908,7 +908,7 @@ border-radius: 3px; }
|
|
908 |
#products-list .item .f-fix p { display:block; text-align:right; }
|
909 |
#products-list .item .f-fix .minimal-price { text-align:left; }
|
910 |
|
911 |
-
.products-list li.item { padding:12px 10px; }
|
912 |
.products-list li.item.last { border-bottom:0; }
|
913 |
.products-list .product-image { float:left; width:135px; height:135px; margin:0 0 10px; }
|
914 |
.products-list .product-shop { margin-left:150px; }
|
908 |
#products-list .item .f-fix p { display:block; text-align:right; }
|
909 |
#products-list .item .f-fix .minimal-price { text-align:left; }
|
910 |
|
911 |
+
.products-list li.item { padding:12px 10px; position:relative; }
|
912 |
.products-list li.item.last { border-bottom:0; }
|
913 |
.products-list .product-image { float:left; width:135px; height:135px; margin:0 0 10px; }
|
914 |
.products-list .product-shop { margin-left:150px; }
|
skin/frontend/modulesgarden/swifty/js/custom.js
CHANGED
@@ -65,6 +65,13 @@
|
|
65 |
$('.header ul.links li').find('a[title=Blog]').prepend("<i class='fa fa-book fa-lg'></i>");
|
66 |
$('body.review-product-list').find('.tabNav').remove();
|
67 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
68 |
var $owlFeatures = $('.owl-carousel-features');
|
69 |
|
70 |
$owlFeatures.owlCarousel({
|
65 |
$('.header ul.links li').find('a[title=Blog]').prepend("<i class='fa fa-book fa-lg'></i>");
|
66 |
$('body.review-product-list').find('.tabNav').remove();
|
67 |
|
68 |
+
//whislist rwd
|
69 |
+
var $wishlistTtable = $('#wishlist-table');
|
70 |
+
|
71 |
+
$wishlistTtable.find('td:nth-child(1)').addClass('width-26prer');
|
72 |
+
$wishlistTtable.find('td:nth-child(2)').addClass('width-74prer');
|
73 |
+
$wishlistTtable.find('td:nth-child(3)').addClass('width-85prer');
|
74 |
+
|
75 |
var $owlFeatures = $('.owl-carousel-features');
|
76 |
|
77 |
$owlFeatures.owlCarousel({
|
skin/frontend/modulesgarden/swifty/js/opcheckout.extended.js
ADDED
@@ -0,0 +1,35 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
/**
|
2 |
+
* Magento
|
3 |
+
*
|
4 |
+
* NOTICE OF LICENSE
|
5 |
+
*
|
6 |
+
* This source file is subject to the Academic Free License (AFL 3.0)
|
7 |
+
* that is bundled with this package in the file LICENSE_AFL.txt.
|
8 |
+
* It is also available through the world-wide-web at this URL:
|
9 |
+
* http://opensource.org/licenses/afl-3.0.php
|
10 |
+
* If you did not receive a copy of the license and are unable to
|
11 |
+
* obtain it through the world-wide-web, please send an email
|
12 |
+
* to license@magentocommerce.com so we can send you a copy immediately.
|
13 |
+
*
|
14 |
+
* DISCLAIMER
|
15 |
+
*
|
16 |
+
* Do not edit or add to this file if you wish to upgrade Magento to newer
|
17 |
+
* versions in the future. If you wish to customize Magento for your
|
18 |
+
* needs please refer to http://www.magentocommerce.com for more information.
|
19 |
+
*
|
20 |
+
* @category design
|
21 |
+
* @package base_default
|
22 |
+
* @copyright Copyright (c) 2014 Magento Inc. (http://www.magentocommerce.com)
|
23 |
+
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
24 |
+
*/
|
25 |
+
|
26 |
+
Checkout.prototype.setLoadWaiting = Checkout.prototype.setLoadWaiting.wrap(function(parentMethod, step, keepDisabled) {
|
27 |
+
if(step) {
|
28 |
+
$(step+'-buttons-container').select('button').invoke('hide');
|
29 |
+
}
|
30 |
+
else if (this.loadWaiting && ! keepDisabled) {
|
31 |
+
$(this.loadWaiting+'-buttons-container').select('button').invoke('show');
|
32 |
+
}
|
33 |
+
|
34 |
+
parentMethod(step, keepDisabled);
|
35 |
+
});
|