forked from rouled/oa_features
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoa_features.php
450 lines (406 loc) · 14.2 KB
/
oa_features.php
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
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
<?php
/**
* 2017 Open agence
*
* @author Open agence <[email protected]>
* @copyright 2017 Open agence
* @license You only can use module, For any request send an e-mail!
*/
if (!defined('_PS_VERSION_')) {
exit;
}
class Oa_Features extends Module
{
/**
* OA_Features constructor.
*/
public function __construct()
{
$this->name = 'oa_features';
$this->tab = 'front_office_features';
$this->version = '1.0.0';
$this->author = 'Open agence';
$this->need_instance = 0;
$this->secure_key = Tools::encrypt($this->name);
$this->bootstrap = true;
parent::__construct();
$this->displayName = $this->l('Feature value image');
$this->description = $this->l('Assign image to feature value');
}
/**
* Install function
*
* @return bool
*/
public function install()
{
if (false == parent::install()
|| !$this->registerHook('displayHeader')
|| !$this->registerHook('actionAdminFeaturesControllerSaveAfter')
|| !$this->registerHook('actionFeatureValueDelete')
|| !$this->registerHook('displayProductListReviews')
|| !$this->registerHook('displayRightColumnProduct')
|| !$this->registerHook('displayFeatureValueForm')
|| !$this->registerHook('displayReassurance')
|| !$this->registerHook('displayProductPriceBlock')
|| !Configuration::updateValue('OA_FEATURE_PICTO_WIDTH', 32)
|| !Configuration::updateValue('OA_FEATURE_PICTO_HEIGHT', 32)
) {
return false;
}
return true;
}
/**
* Uninstall function
*
* @return mixed
*/
public function uninstall()
{
/* remove the configuration variable */
Configuration::deleteByName('OA_FEATURE_PICTO_WIDTH');
Configuration::deleteByName('OA_FEATURE_PICTO_HEIGHT');
return parent::uninstall();
}
/**
* Configuration content
*
* @return string
*/
public function getContent()
{
if (((bool)Tools::isSubmit('submitOA_FeaturesModule')) == true) {
$this->postProcess();
}
$this->context->smarty->assign('module_dir', $this->_path);
$output = $this->context->smarty->fetch($this->local_path . 'views/templates/admin/configure.tpl');
return $this->renderForm() . $output;
}
/**
* Save form data.
*
* @return null
*/
protected function postProcess()
{
$form_values = $this->getConfigFormValues();
foreach (array_keys($form_values) as $key) {
Configuration::updateValue($key, Tools::getValue($key));
}
}
/**
* Set values for the inputs.
*
* @return array
*/
protected function getConfigFormValues()
{
return array(
'OA_FEATURE_PICTO_WIDTH' => Configuration::get('OA_FEATURE_PICTO_WIDTH'),
'OA_FEATURE_PICTO_HEIGHT' => Configuration::get('OA_FEATURE_PICTO_HEIGHT')
);
}
/**
* Create the form that will be displayed in the configuration.
*
* @return mixed
*/
protected function renderForm()
{
$helper = new HelperForm();
$helper->show_toolbar = false;
$helper->table = $this->table;
$helper->module = $this;
$helper->default_form_language = $this->context->language->id;
$helper->allow_employee_form_lang = Configuration::get('PS_BO_ALLOW_EMPLOYEE_FORM_LANG', 0);
$helper->identifier = $this->identifier;
$helper->submit_action = 'submitOA_FeaturesModule';
$helper->currentIndex = $this->context->link->getAdminLink('AdminModules', false)
. '&configure=' . $this->name . '&tab_module=' . $this->tab . '&module_name=' . $this->name;
$helper->token = Tools::getAdminTokenLite('AdminModules');
$helper->tpl_vars = array(
'fields_value' => $this->getConfigFormValues(), /* Add values for your inputs */
'languages' => $this->context->controller->getLanguages(),
'id_language' => $this->context->language->id,
);
return $helper->generateForm(array($this->getConfigForm()));
}
/**
* Create the structure of your form.
*
* @return array
*/
protected function getConfigForm()
{
return array(
'form' => array(
'legend' => array(
'title' => $this->l('Settings'),
'icon' => 'icon-cogs',
),
'input' => array(
array(
'type' => 'text',
'label' => $this->l('Width'),
'name' => 'OA_FEATURE_PICTO_WIDTH',
'col' => 3,
'desc' => $this->l('Width of picto'),
),
array(
'type' => 'text',
'label' => $this->l('Height'),
'name' => 'OA_FEATURE_PICTO_HEIGHT',
'col' => 3,
'desc' => $this->l('Height of picto'),
),
),
'submit' => array(
'title' => $this->l('Save'),
),
),
);
}
/**
* Hook display Header.
*
* @return null
*/
public function hookDisplayHeader()
{
if (_PS_VERSION_ >= '1.7.0.0') {
$this->context->controller->registerStylesheet('modules-oa_features',
'modules/' . $this->name . '/views/css/oa_features.css', ['media' => 'all', 'priority' => 150]);
} else {
$this->context->controller->addCSS(($this->_path) . 'views/css/oa_features.css', 'all');
}
}
/**
* Hook display FeatureValueForm.
*
* @param $params
*
* @return mixed
*/
public function hookDisplayFeatureValueForm($params)
{
$this->context->smarty->assign(
array(
'id_feature_value' => $params['id_feature_value'],
'featurePicto' => $this->getFeaturePicto($params['id_feature_value']),
'url_global' => _MODULE_DIR_ . $this->name . '/ajax.php',
)
);
return $this->display(__FILE__, 'feature-form.tpl');
}
/**
* Get feature picto
*
* @param int $id_feature
*
* @return bool|string
*/
public function getFeaturePicto($id_feature)
{
if (empty($id_feature)) {
return false;
}
if (file_exists(_PS_MODULE_DIR_ . $this->name . '/img/' . (int)$id_feature . '.jpg')) {
return _MODULE_DIR_ . $this->name . '/img/' . (int)$id_feature . '-default.jpg';
} else {
return false;
}
}
/**
* Hook action AdminFeaturesControllerSaveAfter
*
* @param $params
*
* @return null
*/
public function hookActionAdminFeaturesControllerSaveAfter($params)
{
/* Resize, cut and optimize image */
$maxUplodFile = 10;
if ((!empty($params['return']->id)) && !empty($_FILES['filename']) && is_uploaded_file($_FILES['filename']['tmp_name'])) {
$ext = pathinfo($_FILES['filename']['name'], PATHINFO_EXTENSION);
if (!in_array(Tools::strtolower($ext), array('png', 'jpg', 'gif'))) {
Tools::displayError('You can add image file only !');
} elseif ($_FILES['filename']['size'] > ($maxUplodFile * 1024 * 1024)) {
Tools::displayError(
sprintf(
$this->l('The file is too heavy.'),
($maxUplodFile * 1024),
number_format(($_FILES['filename']['size'] / 1024), 2, '.', '')
)
);
} else {
$res = ImageManager::resize($_FILES['filename']['tmp_name'],
_PS_MODULE_DIR_ . $this->name . '/img/' . (int)$params['return']->id . '.jpg');
$res .= ImageManager::resize($_FILES['filename']['tmp_name'],
_PS_MODULE_DIR_ . $this->name . '/img/' . (int)$params['return']->id . '-default.jpg',
Configuration::get('OA_FEATURE_PICTO_WIDTH'), Configuration::get('OA_FEATURE_PICTO_HEIGHT'));
if (!$res) {
$this->errors[] = Tools::displayError('Unable to resize one or more of your pictures.');
}
}
}
}
/**
* Hook action feature value delete
*
* @param $params
*/
public function hookActionFeatureValueDelete($params)
{
$this->deletePicto($params['id_feature_value']);
}
/**
* Delete picto
*
* @param $id_feature
*/
public function deletePicto($id_feature)
{
if (file_exists(_PS_MODULE_DIR_ . $this->name . '/img/' . $id_feature . '.jpg')) {
unlink(_PS_MODULE_DIR_ . $this->name . '/img/' . $id_feature . '.jpg');
}
if (file_exists(_PS_MODULE_DIR_ . $this->name . '/img/' . $id_feature . '-default.jpg')) {
unlink(_PS_MODULE_DIR_ . $this->name . '/img/' . $id_feature . '-default.jpg');
}
}
/**
* Hook display ProductListReviews
* @param $params
*
* @return mixed
*/
public function hookDisplayProductListReviews($params)
{
$this->context->smarty->assign(
array(
'oaPictoWidth' => Configuration::get('OA_FEATURE_PICTO_WIDTH'),
'oaPictoHeight' => Configuration::get('OA_FEATURE_PICTO_HEIGHT'),
'oaFeatures' => $this->getProductFeatures((int)Context::getContext()->language->id,
(int)$params['product']['id_product'], true)
)
);
return $this->display(__FILE__, 'product-listing.tpl');
}
/**
* Get product features
*
* @param int $id_lang
* @param int $id_product
* @param bool $only_image
*
* @return array|bool
*/
public function getProductFeatures($id_lang, $id_product, $only_image = false)
{
$features = $this->getFrontFeatures($id_lang, $id_product);
if ($features) {
$onlyImage = true;
$featuresTab = array();
foreach ($features as $feature) {
$image = $this->getFeaturePicto($feature['id_feature_value']);
if (($onlyImage || $only_image) && empty($image)) {
continue;
}
if (!empty($feature['value'])) {
$featuresTab[$feature['id_feature']]['name'] = $feature['name'];
$featuresTab[$feature['id_feature']]['values'][] = array(
'value' => $feature['value'],
'image' => $image
);
}
}
return $featuresTab;
}
return false;
}
/**
* Get front features
*
* @param int $id_lang
* @param int $id_product
*
* @return array|false|mysqli_result|null|PDOStatement|resource
*/
public function getFrontFeatures($id_lang, $id_product)
{
return Db::getInstance(_PS_USE_SQL_SLAVE_)->ExecuteS(
'SELECT fl.name, fvl.value, fp.id_feature, fvl.id_feature_value
FROM ' . _DB_PREFIX_ . 'feature_product fp
LEFT JOIN ' . _DB_PREFIX_ . 'feature_lang fl ON (fl.id_feature = fp.id_feature AND fl.id_lang = ' . (int)$id_lang . ')
LEFT JOIN ' . _DB_PREFIX_ . 'feature_value_lang fvl ON (fvl.id_feature_value = fp.id_feature_value AND fvl.id_lang = ' . (int)$id_lang . ')
LEFT JOIN ' . _DB_PREFIX_ . 'feature f ON (f.id_feature = fp.id_feature AND fl.id_lang = ' . (int)$id_lang . ')
' . Shop::addSqlAssociation('feature', 'f') . '
WHERE fp.id_product = ' . (int)$id_product
);
}
/**
* Hook display ProductListReviews
*
* @param $params
*
* @return mixed
*/
public function hookDisplayProductPriceBlock($params)
{
if (_PS_VERSION_ >= '1.7.0.0') {
if ($params['type'] == 'weight') {
$this->context->smarty->assign(
array(
'oaPictoWidth' => Configuration::get('OA_FEATURE_PICTO_WIDTH'),
'oaPictoHeight' => Configuration::get('OA_FEATURE_PICTO_HEIGHT'),
'oaFeatures' => $this->getProductFeatures((int)Context::getContext()->language->id,
(int)$params['product']['id_product'], true)
)
);
return $this->fetch('module:oa_features/views/templates/hook/product-listing.tpl');
}
}
}
/**
* Hook display RightColumnProduct
*
* @return bool
*/
public function hookDisplayRightColumnProduct()
{
if (!($productId = Tools::getValue('id_product'))) {
return false;
}
$this->context->smarty->assign(
array(
'oaPictoWidth' => Configuration::get('OA_FEATURE_PICTO_WIDTH'),
'oaPictoHeight' => Configuration::get('OA_FEATURE_PICTO_HEIGHT'),
'oaFeatures' => $this->getProductFeatures((int)Context::getContext()->language->id, (int)$productId,
true)
)
);
return $this->display(__FILE__, 'product-extra.tpl');
}
/**
* Hook display Reassurance.
*
* @return bool
*/
public function hookDisplayReassurance()
{
if (_PS_VERSION_ >= '1.7.0.0') {
if (!($productId = Tools::getValue('id_product'))) {
return false;
}
$this->context->smarty->assign(
array(
'oaPictoWidth' => Configuration::get('OA_FEATURE_PICTO_WIDTH'),
'oaPictoHeight' => Configuration::get('OA_FEATURE_PICTO_HEIGHT'),
'oaFeatures' => $this->getProductFeatures((int)Context::getContext()->language->id, (int)$productId,
true)
)
);
return $this->fetch('module:oa_features/views/templates/hook/product-extra.tpl');
}
}
}