forked from pavlickm/seopro
-
Notifications
You must be signed in to change notification settings - Fork 28
/
install.xml
433 lines (408 loc) · 24 KB
/
install.xml
1
2
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
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
<?xml version="1.0" encoding="utf-8"?>
<modification>
<code>seopro-20150125</code>
<name>SeoPro for Opencart v2.x</name>
<version>1.0.2016-01-15</version>
<author>OpencartJazz.com</author>
<link>http://www.opencartjazz.com/ocj-seopro-oc2</link>
<file path="admin/controller/catalog/product.php">
<operation>
<search trim="true" index="0"><![CDATA[
$data['entry_recurring'] = $this->language->get('entry_recurring');
]]></search>
<add position="after" trim="false" offset="0"><![CDATA[
$data['entry_main_category'] = $this->language->get('entry_main_category');
]]></add>
</operation>
<operation>
<search trim="true" index="0"><![CDATA[
$this->load->model('catalog/category');
]]></search>
<add position="after" trim="false" offset="0"><![CDATA[
$categories = $this->model_catalog_category->getAllCategories();
$data['categories'] = $this->getAllCategories($categories);
if (isset($this->request->post['main_category_id'])) {
$data['main_category_id'] = $this->request->post['main_category_id'];
} elseif (isset($product_info)) {
$data['main_category_id'] = $this->model_catalog_product->getProductMainCategoryId($this->request->get['product_id']);
} else {
$data['main_category_id'] = 0;
}
]]></add>
</operation>
<operation>
<search regex="true" limit="1" quote="true"><![CDATA[~ $this->response->setOutput(json_encode($json));
}
~]]></search>
<add><![CDATA[ $this->response->setOutput(json_encode($json));
}
private function getAllCategories($categories, $parent_id = 0, $parent_name = '') {
$output = array();
if (array_key_exists($parent_id, $categories)) {
if ($parent_name != '') {
$parent_name .= $this->language->get('text_separator');
}
foreach ($categories[$parent_id] as $category) {
$output[$category['category_id']] = array(
'category_id' => $category['category_id'],
'name' => $parent_name . $category['name']
);
$output += $this->getAllCategories($categories, $category['category_id'], $parent_name . $category['name']);
}
}
return $output;
}
]]></add>
</operation>
</file>
<file path="admin/controller/setting/setting.php">
<operation>
<search trim="true" index="0"><![CDATA[$data['entry_seo_url'] = $this->language->get('entry_seo_url');]]></search>
<add position="after" trim="false" offset="0"><![CDATA[ $data['entry_seo_url_type'] = $this->language->get('entry_seo_url_type');
$data['entry_seo_url_include_path'] = $this->language->get('entry_seo_url_include_path');
$data['entry_seo_url_postfix'] = $this->language->get('entry_seo_url_postfix');
]]></add>
</operation>
<operation>
<search trim="true" index="0"><![CDATA[$data['help_seo_url'] = $this->language->get('help_seo_url');]]></search>
<add position="after" trim="false" offset="0"><![CDATA[ $data['help_seo_url_include_path'] = $this->language->get('help_seo_url_include_path');
$data['help_seo_url_postfix'] = $this->language->get('help_seo_url_postfix');
]]></add>
</operation>
<operation>
<search trim="true" index="0"><![CDATA[$data['config_seo_url'] = $this->config->get('config_seo_url');]]></search>
<add position="after" trim="false" offset="0"><![CDATA[ }
if (isset($this->request->post['config_seo_url_type'])) {
$data['config_seo_url_type'] = $this->request->post['config_seo_url_type'];
} elseif ($this->config->get('config_seo_url_type')) {
$data['config_seo_url_type'] = $this->config->get('config_seo_url_type');
} else {
$data['config_seo_url_type'] = 'seo_url';
}
$data['seo_types'] = array();
$data['seo_types'][] = array('type' => 'seo_url', 'name' => $this->language->get('text_seo_url'));
$data['seo_types'][] = array('type' => 'seo_pro', 'name' => $this->language->get('text_seo_pro'));
if (isset($this->request->post['config_seo_url_include_path'])) {
$data['config_seo_url_include_path'] = $this->request->post['config_seo_url_include_path'];
} else {
$data['config_seo_url_include_path'] = $this->config->get('config_seo_url_include_path');
}
if (isset($this->request->post['config_seo_url_postfix'])) {
$data['config_seo_url_postfix'] = $this->request->post['config_seo_url_postfix'];
} else {
$data['config_seo_url_postfix'] = $this->config->get('config_seo_url_postfix');
]]></add>
</operation>
</file>
<file path="admin/language/english/catalog/product.php">
<operation>
<search trim="true" index="0"><![CDATA[$_['entry_recurring'] = 'Recurring Profile';]]></search>
<add position="after" trim="false" offset="0"><![CDATA[$_['entry_main_category'] = 'Main Category:';]]></add>
</operation>
</file>
<file path="admin/language/russian/catalog/product.php">
<operation>
<search trim="true" index="0"><![CDATA[$_['entry_recurring']]]></search>
<add position="after" trim="false" offset="0"><![CDATA[$_['entry_main_category'] = 'Главная категория:';]]></add>
</operation>
</file>
<file path="admin/language/ukrainian/catalog/product.php">
<operation>
<search trim="true" index="0"><![CDATA[$_['entry_recurring']]]></search>
<add position="after" trim="false" offset="0"><![CDATA[$_['entry_main_category'] = 'Головна категорія:';]]></add>
</operation>
</file>
<file path="admin/language/uk_UA/catalog/product.php">
<operation>
<search trim="true" index="0"><![CDATA[$_['entry_recurring']]]></search>
<add position="after" trim="false" offset="0"><![CDATA[$_['entry_main_category'] = 'Головна категорія:';]]></add>
</operation>
</file>
<file path="admin/language/english/setting/setting.php">
<operation>
<search trim="true" index="0"><![CDATA[$_['text_smtp'] = 'SMTP';]]></search>
<add position="after" trim="false" offset="0"><![CDATA[$_['text_seo_url'] = 'Default';
$_['text_seo_pro'] = 'SeoPro';]]></add>
</operation>
<operation>
<search trim="true" index="0"><![CDATA[$_['entry_seo_url'] = 'Use SEO URLs';]]></search>
<add position="after" trim="false" offset="0"><![CDATA[$_['entry_seo_url_type'] = 'SEO URL type';
$_['entry_seo_url_include_path'] = 'SEO URL for product with categories';
$_['entry_seo_url_postfix'] = 'SEO URL ending';]]></add>
</operation>
<operation>
<search trim="true" index="0"><![CDATA[$_['help_seo_url']]]></search>
<add position="after" trim="false" offset="0"><![CDATA[$_['help_seo_url_include_path'] = 'SEO URL format: <b>/category/subcategory/product</b> (only for SeoPro)';
$_['help_seo_url_postfix'] = 'SEO URL extension, such as <b>.html</b> (only for SeoPro)';]]></add>
</operation>
</file>
<file path="admin/language/russian/setting/setting.php">
<operation>
<search trim="true" index="0"><![CDATA[$_['text_smtp']]]></search>
<add position="after" trim="false" offset="0"><![CDATA[$_['text_seo_url'] = 'Стандартный Seo_Url';
$_['text_seo_pro'] = 'SeoPro';]]></add>
</operation>
<operation>
<search trim="true" index="0"><![CDATA[$_['entry_seo_url']]]></search>
<add position="after" trim="false" offset="0"><![CDATA[$_['entry_seo_url_type'] = 'Тип SEO URL';
$_['entry_seo_url_include_path'] = 'SEO URL для товаров включают категории';
$_['entry_seo_url_postfix'] = 'Окончание SEO URL';]]></add>
</operation>
<operation>
<search trim="true" index="0"><![CDATA[$_['help_seo_url']]]></search>
<add position="after" trim="false" offset="0"><![CDATA[$_['help_seo_url_include_path'] = 'Формат SEO URL: <b>/category/subcategory/product</b> (только для SeoPro)';
$_['help_seo_url_postfix'] = 'Окончание SEO URL, например <b>.html</b> (только для SeoPro)';]]></add>
</operation>
</file>
<file path="admin/language/ukrainian/setting/setting.php">
<operation>
<search trim="true" index="0"><![CDATA[$_['text_smtp']]]></search>
<add position="after" trim="false" offset="0"><![CDATA[$_['text_seo_url'] = 'Звичайний Seo_Url з Опенкарт';
$_['text_seo_pro'] = 'SeoPro';]]></add>
</operation>
<operation>
<search trim="true" index="0"><![CDATA[$_['entry_seo_url']]]></search>
<add position="after" trim="false" offset="0"><![CDATA[$_['entry_seo_url_type'] = 'Тип SEO URL';
$_['entry_seo_url_include_path'] = 'SEO URL для товарів містить категорії';
$_['entry_seo_url_postfix'] = 'Фінальна частина SEO URL';]]></add>
</operation>
<operation>
<search trim="true" index="0"><![CDATA[$_['help_seo_url']]]></search>
<add position="after" trim="false" offset="0"><![CDATA[$_['help_seo_url_include_path'] = 'Формат SEO URL: <b>/category/subcategory/product</b> (тільки для SeoPro)';
$_['help_seo_url_postfix'] = 'Фінальна частина SEO URL, наприклад <b>.html</b> (тільки для SeoPro)';]]></add>
</operation>
</file>
<file path="admin/model/catalog/category.php">
<operation>
<search trim="true" index="0"><![CDATA[public function getTotalCategoriesByLayoutId($layout_id)]]></search>
<add position="after" trim="false" offset="4"><![CDATA[ public function getCategoriesByParentId($parent_id = 0) {
$query = $this->db->query("SELECT *, (SELECT COUNT(parent_id) FROM " . DB_PREFIX . "category WHERE parent_id = c.category_id) AS children FROM " . DB_PREFIX . "category c LEFT JOIN " . DB_PREFIX . "category_description cd ON (c.category_id = cd.category_id) LEFT JOIN " . DB_PREFIX . "category_to_store c2s ON (c.category_id = c2s.category_id) WHERE c.parent_id = '" . (int)$parent_id . "' AND cd.language_id = '" . (int)$this->config->get('config_language_id') . "' AND c2s.store_id = '" . (int)$this->config->get('config_store_id') . "' ORDER BY c.sort_order, cd.name");
return $query->rows;
}
public function getAllCategories() {
$category_data = $this->cache->get('category.all.' . $this->config->get('config_language_id') . '.' . (int)$this->config->get('config_store_id'));
if (!$category_data || !is_array($category_data)) {
$query = $this->db->query("SELECT * FROM " . DB_PREFIX . "category c LEFT JOIN " . DB_PREFIX . "category_description cd ON (c.category_id = cd.category_id) LEFT JOIN " . DB_PREFIX . "category_to_store c2s ON (c.category_id = c2s.category_id) WHERE cd.language_id = '" . (int)$this->config->get('config_language_id') . "' AND c2s.store_id = '" . (int)$this->config->get('config_store_id') . "' AND c.status = '1' ORDER BY c.parent_id, c.sort_order, cd.name");
$category_data = array();
foreach ($query->rows as $row) {
$category_data[$row['parent_id']][$row['category_id']] = $row;
}
$this->cache->set('category.all.' . $this->config->get('config_language_id') . '.' . (int)$this->config->get('config_store_id'), $category_data);
}
return $category_data;
}]]></add>
</operation>
</file>
<file path="admin/model/catalog/product.php">
<operation>
<search trim="true" index="0"><![CDATA[if (isset($data['product_category'])]]></search>
<add position="after" trim="false" offset="4"><![CDATA[
if (isset($data['main_category_id']) && $data['main_category_id'] > 0) {
$this->db->query("DELETE FROM " . DB_PREFIX . "product_to_category WHERE product_id = '" . (int)$product_id . "' AND category_id = '" . (int)$data['main_category_id'] . "'");
$this->db->query("INSERT INTO " . DB_PREFIX . "product_to_category SET product_id = '" . (int)$product_id . "', category_id = '" . (int)$data['main_category_id'] . "', main_category = 1");
} elseif (isset($data['product_category'][0])) {
$this->db->query("UPDATE " . DB_PREFIX . "product_to_category SET main_category = 1 WHERE product_id = '" . (int)$product_id . "' AND category_id = '" . (int)$data['product_category'][0] . "'");
}]]></add>
</operation>
<operation>
<search trim="true" index="1"><![CDATA[if (isset($data['product_category']))]]></search>
<add position="after" trim="false" offset="4"><![CDATA[
if (isset($data['main_category_id']) && $data['main_category_id'] > 0) {
$this->db->query("DELETE FROM " . DB_PREFIX . "product_to_category WHERE product_id = '" . (int)$product_id . "' AND category_id = '" . (int)$data['main_category_id'] . "'");
$this->db->query("INSERT INTO " . DB_PREFIX . "product_to_category SET product_id = '" . (int)$product_id . "', category_id = '" . (int)$data['main_category_id'] . "', main_category = 1");
} elseif (isset($data['product_category'])) {
$this->db->query("UPDATE " . DB_PREFIX . "product_to_category SET main_category = 1 WHERE product_id = '" . (int)$product_id . "' AND category_id = '" . (int)$data['product_category'][0] . "'");
}]]></add>
</operation>
<operation>
<search trim="true" index="0"><![CDATA[return $product_layout_data;]]></search>
<add position="after" trim="false" offset="1"><![CDATA[
public function getProductMainCategoryId($product_id) {
$query = $this->db->query("SELECT category_id FROM " . DB_PREFIX . "product_to_category WHERE product_id = '" . (int)$product_id . "' AND main_category = '1' LIMIT 1");
return ($query->num_rows ? (int)$query->row['category_id'] : 0);
}]]></add>
</operation>
</file>
<file path="admin/model/openbay/openbay.php">
<operation>
<search trim="true" index="0"><![CDATA[curl_setopt($curl, CURLOPT_RETURNTRANSFER, true)]]></search>
<add position="after" trim="false" offset="0"><![CDATA[ // curl_setopt($curl, CURLOPT_FOLLOWLOCATION, true);
// curl_setopt($curl, CURLOPT_POSTREDIR, 7);]]></add>
</operation>
</file>
<file path="admin/view/template/catalog/product_form.tpl">
<operation>
<search trim="true" index="0"><![CDATA[<input type="hidden" name="manufacturer_id" value="<?php echo $manufacturer_id; ?>" />]]></search>
<add position="after" trim="false" offset="2"><![CDATA[ <div class="form-group">
<label class="col-sm-2 control-label" for="input-main-category-id"><?php echo $entry_main_category; ?></label>
<div class="col-sm-10">
<select name="main_category_id" id="input-main-category-id" class="form-control">
<?php foreach ($product_categories as $category) { ?>
<?php if ($category['category_id'] == $main_category_id) { ?>
<option value="<?php echo $category['category_id']; ?>" selected="selected"><?php echo $category['name']; ?></option>
<?php } else { ?>
<option value="<?php echo $category['category_id']; ?>"><?php echo $category['name']; ?></option>
<?php } ?>
<?php } ?>
</select>
</div>
</div>]]></add>
</operation>
</file>
<file path="admin/view/template/setting/setting.tpl">
<operation>
<search trim="true" index="0"><![CDATA[<input type="radio" name="config_seo_url" value="0" />]]></search>
<add position="after" trim="false" offset="5"><![CDATA[ <div class="form-group">
<label class="col-sm-2 control-label" for="input-seo-url-type"><?php echo $entry_seo_url_type; ?></label>
<div class="col-sm-10">
<select name="config_seo_url_type" id="input-seo-url-type" class="form-control">
<?php foreach ($seo_types as $seo_type) { ?>
<?php if ($seo_type['type'] == $config_seo_url_type) { ?>
<option value="<?php echo $seo_type['type']; ?>" selected="selected"><?php echo $seo_type['name']; ?></option>
<?php } else { ?>
<option value="<?php echo $seo_type['type']; ?>"><?php echo $seo_type['name']; ?></option>
<?php } ?>
<?php } ?>
</select>
</div>
</div>
<div class="form-group">
<label class="col-sm-2 control-label"><span data-toggle="tooltip" title="<?php echo $help_seo_url_include_path; ?>"><?php echo $entry_seo_url_include_path; ?></span></label>
<div class="col-sm-10">
<label class="radio-inline">
<input type="radio" name="config_seo_url_include_path" value="1" <?php echo $config_seo_url_include_path ? 'checked="checked"' : ''; ?>/>
<?php echo $text_yes; ?>
</label>
<label class="radio-inline">
<input type="radio" name="config_seo_url_include_path" value="0" <?php echo !$config_seo_url_include_path ? 'checked="checked"' : ''; ?>/>
<?php echo $text_no; ?>
</label>
</div>
</div>
<div class="form-group">
<label class="col-sm-2 control-label" for="input-seo-url-postfix"><span data-toggle="tooltip" title="<?php echo $help_seo_url_postfix; ?>"><?php echo $entry_seo_url_postfix; ?></span></label>
<div class="col-sm-10">
<input type="text" name="config_seo_url_postfix" value="<?php echo $config_seo_url_postfix; ?>" placeholder="<?php echo $entry_seo_url_postfix; ?>" id="input-seo-url-postfix" class="form-control" />
</div>
</div>]]></add>
</operation>
</file>
<file path="catalog/controller/common/header.php">
<operation>
<search trim="true" index="0"><![CDATA[$data['name'] = $this->config->get('config_name');]]></search>
<add position="after" trim="false" offset="0"><![CDATA[ $data['alter_lang'] = $this->getAlterLanguageLinks($this->document->getLinks());]]></add>
</operation>
<operation>
<search trim="true" index="0"><![CDATA[return $this->load->view('default/template/common/header.tpl', $data);]]></search>
<add position="after" trim="false" offset="2"><![CDATA[
protected function getAlterLanguageLinks($links) {
$result = array();
if ($this->config->get('config_seo_url')) {
foreach($links as $link) {
if($link['rel']=='canonical') {
$url=$link['href'];
$schema = parse_url($url,PHP_URL_SCHEME);
$server = strtolower($schema)=='https' ? HTTPS_SERVER : HTTP_SERVER;
$cur_lang = substr($url, strlen($server),2);
$query = substr($url, strlen($server)+2);
$this->load->model('localisation/language');
$languages = $this->model_localisation_language->getLanguages();
$active_langs = array();
foreach($languages as $lang) {
if($lang['status']) {
$active_langs[]=$lang['code'];
}
}
if(in_array($cur_lang, $active_langs)) {
foreach($active_langs as $lang) {
$result[$lang] = $server.$lang.($query ? $query : '');
}
}
}
}
}
return $result;
}]]></add>
</operation>
</file>
<file path="catalog/controller/common/home.php">
<operation>
<search trim="true" index="0"><![CDATA[$this->document->addLink(HTTP_SERVER, 'canonical');]]></search>
<add position="replace" trim="false" offset="0"><![CDATA[$this->document->addLink($this->url->link('common/home'), 'canonical');]]></add>
</operation>
</file>
<file path="catalog/controller/common/language.php">
<operation>
<search trim="true" index="0"><![CDATA[$data['redirect'] = $this->url->link('common/home');]]></search>
<add position="replace" trim="false" offset="0"><![CDATA[ $data['redirect_route'] = 'common/home';
$data['redirect_query'] = '';
$data['redirect_ssl'] = '';]]></add>
</operation>
<operation>
<search trim="true" index="0"><![CDATA[$data['redirect'] = $this->url->link($route, $url, $this->request->server['HTTPS']);]]></search>
<add position="replace" trim="false" offset="0"><![CDATA[ $data['redirect_route']=$route;
$data['redirect_query']=$url;
$data['redirect_ssl']=$this->request->server['HTTPS'];]]></add>
</operation>
<operation>
<search regex="true" limit="1" quote="true"><![CDATA[~ if (isset($this->request->post['redirect'])) {
$this->response->redirect($this->request->post['redirect']);~]]></search>
<add><![CDATA[ if (isset($this->request->post['redirect_route'])) {
$url = $this->url->link($this->request->post['redirect_route'],
isset($this->request->post['redirect_query']) ? html_entity_decode($this->request->post['redirect_query']) : '',
isset($this->request->post['redirect_ssl']) ? $this->request->post['redirect_ssl'] : '');
$this->response->redirect($url);]]></add>
</operation>
</file>
<file path="catalog/view/theme/default/template/common/header.tpl">
<operation>
<search trim="true" index="0"><![CDATA[<script src="catalog/view/javascript/jquery/jquery-2.1.1.min.js" type="text/javascript"></script>]]></search>
<add position="before" trim="false" offset="0"><![CDATA[<?php foreach ($alter_lang as $lang=>$href) { ?>
<link href="<?php echo $href; ?>" hreflang="<?php echo $lang; ?>" rel="alternate" />
<?php } ?>]]></add>
</operation>
</file>
<file path="catalog/view/theme/default/template/common/language.tpl">
<operation>
<search trim="true" index="0"><![CDATA[<input type="hidden" name="redirect" value="<?php echo $redirect; ?>" />]]></search>
<add position="replace" trim="false" offset="0"><![CDATA[ <input type="hidden" name="redirect_route" value="<?php echo $redirect_route; ?>" />
<input type="hidden" name="redirect_query" value="<?php echo isset($redirect_query) ? $redirect_query : ''; ?>" />
<input type="hidden" name="redirect_ssl" value="<?php echo isset($redirect_ssl) ? $redirect_ssl : ''; ?>" />]]></add>
</operation>
</file>
<file path="catalog/controller/common/home.php">
<operation>
<search regex="true" limit="1" quote="true"><![CDATA[~if (isset($this->request->get['route'])) {
$this->document->addLink($this->url->link('common/home'), 'canonical');
}~]]></search>
<add><![CDATA[$this->document->addLink($this->getCanonical(), 'canonical');]]></add>
</operation>
<operation>
<search trim="true" index="0"><![CDATA[$this->response->setOutput($this->load->view('default/template/common/home.tpl', $data));]]></search>
<add position="after" trim="false" offset="2"><![CDATA[
protected function getCanonical() {
$url = HTTP_SERVER;
if( $this->config->get('config_seo_url')
&& $this->config->get('config_seo_url_type') == 'seo_pro') {
$url = $this->url->link('common/home');
$query = $this->db->query("SELECT value FROM " . DB_PREFIX . "setting WHERE store_id = '" . (int)$this->config->get('config_store_id') . "' AND `key` ='config_language'");
$code = $this->session->data['language'];
// Do not show language code for home when default language is always shown
if( !$this->config->get('ocjazz_seopro_hide_default')
&& $code == $query->row['value'])
{
$component = parse_url($url);
if ($component['scheme'] == 'https') {
$domain = $this->config->get('config_ssl');
} else {
$domain = $this->config->get('config_url');
}
$url = preg_replace('~('.$domain.')('.$code.'/)(.+)~i', '$1$3',$url);
}
}
return $url;
}
]]></add>
</operation>
</file>
</modification>