Version Notes
First stable release
Download this release
Release Info
Developer | Ben Heinkel |
Extension | photoslurp_for_magento |
Version | 1.0.24 |
Comparing to | |
See all releases |
Code changes from version 1.0.23 to 1.0.24
- app/code/community/Photoslurp/PsWidget/Block/Adminhtml/Pswidget/Edit/Tab/Form.php +27 -5
- app/code/community/Photoslurp/PsWidget/Block/Adminhtml/Pswidget/Edit/Tab/Form3.php +5 -0
- app/code/community/Photoslurp/PsWidget/Model/Cron.php +5 -1
- app/code/community/Photoslurp/PsWidget/controllers/Adminhtml/Pswidget/PswidgetController.php +2 -1
- app/code/community/Photoslurp/PsWidget/etc/config.xml +1 -1
- app/code/community/Photoslurp/PsWidget/sql/pswidget_setup/mysql4-upgrade-1.0.23-1.0.24.php +9 -0
- app/design/frontend/base/default/template/pswidget/widget.phtml +7 -5
- js/photoslurp/admin.js +6 -2
- package.xml +4 -4
app/code/community/Photoslurp/PsWidget/Block/Adminhtml/Pswidget/Edit/Tab/Form.php
CHANGED
@@ -172,11 +172,32 @@ class Photoslurp_PsWidget_Block_Adminhtml_Pswidget_Edit_Tab_Form extends Mage_Ad
|
|
172 |
$i++;
|
173 |
};
|
174 |
|
175 |
-
|
176 |
-
|
177 |
-
|
178 |
-
|
179 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
180 |
|
181 |
$i = 0;
|
182 |
foreach($stores as $store){
|
@@ -241,6 +262,7 @@ class Photoslurp_PsWidget_Block_Adminhtml_Pswidget_Edit_Tab_Form extends Mage_Ad
|
|
241 |
$form_data['submit_text_'.$widget_lang_data['id_lang']] = $widget_lang_data['submit_text'];
|
242 |
$form_data['shop_this_look_text_'.$widget_lang_data['id_lang']] = $widget_lang_data['shop_this_look_text'];
|
243 |
$form_data['note_add_pics_text_'.$widget_lang_data['id_lang']] = $widget_lang_data['note_add_pics_text'];
|
|
|
244 |
$values = array_merge($values, $form_data);
|
245 |
}
|
246 |
}
|
172 |
$i++;
|
173 |
};
|
174 |
|
175 |
+
$i = 0;
|
176 |
+
foreach($stores as $store){
|
177 |
+
if ($i == 0) {
|
178 |
+
$fieldset->addField("add_photos_img_".$store->getId(), "text", array(
|
179 |
+
"label" => Mage::helper("pswidget")->__("Add Photos Img"),
|
180 |
+
"name" => "add_photos_img_".$store->getId(),
|
181 |
+
"class" => "add_photos_img",
|
182 |
+
'after_element_html' => '<br><b>['.$store->getCode().']</b>'
|
183 |
+
|
184 |
+
));
|
185 |
+
} else if ($i == $stores_count - 1) {
|
186 |
+
$fieldset->addField("add_photos_img_".$store->getId(), "text", array(
|
187 |
+
"name" => "add_photos_img_".$store->getId(),
|
188 |
+
"class" => "add_photos_img",
|
189 |
+
'after_element_html' => '<br><b>['.$store->getCode().']</b>'. '<br><i>This requires a URL to an image that will be displayed when there are no images yet in a particular album (for example when the productId parameter is used, and there are no photos for particular product yet). A banner inviting users to submit images is recommended to be used here</i>'
|
190 |
+
));
|
191 |
+
}else{
|
192 |
+
$fieldset->addField("add_photos_img_".$store->getId(), "text", array(
|
193 |
+
"name" => "add_photos_img_".$store->getId(),
|
194 |
+
"class" => "add_photos_img",
|
195 |
+
'after_element_html' => '<br><b>['.$store->getCode().']</b>'
|
196 |
+
|
197 |
+
));
|
198 |
+
}
|
199 |
+
$i++;
|
200 |
+
};
|
201 |
|
202 |
$i = 0;
|
203 |
foreach($stores as $store){
|
262 |
$form_data['submit_text_'.$widget_lang_data['id_lang']] = $widget_lang_data['submit_text'];
|
263 |
$form_data['shop_this_look_text_'.$widget_lang_data['id_lang']] = $widget_lang_data['shop_this_look_text'];
|
264 |
$form_data['note_add_pics_text_'.$widget_lang_data['id_lang']] = $widget_lang_data['note_add_pics_text'];
|
265 |
+
$form_data['add_photos_img_'.$widget_lang_data['id_lang']] = $widget_lang_data['add_photos_img'];
|
266 |
$values = array_merge($values, $form_data);
|
267 |
}
|
268 |
}
|
app/code/community/Photoslurp/PsWidget/Block/Adminhtml/Pswidget/Edit/Tab/Form3.php
CHANGED
@@ -185,6 +185,11 @@ class Photoslurp_PsWidget_Block_Adminhtml_Pswidget_Edit_Tab_Form3 extends Mage_A
|
|
185 |
'after_element_html' => '<i>Enter the name of one or more collections to filter results by</i>'
|
186 |
));
|
187 |
|
|
|
|
|
|
|
|
|
|
|
188 |
|
189 |
$fieldset2->addField("additional_params", "textarea", array(
|
190 |
"label" => Mage::helper("pswidget")->__("Additional Params"),
|
185 |
'after_element_html' => '<i>Enter the name of one or more collections to filter results by</i>'
|
186 |
));
|
187 |
|
188 |
+
$fieldset2->addField('cookie_domain', 'text', array(
|
189 |
+
'label' => Mage::helper('pswidget')->__('Cookie Domain'),
|
190 |
+
'name' => 'cookie_domain',
|
191 |
+
'after_element_html' => '<i>If specified all widget cookies will be set on given domain</i>'
|
192 |
+
));
|
193 |
|
194 |
$fieldset2->addField("additional_params", "textarea", array(
|
195 |
"label" => Mage::helper("pswidget")->__("Additional Params"),
|
app/code/community/Photoslurp/PsWidget/Model/Cron.php
CHANGED
@@ -162,7 +162,11 @@ class Photoslurp_PsWidget_Model_Cron{
|
|
162 |
$isProductInStore = in_array($store->getId(), $productStores);
|
163 |
$insertData['title_'.$langcode] = $isProductInStore ? sprintf('"%s"', preg_replace($pattern,$replacement,$args['row']['name_'.$store->getId()])) : '';
|
164 |
$insertData['description_'.$langcode] = $isProductInStore ? sprintf('"%s"', preg_replace($pattern,$replacement,$args['row']['description_'.$store->getId()])) : '';
|
165 |
-
|
|
|
|
|
|
|
|
|
166 |
}
|
167 |
|
168 |
fwrite ($args['fp'], implode($insertData, $this->delimiter) . PHP_EOL);
|
162 |
$isProductInStore = in_array($store->getId(), $productStores);
|
163 |
$insertData['title_'.$langcode] = $isProductInStore ? sprintf('"%s"', preg_replace($pattern,$replacement,$args['row']['name_'.$store->getId()])) : '';
|
164 |
$insertData['description_'.$langcode] = $isProductInStore ? sprintf('"%s"', preg_replace($pattern,$replacement,$args['row']['description_'.$store->getId()])) : '';
|
165 |
+
|
166 |
+
$productUrlSuffix = $this->_productHelper->getProductUrlSuffix($store->getId());
|
167 |
+
if($productUrlSuffix && (strpos($productUrlSuffix, '.') !== 0)) $productUrlSuffix = '.'.$productUrlSuffix;
|
168 |
+
|
169 |
+
$insertData['url_'.$langcode] = $isProductInStore ? $store->getBaseUrl() . $args['row']['url_key_'.$store->getId()].$productUrlSuffix . '?___store=' . $store->getCode() : '';
|
170 |
}
|
171 |
|
172 |
fwrite ($args['fp'], implode($insertData, $this->delimiter) . PHP_EOL);
|
app/code/community/Photoslurp/PsWidget/controllers/Adminhtml/Pswidget/PswidgetController.php
CHANGED
@@ -109,7 +109,8 @@ class Photoslurp_PsWidget_Adminhtml_Pswidget_PswidgetController extends Mage_Adm
|
|
109 |
'cta_button' => $post_data['cta_button_'.$store->getId()],
|
110 |
'load_more_text' => $post_data['load_more_text_'.$store->getId()],
|
111 |
'shop_this_look_text' => $post_data['shop_this_look_text_'.$store->getId()],
|
112 |
-
'note_add_pics_text' => $post_data['note_add_pics_text_'.$store->getId()]
|
|
|
113 |
)
|
114 |
);
|
115 |
}
|
109 |
'cta_button' => $post_data['cta_button_'.$store->getId()],
|
110 |
'load_more_text' => $post_data['load_more_text_'.$store->getId()],
|
111 |
'shop_this_look_text' => $post_data['shop_this_look_text_'.$store->getId()],
|
112 |
+
'note_add_pics_text' => $post_data['note_add_pics_text_'.$store->getId()],
|
113 |
+
'add_photos_img' => $post_data['add_photos_img_'.$store->getId()],
|
114 |
)
|
115 |
);
|
116 |
}
|
app/code/community/Photoslurp/PsWidget/etc/config.xml
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
<config>
|
3 |
<modules>
|
4 |
<Photoslurp_PsWidget>
|
5 |
-
<version>1.0.
|
6 |
</Photoslurp_PsWidget>
|
7 |
</modules>
|
8 |
<default>
|
2 |
<config>
|
3 |
<modules>
|
4 |
<Photoslurp_PsWidget>
|
5 |
+
<version>1.0.24</version>
|
6 |
</Photoslurp_PsWidget>
|
7 |
</modules>
|
8 |
<default>
|
app/code/community/Photoslurp/PsWidget/sql/pswidget_setup/mysql4-upgrade-1.0.23-1.0.24.php
ADDED
@@ -0,0 +1,9 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
$installer = $this;
|
3 |
+
$connection = $installer->getConnection();
|
4 |
+
|
5 |
+
$installer->startSetup();
|
6 |
+
$installer->getConnection()->addColumn($installer->getTable('pswidget/pswidget'), 'cookie_domain', "text NULL");
|
7 |
+
$installer->getConnection()->addColumn($installer->getTable('pswidget/pswidgetlang'), 'add_photos_img', "text NULL");
|
8 |
+
|
9 |
+
$installer->endSetup();
|
app/design/frontend/base/default/template/pswidget/widget.phtml
CHANGED
@@ -54,7 +54,7 @@
|
|
54 |
$_page_limit = $_widget -> getPageLimit();
|
55 |
$_page_type = $_page_types[$_widget -> getPageType()]['label'];
|
56 |
|
57 |
-
$_add_photos_img = $_widget
|
58 |
$_social_icons = $_widget -> getSocialIcons();
|
59 |
$_social_count = $_widget -> getSocialCount();
|
60 |
|
@@ -82,6 +82,7 @@
|
|
82 |
|
83 |
$_additional_params = $_widget -> getAdditionalParams();
|
84 |
$_collections = $_widget -> getCollections();
|
|
|
85 |
|
86 |
|
87 |
//STYLE PARAMETERS
|
@@ -152,7 +153,7 @@
|
|
152 |
submitText: '<?php echo addslashes($_submit_text) ?>',
|
153 |
shopThisLookText:'<?php echo addslashes($_shop_this_look_text) ?>',
|
154 |
autoscrollLimit: <?php echo $_autoscroll_limit ?>,
|
155 |
-
|
156 |
pageType: '<?php echo $_page_type ?>',
|
157 |
productId: <?php echo $_product_id_str ?>,
|
158 |
addPhotosImg: '<?php echo $_add_photos_img ?>',
|
@@ -177,11 +178,12 @@ if ($_init_delay) echo $this->__(" initDelay: %s,\n", $_init_delay);
|
|
177 |
if ($_cta_button) echo $this->__(" ctaButton: '%s',\n", addslashes($_cta_button)) ;
|
178 |
if ($_analytics_cookie_ttl) echo $this->__(" analyticsCookieTTL: %s,\n", $_analytics_cookie_ttl) ;
|
179 |
if ($_toc_link) echo $this->__(" tocLink: '%s',\n", addslashes($_toc_link));
|
180 |
-
if ($_submission_form_css_url) echo $this->__("
|
181 |
if ($_visible_products) echo $this->__(" visibleProducts: '%s',\n", $_visible_products);
|
|
|
182 |
|
183 |
$anvanced_enabled = array();
|
184 |
-
if($_enable_ga) $anvanced_enabled[] = '
|
185 |
if($_social_count) $anvanced_enabled[] = 'socialCount';
|
186 |
if($_thumb_overlay) $anvanced_enabled[] = 'thumbOverlay';
|
187 |
if($_varying_thumb_sizes) $anvanced_enabled[] = 'varyingThumbSizes';
|
@@ -267,7 +269,7 @@ foreach ($anvanced_enabled as $item){
|
|
267 |
};
|
268 |
var script = document.createElement('script');
|
269 |
script.async = true;
|
270 |
-
script.src = '//www.photoslurp.com/static/widget/
|
271 |
var entry = document.getElementsByTagName('script')[0];
|
272 |
entry.parentNode.insertBefore(script, entry);
|
273 |
})();
|
54 |
$_page_limit = $_widget -> getPageLimit();
|
55 |
$_page_type = $_page_types[$_widget -> getPageType()]['label'];
|
56 |
|
57 |
+
$_add_photos_img = $this->getLangValue($_widget->getId(),$_store_id,'add_photos_img');
|
58 |
$_social_icons = $_widget -> getSocialIcons();
|
59 |
$_social_count = $_widget -> getSocialCount();
|
60 |
|
82 |
|
83 |
$_additional_params = $_widget -> getAdditionalParams();
|
84 |
$_collections = $_widget -> getCollections();
|
85 |
+
$_cookie_domain = $_widget -> getCookieDomain();
|
86 |
|
87 |
|
88 |
//STYLE PARAMETERS
|
153 |
submitText: '<?php echo addslashes($_submit_text) ?>',
|
154 |
shopThisLookText:'<?php echo addslashes($_shop_this_look_text) ?>',
|
155 |
autoscrollLimit: <?php echo $_autoscroll_limit ?>,
|
156 |
+
page_limit: <?php echo $_page_limit ?>,
|
157 |
pageType: '<?php echo $_page_type ?>',
|
158 |
productId: <?php echo $_product_id_str ?>,
|
159 |
addPhotosImg: '<?php echo $_add_photos_img ?>',
|
178 |
if ($_cta_button) echo $this->__(" ctaButton: '%s',\n", addslashes($_cta_button)) ;
|
179 |
if ($_analytics_cookie_ttl) echo $this->__(" analyticsCookieTTL: %s,\n", $_analytics_cookie_ttl) ;
|
180 |
if ($_toc_link) echo $this->__(" tocLink: '%s',\n", addslashes($_toc_link));
|
181 |
+
if ($_submission_form_css_url) echo $this->__(" submissionformCSSURL: '%s',\n", $_submission_form_css_url) ;
|
182 |
if ($_visible_products) echo $this->__(" visibleProducts: '%s',\n", $_visible_products);
|
183 |
+
if ($_cookie_domain) echo $this->__(" cookieDomain: '%s',\n", addslashes($_cookie_domain));
|
184 |
|
185 |
$anvanced_enabled = array();
|
186 |
+
if($_enable_ga) $anvanced_enabled[] = 'enableGA';
|
187 |
if($_social_count) $anvanced_enabled[] = 'socialCount';
|
188 |
if($_thumb_overlay) $anvanced_enabled[] = 'thumbOverlay';
|
189 |
if($_varying_thumb_sizes) $anvanced_enabled[] = 'varyingThumbSizes';
|
269 |
};
|
270 |
var script = document.createElement('script');
|
271 |
script.async = true;
|
272 |
+
script.src = '//www.photoslurp.com/static/widget/v2/widget_loader.js';
|
273 |
var entry = document.getElementsByTagName('script')[0];
|
274 |
entry.parentNode.insertBefore(script, entry);
|
275 |
})();
|
js/photoslurp/admin.js
CHANGED
@@ -34,10 +34,14 @@ document.observe('dom:loaded', function() {
|
|
34 |
|
35 |
function switchAddPhotosImage (allow_empty){
|
36 |
if (allow_empty == 1) {
|
37 |
-
|
|
|
|
|
38 |
}
|
39 |
else if (allow_empty == 0) {
|
40 |
-
|
|
|
|
|
41 |
}
|
42 |
}
|
43 |
|
34 |
|
35 |
function switchAddPhotosImage (allow_empty){
|
36 |
if (allow_empty == 1) {
|
37 |
+
$$('.add_photos_img').each(function(el) {
|
38 |
+
el.up('tr').show();
|
39 |
+
})
|
40 |
}
|
41 |
else if (allow_empty == 0) {
|
42 |
+
$$('.add_photos_img').each(function(el) {
|
43 |
+
el.up('tr').hide();
|
44 |
+
})
|
45 |
}
|
46 |
}
|
47 |
|
package.xml
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>photoslurp_for_magento</name>
|
4 |
-
<version>1.0.
|
5 |
<stability>stable</stability>
|
6 |
<license>OSL-v3</license>
|
7 |
<channel>community</channel>
|
@@ -25,9 +25,9 @@ Learn more about Photoslurp’s visual commerce and marketing platform at w
|
|
25 |
</description>
|
26 |
<notes>First stable release</notes>
|
27 |
<authors><author><name>Ben Heinkel</name><user>benheinkel</user><email>ben@photoslurp.com</email></author></authors>
|
28 |
-
<date>2017-
|
29 |
-
<time>
|
30 |
-
<contents><target name="magecommunity"><dir name="Photoslurp"><dir name="PsWidget"><dir name="Block"><dir name="Adminhtml"><file name="PsWidgetbackend.php" hash="b0b408f4f1073b2aed8f39df3c0d9d7c"/><dir name="Pswidget"><dir name="Edit"><file name="Form.php" hash="07056712bfb2df959976073610745765"/><dir name="Tab"><file name="Form.php" hash="
|
31 |
<compatible/>
|
32 |
<dependencies><required><php><min>5.2.0</min><max>7.0.0</max></php></required></dependencies>
|
33 |
</package>
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>photoslurp_for_magento</name>
|
4 |
+
<version>1.0.24</version>
|
5 |
<stability>stable</stability>
|
6 |
<license>OSL-v3</license>
|
7 |
<channel>community</channel>
|
25 |
</description>
|
26 |
<notes>First stable release</notes>
|
27 |
<authors><author><name>Ben Heinkel</name><user>benheinkel</user><email>ben@photoslurp.com</email></author></authors>
|
28 |
+
<date>2017-04-04</date>
|
29 |
+
<time>13:49:18</time>
|
30 |
+
<contents><target name="magecommunity"><dir name="Photoslurp"><dir name="PsWidget"><dir name="Block"><dir name="Adminhtml"><file name="PsWidgetbackend.php" hash="b0b408f4f1073b2aed8f39df3c0d9d7c"/><dir name="Pswidget"><dir name="Edit"><file name="Form.php" hash="07056712bfb2df959976073610745765"/><dir name="Tab"><file name="Form.php" hash="8a02818e2b8e28aea613e6c3d3b650f5"/><file name="Form1.php" hash="50898da40c8a990d8a5e619d6045f220"/><file name="Form2.php" hash="1e92b67f6378787f5e0065fa59596cae"/><file name="Form3.php" hash="b99ac02a6939bb42a8fbbc96ee5b5f90"/></dir><file name="Tabs.php" hash="5dbfd05fa55c50acbe54834c26dc97b1"/></dir><file name="Edit.php" hash="b333a1cf1ca6aaac74df4ef91cd51e75"/><file name="Grid.php" hash="a6776b5283ac806f3f520307b49886ee"/></dir><file name="Pswidget.php" hash="ae5c762b95a3620c863014ead2c51fa9"/></dir><file name="Widget.php" hash="cdb9316fb49a3b386dd8653ae9bab10d"/></dir><dir name="Helper"><file name="Data.php" hash="17803c49800b8107cfe0c9dde2dad7c8"/></dir><dir name="Model"><file name="Cron.php" hash="8634109090eb32142677af5b89a64fad"/><dir name="Mysql4"><dir name="Pswidget"><file name="Collection.php" hash="ee7e2a99a9e6c38ff163878514cac4b4"/></dir><file name="Pswidget.php" hash="547b6cc9aa1172d7671c0978cc48af0d"/><dir name="Pswidgetlang"><file name="Collection.php" hash="4570b57b1392c018f3bb22747eddd026"/></dir><file name="Pswidgetlang.php" hash="d1569f8430700adbc5489a4770d81672"/></dir><file name="Pswidget.php" hash="c963bd2ffa02f7e97894e3cadc974ad5"/><file name="Pswidgetlang.php" hash="9a40bda5f3695b8725283d3095558c2e"/><dir name="Source"><file name="Export.php" hash="203d9c552e3a0e8b829d13ca83b44fa6"/><file name="Store.php" hash="1f20d8f385d0fabaca4b3af5cd3924c6"/></dir></dir><dir name="controllers"><dir name="Adminhtml"><dir name="Pswidget"><file name="PswidgetController.php" hash="7f395e4e0238a72a11a107ff0433a93b"/><file name="PswidgetbackendController.php" hash="db19f4de2bba7974148df71f9461c031"/></dir></dir></dir><dir name="etc"><file name="adminhtml.xml" hash="edcf078f0341d62edb7513350fd0c9a7"/><file name="config.xml" hash="a94331a5d8e471620b2389c982a973d8"/><file name="system.xml" hash="303d0134618b143e81ed8daa7171e911"/></dir><dir name="sql"><dir name="pswidget_setup"><file name="mysql4-install-1.0.0.php" hash="0a7842e9b9d63ca47b69e4fb838216f9"/><file name="mysql4-upgrade-1.0.0-1.0.1.php" hash="58a54f4673f2d3adaa99d257c5a12123"/><file name="mysql4-upgrade-1.0.1-1.0.2.php" hash="4f8d333b80208a1d2274b212d571ef13"/><file name="mysql4-upgrade-1.0.10-1.0.11.php" hash="27a8126cd27372a57d37342e9baff14e"/><file name="mysql4-upgrade-1.0.17-1.0.18.php" hash="adbb0ea0357d1a55d8004d18bf6b34d4"/><file name="mysql4-upgrade-1.0.2-1.0.3.php" hash="26da4479c7dd5c7438bb6493ed13bbc9"/><file name="mysql4-upgrade-1.0.21-1.0.22.php" hash="4eb1a7b1657bc66aeeaa447639582993"/><file name="mysql4-upgrade-1.0.23-1.0.24.php" hash="b86117d2db849466f666851bde50723c"/><file name="mysql4-upgrade-1.0.4-1.0.5.php" hash="974aeac2421feaf1875eff5202c01f71"/><file name="mysql4-upgrade-1.0.5-1.0.6.php" hash="76e05edf7eef2702df21ad463983d129"/><file name="mysql4-upgrade-1.0.6-1.0.7.php" hash="f41bf19ff684ba4cefbba479022d82cc"/><file name="mysql4-upgrade-1.0.8-1.0.9.php" hash="80469dfc31ac50b80c82264e3a5b21e8"/></dir></dir></dir></dir></target><target name="magedesign"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="layout"><file name="pswidget.xml" hash="fcbd9b296b1a153c1cdbdc39cb79eeec"/></dir><dir name="template"><dir name="pswidget"><file name="pswidgetbackend.phtml" hash="384a53871152aa8495f83f940ecac9f7"/></dir></dir></dir></dir></dir><dir name="frontend"><dir name="base"><dir name="default"><dir name="layout"><file name="pswidget.xml" hash="fb35c29a3fa177282a438f53ad8c377d"/></dir><dir name="template"><dir name="pswidget"><file name="style.phtml" hash="7fbdab2088119db02ebaa0d36d526b14"/><file name="tracking.phtml" hash="db0b2a3e0c7ce48dd0a348e1672e0559"/><file name="widget.phtml" hash="96b6c9c36cf8ee6d904bb66fa2467d74"/></dir></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Photoslurp_PsWidget.xml" hash="d7596ef6fa89cd0424cdb8cae80a2910"/></dir></target><target name="mageweb"><dir name="js"><dir name="photoslurp"><file name="admin.js" hash="de32022ef0b9a76e3a0c76d3735f2d1c"/></dir></dir></target></contents>
|
31 |
<compatible/>
|
32 |
<dependencies><required><php><min>5.2.0</min><max>7.0.0</max></php></required></dependencies>
|
33 |
</package>
|