-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathstatsmodule.php
786 lines (740 loc) · 31.6 KB
/
statsmodule.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
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
<?php
/**
* Copyright (C) 2017-2024 thirty bees
* Copyright (C) 2007-2016 PrestaShop SA
*
* thirty bees is an extension to the PrestaShop software by PrestaShop SA.
*
* NOTICE OF LICENSE
*
* This source file is subject to the Academic Free License (AFL 3.0)
* that is bundled with this package in the file LICENSE.md.
* It is also available through the world-wide-web at this URL:
* https://opensource.org/licenses/afl-3.0.php
* If you did not receive a copy of the license and are unable to
* obtain it through the world-wide-web, please send an email
* to [email protected] so we can send you a copy immediately.
*
* @author thirty bees <[email protected]>
* @author PrestaShop SA <[email protected]>
* @copyright 2017-2024 thirty bees
* @copyright 2007-2016 PrestaShop SA
* @license Academic Free License (AFL 3.0)
* PrestaShop is an internationally registered trademark of PrestaShop SA.
*/
use Thirtybees\StatsModule\Utils;
if (!defined('_TB_VERSION_')) {
exit;
}
require_once __DIR__ . '/src/Utils.php';
require_once __DIR__ . '/src/ProductSalesView.php';
class StatsModule extends ModuleStats
{
const TYPE_GRID = 'Grid';
const TYPE_GRAPH = 'Graph';
const TYPE_CUSTOM = 'Custom';
/**
* @var Utils
*/
protected $utils;
/**
* @var string Grid|Graph|Custom
*/
protected $type;
/**
* @var string[]
*/
public $modules = [
'pagesnotfound',
'statsbestcategories',
'statsbestcustomers',
'statsbestmanufacturers',
'statsbestproducts',
'statsbestsuppliers',
'statsbestvouchers',
'statscarrier',
'statscatalog',
'statscheckup',
'statsequipment',
'statsforecast',
'statsgroups',
'statslive',
'statsnewsletter',
'statsordersprofit',
'statsorigin',
'statspersonalinfos',
'statsproduct',
'statsproductsprofit',
'statsregistrations',
'statssales',
'statssearch',
'statsstock',
'statsshopassociation',
'statsvisits',
];
/**
* @throws PrestaShopException
*/
public function __construct()
{
$this->name = 'statsmodule';
$this->tab = 'analytics_stats';
$this->version = '2.7.0';
$this->author = 'thirty bees';
$this->need_instance = 0;
$this->bootstrap = true;
parent::__construct();
$this->displayName = $this->l('Statistics Module');
$this->description = $this->l('Adds several statistics to the shop.');
$this->tb_versions_compliancy = '> 1.5.0';
$this->tb_min_version = '1.5.1';
$this->utils = new Utils($this);
}
/**
* Install this module
*
* @return bool
* @throws PrestaShopException
*/
public function install()
{
if (!parent::install()) {
return false;
}
$this->registerHook('search');
$this->registerHook('top');
$this->registerHook('AdminStatsModules');
if (!defined('TB_INSTALLATION_IN_PROGRESS') || !TB_INSTALLATION_IN_PROGRESS) {
$this->unregisterStatsModuleHooks();
}
// statscheckup
$confs = [
'CHECKUP_DESCRIPTIONS_LT' => 100,
'CHECKUP_DESCRIPTIONS_GT' => 400,
'CHECKUP_IMAGES_LT' => 1,
'CHECKUP_IMAGES_GT' => 2,
'CHECKUP_SALES_LT' => 1,
'CHECKUP_SALES_GT' => 2,
'CHECKUP_STOCK_LT' => 1,
'CHECKUP_STOCK_GT' => 3,
];
foreach ($confs as $confname => $confdefault) {
if (!Configuration::get($confname)) {
Configuration::updateValue($confname, (int)$confdefault);
}
}
// Search Engine Keywords
Configuration::updateValue('SEK_MIN_OCCURENCES', 1);
Configuration::updateValue('SEK_FILTER_KW', '');
Db::getInstance()->execute(
'CREATE TABLE IF NOT EXISTS `' . _DB_PREFIX_ . 'pagenotfound` (
id_pagenotfound INTEGER UNSIGNED NOT NULL AUTO_INCREMENT,
id_shop INTEGER UNSIGNED NOT NULL DEFAULT \'1\',
id_shop_group INTEGER UNSIGNED NOT NULL DEFAULT \'1\',
request_uri VARCHAR(256) NOT NULL,
http_referer VARCHAR(256) NOT NULL,
date_add DATETIME NOT NULL,
PRIMARY KEY(id_pagenotfound),
INDEX (`date_add`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;'
);
Db::getInstance()->execute('
CREATE TABLE IF NOT EXISTS `' . _DB_PREFIX_ . 'statssearch` (
id_statssearch INTEGER UNSIGNED NOT NULL AUTO_INCREMENT,
id_shop INTEGER UNSIGNED NOT NULL DEFAULT \'1\',
id_shop_group INTEGER UNSIGNED NOT NULL DEFAULT \'1\',
keywords VARCHAR(255) NOT NULL,
results INT(6) NOT NULL DEFAULT 0,
date_add DATETIME NOT NULL,
PRIMARY KEY(id_statssearch)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4');
return true;
}
/**
* @return array|array[]
*/
public function getStatsModulesList()
{
return array_map(function ($module) {
return ['name' => $module];
}, $this->modules);
}
/**
* @param string $moduleName
* @param bool $hook
*
* @return StatsModule|string
* @throws PrestaShopException
*/
public function executeStatsInstance($moduleName, $hook = false)
{
$module = $this->getSubmoduleInstance($moduleName);
if ($hook) {
return $module->hookAdminStatsModules();
} else {
return $module;
}
}
/**
* @param string $moduleName
*
* @return StatsModule
*/
protected function getSubmoduleInstance($moduleName)
{
require_once(dirname(__FILE__) . '/stats/' . $moduleName . '.php');
return new $moduleName();
}
/**
* @param array $params
*
* @return string
* @throws PrestaShopException
*/
protected function engine($params)
{
switch ($this->type) {
case static::TYPE_GRAPH:
return $this->engineGraph($params);
case static::TYPE_GRID:
return $this->engineGrid($params);
}
throw new PrestaShopException("Cant generate statis: invalid type");
}
/**
* @param int $layers
*
* @return void
*/
protected function getData($layers)
{
}
/**
* @return string
*
* @throws PrestaShopException
*/
public function hookAdminStatsModules()
{
throw new PrestaShopException('Stat submodule must implement hookAdminStatsModules() method');
}
/**
* @return void
*/
public function render()
{
$this->_render->render();
}
/**
* @param array $params
*
* @return void
* @throws PrestaShopException
*/
public function hookSearch($params)
{
$sql = 'INSERT INTO `' . _DB_PREFIX_ . 'statssearch` (`id_shop`, `id_shop_group`, `keywords`, `results`, `date_add`)
VALUES (' . (int)$this->context->shop->id . ', ' . (int)$this->context->shop->id_shop_group . ', \'' . pSQL($params['expr']) . '\', ' . (int)$params['total'] . ', NOW())';
Db::getInstance()->execute($sql);
}
/**
* @param array $params Module params
*
* @return void
* @throws PrestaShopException
*/
public function hookTop($params)
{
$uri = $_SERVER['REQUEST_URI'] ?? '';
$referer = $_SERVER['HTTP_REFERER'] ?? '';
$controller = $this->context->controller;
// track page not found
if (Validate::isUrl($uri) && get_class($controller) === 'PageNotFoundController') {
if (empty($referer) || Validate::isAbsoluteUrl($referer)) {
Db::getInstance()->insert('pagenotfound', [
'request_uri' => pSQL($uri),
'http_referer' => pSQL($referer),
'date_add' => date('Y-m-d H:I:s'),
'id_shop' => (int)$this->context->shop->id,
'id_shop_group' => (int)$this->context->shop->id_shop_group
]);
}
}
}
/**
* Unregister module from hook
*
* @return bool result
*
* @throws PrestaShopException
* @since 1.0.0
* @version 1.0.0 Initial version
*/
public function unregisterStatsModuleHooks()
{
// Get hook id if a name is given as argument
$hookName = 'displayAdminStatsModules';
$hookId = Hook::getIdByName($hookName);
$result = true;
foreach ($this->modules as $moduleName) {
Hook::exec('actionModuleUnRegisterHookBefore', ['object' => $this, 'hook_name' => $hookName]);
// Unregister module on hook by id
$result = Db::getInstance()->delete(
'hook_module',
'`id_module` = ' . (int)Module::getModuleIdByName($moduleName) . ' AND `id_hook` = ' . (int)$hookId
) && $result;
// Clean modules position
$this->cleanPositions($hookId);
Hook::exec('actionModuleUnRegisterHookAfter', ['object' => $this, 'hook_name' => $hookName]);
}
return $result;
}
/**
* @param array $datas
*
* @return void
* @throws PrestaShopException
*/
protected function csvExport($datas)
{
switch ($this->type) {
case static::TYPE_GRID:
$this->csvExportGrid($datas);
return;
case static::TYPE_GRAPH:
$this->csvExportGraph($datas);
return;
case static::TYPE_CUSTOM:
throw new PrestaShopException("Custom types do not support csv export");
}
throw new PrestaShopException("Cant export: invalid type");
}
/**
* No-op implementation
*
* AdminStatsTabController never calls this hook handler for this particular module because of specific exception.
* However, the hook handler must exists
*/
public function hookDisplayAdminStatsModules()
{
}
/**
* @return string
*
* @throws PrestaShopException
* @throws SmartyException
*/
public function getContent()
{
$this->postProcess();
$form = [
'legend' => [
'title' => $this->l('Stats Module configuration'),
'icon' => 'icon-list-alt'
],
'input' => [
[
'type' => 'switch',
'label' => $this->l('Category filter with path'),
'name' => Utils::CONFIG_CAT_NAME_WITH_PATH,
'hint' => $this->l('If enabled, category filter will show full path to category. Otherwise, only category name will be displayed'),
'required' => false,
'class' => 't',
'is_bool' => true,
'values' => [
[
'id' => 'active_on',
'value' => 1,
],
[
'id' => 'active_off',
'value' => 0,
],
],
]
],
'submit' => [
'title' => $this->l('Save'),
],
];
$fieldsValues[Utils::CONFIG_CAT_NAME_WITH_PATH] = $this->utils->categoryNameIncludesPath();
/** @var AdminModulesController $controller */
$controller = $this->context->controller;
$helper = new HelperForm();
$helper->module = $this;
$helper->name_controller = 'statsmodule';
$helper->identifier = $this->identifier;
$helper->token = Tools::getAdminTokenLite('AdminModules');
$helper->languages = $controller->getLanguages();
$helper->currentIndex = AdminController::$currentIndex . '&configure=' . $this->name;
$helper->default_form_language = $controller->default_form_language;
$helper->allow_employee_form_lang = $controller->allow_employee_form_lang;
$helper->toolbar_scroll = true;
$helper->title = $this->l('Stats Module configuration');
$helper->submit_action = 'submit'.$this->name;
$helper->fields_value = $fieldsValues;
return $helper->generateForm([[ 'form' => $form ]]);
}
/**
* Save form data.
*
* @return void
* @throws PrestaShopException
* @since 1.0.0
*/
protected function postProcess()
{
if (Tools::isSubmit('submit'.$this->name)) {
Configuration::updateValue(Utils::CONFIG_CAT_NAME_WITH_PATH, (int)Tools::getValue(Utils::CONFIG_CAT_NAME_WITH_PATH, 0));
}
}
}
/**
* Submodule translations
* This has to be present to support submodule translation
*
* $this->l('%d keyword matches your query.')
* $this->l('%d keywords match your query.')
* $this->l('(1 purchase / %d visits)')
* $this->l('-- No filter --')
* $this->l('0-18')
* $this->l('18-24')
* $this->l('25-34')
* $this->l('35-49')
* $this->l('404 errors')
* $this->l('50-59')
* $this->l('60+')
* $this->l('A 404 error is an HTTP error code which means that the file requested by the user cannot be found. In your case it means that one of your visitors entered a wrong URL in the address bar, or that you or another website has a dead link. When possible, the referrer is shown so you can find the page/site which contains the dead link. If not, it generally means that it is a direct access, so someone may have bookmarked a link which doesn\'t exist anymore.')
* $this->l('A partner who has agreed to a link exchange in order to attract new customers.')
* $this->l('A referrer also enables you to know which keywords visitors use in search engines when browsing for your online store.')
* $this->l('A referrer can be:')
* $this->l('A significant increase or decrease in customer registration shows that there has probably been a change to your shop. With that in mind, we suggest that you identify the cause, correct the issue and get back in the business of making money!')
* $this->l('A simple statistical calculation lets you know the monetary value of your visitors:')
* $this->l('A user requesting a page which doesn\'t exist will be redirected to the following page: %s. This module logs access to this page.')
* $this->l('A visit corresponds to an internet user coming to your shop, and until the end of their session, only one visit is counted.')
* $this->l('A visitor is an unknown person who has not registered or logged into your store. A visitor can also be considered a person who has visited your shop multiple times.')
* $this->l('About order statuses')
* $this->l('Accounts')
* $this->l('Active')
* $this->l('Add or remove an IP address.')
* $this->l('After choosing a category and selecting a product, informational graphs will appear.')
* $this->l('Age range')
* $this->l('Age ranges allow you to better understand target demographics.')
* $this->l('All countries')
* $this->l('All')
* $this->l('Alright')
* $this->l('An advertising campaign can attract an increased number of visitors to your online store. This will likely be followed by an increase in customer accounts and profit margins, which will depend on customer "quality." Well-targeted advertising is typically more effective than large-scale advertising... and it\'s cheaper too!')
* $this->l('An empty record-set was returned.')
* $this->l('And min occurrences')
* $this->l('Apply')
* $this->l('Attribute distribution')
* $this->l('Attribute sales distribution')
* $this->l('Attribute')
* $this->l('Attributes')
* $this->l('Available quantities')
* $this->l('Available quantity for sale')
* $this->l('Average cart value')
* $this->l('Average number of images:')
* $this->l('Average number of page visits:')
* $this->l('Average number of purchases:')
* $this->l('Average price (base price):')
* $this->l('Average price')
* $this->l('Average')
* $this->l('Bad')
* $this->l('Best categories')
* $this->l('Best customers')
* $this->l('Best manufacturers')
* $this->l('Best suppliers')
* $this->l('Best vouchers')
* $this->l('Best-selling products')
* $this->l('Both')
* $this->l('Both:')
* $this->l('Bought items')
* $this->l('Browsers and operating systems')
* $this->l('CSV Export')
* $this->l('Cannot find any keywords that have been searched for more than once.')
* $this->l('Carrier distribution')
* $this->l('Carts')
* $this->l('Catalog evaluation')
* $this->l('Catalog statistics')
* $this->l('Category distribution')
* $this->l('Category')
* $this->l('Choose a category')
* $this->l('Click on a product to access its statistics!')
* $this->l('Code')
* $this->l('Configuration updated')
* $this->l('Contacting a group of clients by email or newsletter.')
* $this->l('Conversion rate')
* $this->l('Conversion rate*:')
* $this->l('Conversion')
* $this->l('Cost')
* $this->l('Costs')
* $this->l('Counter')
* $this->l('Country distribution allows you to analyze which part of the World your customers are shopping from.')
* $this->l('Country distribution')
* $this->l('Cross selling')
* $this->l('Currency distribution')
* $this->l('Currency range allows you to determine which currency your customers are using.')
* $this->l('Currency')
* $this->l('Current online customers')
* $this->l('Current online visitors')
* $this->l('Current page')
* $this->l('Customer ID')
* $this->l('Customer accounts')
* $this->l('Customer registrations:')
* $this->l('Customer')
* $this->l('Daily')
* $this->l('Date')
* $this->l('Defines the average conversion rate for the product page. It is possible to purchase a product without viewing the product page, so this rate can be greater than 1.')
* $this->l('Defining your target audience is essential when choosing the right tools to win them over.')
* $this->l('Desc.')
* $this->l('Descriptions')
* $this->l('Design and user-friendliness are more important than ever in the world of online sales. An ill-chosen or hard-to-follow graphical theme can keep shoppers at bay. This means that you should aspire to find the right balance between beauty and functionality for your online store.')
* $this->l('Details')
* $this->l('Determine the interest of a visit')
* $this->l('Develop clients\' loyalty')
* $this->l('Direct link')
* $this->l('Direct links only')
* $this->l('Discount')
* $this->l('Display final level categories only (that have no child categories)')
* $this->l('Displaying %1$s of %2$s')
* $this->l('Displaying products from order ID %s')
* $this->l('Edit / View')
* $this->l('Edit')
* $this->l('Email')
* $this->l('Empty ALL "pages not found" notices for this period')
* $this->l('Empty ALL "pages not found" notices')
* $this->l('Empty database')
* $this->l('Empty record set returned')
* $this->l('Empty recordset returned')
* $this->l('Empty recordset returned.')
* $this->l('Evaluation of available quantities for sale')
* $this->l('Female')
* $this->l('Filter by keyword')
* $this->l('Filter')
* $this->l('First Name')
* $this->l('Forecast')
* $this->l('Full carts')
* $this->l('Social titles distribution allows you to determine the percentage of social titles used by shoppers on your store.')
* $this->l('Social titles distribution')
* $this->l('Global')
* $this->l('Good')
* $this->l('Greater than')
* $this->l('Group')
* $this->l('Growth')
* $this->l('Guest ID')
* $this->l('Guide')
* $this->l('Here is a summary of what may affect the creation of customer accounts:')
* $this->l('How does it work?')
* $this->l('How to act on the registrations\' evolution?')
* $this->l('How to catch these errors?')
* $this->l('ID')
* $this->l('IMPORTANT NOTE: in September 2013, Google chose to encrypt its searches queries using SSL. This means all the referer-based tools in the World (including this one) cannot identify Google keywords anymore.')
* $this->l('IP')
* $this->l('Identify external search engine keywords')
* $this->l('Identifying the most popular keywords entered by your new visitors allows you to see the products you should put in front if you want to achieve better visibility in search engines.')
* $this->l('If this is the case, congratulations, your website is well planned and pleasing. Glad to see that you\'ve been paying attention.')
* $this->l('If you let your shop run without changing anything, the number of customer registrations should stay stable or show a slight decline.')
* $this->l('If you notice that a product is often purchased but viewed infrequently, you should display it more prominently in your Front Office.')
* $this->l('If your webhost supports .htaccess files, you can create one in the root directory of PrestaShop and insert the following line inside: "%s".')
* $this->l('Images available:')
* $this->l('Images')
* $this->l('In order for each message to have an impact, you need to know who it is being addressed to. ')
* $this->l('In order to achieve this goal, you can organize:')
* $this->l('In the tab, we break down the 10 most popular referral websites that bring customers to your online store.')
* $this->l('In your Back Office, you can modify the following order statuses: Awaiting Check Payment, Payment Accepted, Preparation in Progress, Shipping, Delivered, Canceled, Refund, Payment Error, Out of Stock, and Awaiting Bank Wire Payment.')
* $this->l('Indicates the percentage of each operating system used by customers.')
* $this->l('Indicates the percentage of each web browser used by customers.')
* $this->l('Invoice Date')
* $this->l('Invoice Number')
* $this->l('It is best to limit an action to a group -- or to groups -- of clients.')
* $this->l('Item')
* $this->l('Items in pack')
* $this->l('Items total')
* $this->l('Keeping a client can be more profitable than gaining a new one. That is one of the many reasons it is necessary to cultivate customer loyalty.')
* $this->l('Keywords')
* $this->l('Language distribution allows you to analyze the browsing language used by your customers.')
* $this->l('Language distribution')
* $this->l('Language')
* $this->l('Last Name')
* $this->l('Last activity')
* $this->l('Launching targeted advertisement campaigns.')
* $this->l('Less than')
* $this->l('Maintenance IPs are excluded from the online visitors.')
* $this->l('Making sure that your website is accessible to as many people as possible')
* $this->l('Male')
* $this->l('Members per group')
* $this->l('Module')
* $this->l('Money spent')
* $this->l('Monthly')
* $this->l('Name')
* $this->l('Newsletter statistics')
* $this->l('Newsletter')
* $this->l('No "page not found" issue registered for now.')
* $this->l('No customers have registered yet.')
* $this->l('No keywords')
* $this->l('No orders for this period.')
* $this->l('No product was found.')
* $this->l('No valid orders have been received for this period.')
* $this->l('None')
* $this->l('Not enough')
* $this->l('Notice')
* $this->l('Number of customer accounts created')
* $this->l('Number of purchases compared to number of views')
* $this->l('Number of visitors who placed an order directly after registration:')
* $this->l('Number of visitors who stopped at the registering step:')
* $this->l('Number of visits and unique visitors')
* $this->l('Occurrences')
* $this->l('On average, each registered visitor places an order for this amount:')
* $this->l('On average, each visitor places an order for this amount:')
* $this->l('On the other hand, if a product has many views but is not often purchased, we advise you to check or modify this product\'s information, description and photography again, see if you can find something better.')
* $this->l('Only valid orders are graphically represented.')
* $this->l('Operating system used')
* $this->l('Order ID')
* $this->l('Order by')
* $this->l('Order')
* $this->l('Orders Profit')
* $this->l('Orders placed')
* $this->l('Orders placed:')
* $this->l('Orders')
* $this->l('Origin')
* $this->l('Others')
* $this->l('Otherwise, the conclusion is not so simple. The problem can be aesthetic or ergonomic. It is also possible that many visitors have mistakenly visited your URL without possessing a particular interest in your shop. This strange and ever-confusing phenomenon is most likely cause by search engines. If this is the case, you should consider revising your SEO structure.')
* $this->l('Page views')
* $this->l('Page')
* $this->l('Pages not found')
* $this->l('Paid')
* $this->l('Payment distribution')
* $this->l('Percentage of orders listed by carrier.')
* $this->l('Percentage of orders per status.')
* $this->l('Percentage of orders')
* $this->l('Percentage of products sold')
* $this->l('Percentage of registrations')
* $this->l('Percentage of sales')
* $this->l('Percentage')
* $this->l('Placed orders')
* $this->l('Plugins')
* $this->l('Popularity')
* $this->l('Price sold')
* $this->l('Price')
* $this->l('Price*')
* $this->l('Product ID')
* $this->l('Product details')
* $this->l('Product name')
* $this->l('Product pages viewed:')
* $this->l('Product reference')
* $this->l('Products available')
* $this->l('Products available:')
* $this->l('Products bought')
* $this->l('Products bought:')
* $this->l('Products never purchased')
* $this->l('Products never purchased:')
* $this->l('Products never viewed:')
* $this->l('Products profit')
* $this->l('Products sold')
* $this->l('Products:')
* $this->l('Profit')
* $this->l('Punctual operations: commercial rewards (personalized special offers, product or service offered), non commercial rewards (priority handling of an order or a product), pecuniary rewards (bonds, discount coupons, payback).')
* $this->l('Quantity of products sold')
* $this->l('Quantity sold in a day')
* $this->l('Quantity sold')
* $this->l('Quantity')
* $this->l('Ref.')
* $this->l('Reference')
* $this->l('Referrer')
* $this->l('Registered customer information')
* $this->l('Registered visitors')
* $this->l('Registrations')
* $this->l('Results')
* $this->l('Revenue')
* $this->l('Sales (converted)')
* $this->l('Sales (tax excluded)')
* $this->l('Sales and orders')
* $this->l('Sales currency: %s')
* $this->l('Sales')
* $this->l('Sales:')
* $this->l('Save')
* $this->l('Search engine keywords')
* $this->l('Shipping')
* $this->l('Shop search')
* $this->l('Someone who posts a link to your shop.')
* $this->l('Specials, sales, promotions and/or contests typically demand a shoppers\' attentions. Offering such things will not only keep your business lively, it will also increase traffic, build customer loyalty and genuinely change your current e-commerce philosophy.')
* $this->l('Stats Dashboard')
* $this->l('Stats by Groups')
* $this->l('Stock')
* $this->l('Storing registered customer information allows you to accurately define customer profiles so you can adapt your special deals and promotions.')
* $this->l('Sustainable operations: loyalty points or cards, which not only justify communication between merchant and client, but also offer advantages to clients (private offers, discounts).')
* $this->l('Target your audience')
* $this->l('Tax')
* $this->l('The "' . $this->newsletter_module_human_readable_name . '" module must be installed.')
* $this->l('The "pages not found" cache has been deleted.')
* $this->l('The "pages not found" cache has been emptied.')
* $this->l('The amounts include taxes, so you can get an estimation of the commission due to the payment method.')
* $this->l('The following graphs represent the evolution of your shop\'s orders and sales turnover for a selected period.')
* $this->l('The listed amounts do not include tax.')
* $this->l('The referrer is the URL of the previous webpage from which a link was followed by the visitor.')
* $this->l('The total number of accounts created is not in itself important information. However, it is beneficial to analyze the number created over time. This will indicate whether or not things are on the right track. You feel me?')
* $this->l('The visitors\' evolution graph strongly resembles the visits\' graph, but provides additional information:')
* $this->l('There are no active customers online right now.')
* $this->l('There are no visitors online.')
* $this->l('These operations encourage clients to buy products and visit your online store more regularly.')
* $this->l('These order statuses cannot be removed from the Back Office; however you have the option to add more.')
* $this->l('This graph represents the carrier distribution for your orders. You can also narrow the focus of the graph to display distribution for a particular order status.')
* $this->l('This information is mostly qualitative. It is up to you to determine the interest of a disjointed visit.')
* $this->l('This is one of the most common ways of finding a website through a search engine.')
* $this->l('This module can recognize all the search engines listed in PrestaShop\'s Stats/Search Engine page -- and you can add more!')
* $this->l('This section corresponds to the default wholesale price according to the default supplier for the product. An average price is used when the product has attributes.')
* $this->l('Time frame')
* $this->l('Top 10 keywords')
* $this->l('Top ten referral websites')
* $this->l('Total Margin')
* $this->l('Total Price')
* $this->l('Total Quantity Sold')
* $this->l('Total Viewed')
* $this->l('Total bought in pack')
* $this->l('Total bought')
* $this->l('Total customer accounts:')
* $this->l('Total paid')
* $this->l('Total quantities')
* $this->l('Total used')
* $this->l('Total value')
* $this->l('Total viewed')
* $this->l('Total visitors:')
* $this->l('Total visits:')
* $this->l('Total')
* $this->l('Total:')
* $this->l('Undefined')
* $this->l('Unknown')
* $this->l('Valid orders')
* $this->l('Value')
* $this->l('View customer profile')
* $this->l('View')
* $this->l('Visitor registrations: ')
* $this->l('Visitors online')
* $this->l('Visitors origin')
* $this->l('Visitors')
* $this->l('Visits (x100)')
* $this->l('Visits and Visitors')
* $this->l('Visits')
* $this->l('Web browser used')
* $this->l('Weekly')
* $this->l('What is a referral website?')
* $this->l('When a visitor comes to your website, the web server notes the URL of the site he/she comes from. This module then parses the URL, and if it finds a reference to a known search engine, it finds the keywords in it.')
* $this->l('When managing a website, it is important to keep track of the software used by visitors so as to be sure that the site displays the same way for everyone. PrestaShop was built to be compatible with the most recent Web browsers and computer operating systems (OS). However, because you may end up adding advanced features to your website or even modifying the core PrestaShop code, these additions may not be accessible to everyone. That is why it is a good idea to keep track of the percentage of users for each type of software before adding or changing something that only a limited number of users will be able to access.')
* $this->l('Word of mouth is also a means for getting new, satisfied clients. A dissatisfied customer can hurt your e-reputation and obstruct future sales goals.')
* $this->l('Yearly')
* $this->l('You can increase your sales by:')
* $this->l('You can view the distribution of order statuses below.')
* $this->l('You must activate the "Save page views for each customer" option in the "Data mining for statistics" (StatsData) module in order to see the pages that your visitors are currently viewing.')
* $this->l('You must use a .htaccess file to redirect 404 errors to the "404.php" page.')
* $this->l('You should often consult this screen, as it allows you to quickly monitor your shop\'s sustainability. It also allows you to monitor multiple time periods.')
* $this->l('Your catalog is empty.')
* $this->l('Zone distribution')
* $this->l('Zone')
* $this->l('Zone:')
* $this->l('chars (without HTML)')
* $this->l('customers')
* $this->l('images')
* $this->l('items')
* $this->l('orders / month')
*/