forked from 202ecommerce/paypal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathModule.php
169 lines (151 loc) · 4.68 KB
/
Module.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
<?php
/*
* Since 2007 PayPal
*
* 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.txt.
* It is also available through the world-wide-web at this URL:
* http://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.
*
* DISCLAIMER
*
* Do not edit or add to this file if you wish to upgrade PrestaShop to newer
* versions in the future. If you wish to customize PrestaShop for your
* needs please refer to http://www.prestashop.com for more information.
*
* @author Since 2007 PayPal
* @author 202 ecommerce <[email protected]>
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
* @copyright PayPal
*
*/
namespace PaypalPPBTlib;
use PrestaShop\PrestaShop\Core\Module\WidgetInterface;
use \ReflectionClass;
use \Tools;
use PaypalPPBTlib\Install\ModuleInstaller;
use PaypalPPBTlib\Extensions\AbstractModuleExtension;
class Module extends \Module
{
/**
* List of objectModel used in this Module
* @var array $objectModels
*/
public $objectModels = array();
/**
* List of hooks used in this Module
* @var array $hooks
*/
public $hooks = array();
/**
* List of AdminControllers used in this Module
* @var array $moduleAdminControllers
*/
public $moduleAdminControllers = array();
/**
* Install Module
*
* @return bool
* @throws \PrestaShopException
*/
public function install()
{
$installer = new ModuleInstaller($this);
$isPhpVersionCompliant = false;
try {
$isPhpVersionCompliant = $installer->checkPhpVersion();
} catch (\Exception $e) {
$this->_errors[] = Tools::displayError($e->getMessage());
}
return $isPhpVersionCompliant && parent::install() && $installer->install();
}
/**
* Uninstall Module
*
* @return bool
* @throws \PrestaShopDatabaseException
* @throws \PrestaShopException
*/
public function uninstall()
{
$installer = new ModuleInstaller($this);
return parent::uninstall() && $installer->uninstall();
}
/**
* TODO Reset Module only if merchant choose to keep data on modal
*
* @return bool
* @throws \PrestaShopDatabaseException
* @throws \PrestaShopException
*/
public function reset()
{
$installer = new ModuleInstaller($this);
return $installer->reset($this);
}
/**
* Handle module extension hook call
* @param $hookName
* @param $params
* @return array|bool|string
*/
public function handleExtensionsHook($hookName, $params)
{
if (!isset($this->extensions) || empty($this->extensions)) {
return false;
}
$result = false;
foreach ($this->extensions as $extension) {
/** @var AbstractModuleExtension $extension */
$extension = new $extension();
$extension->setModule($this);
if (is_callable(array($extension, $hookName))) {
$hookResult = $extension->{$hookName}($params);
if ($result === false) {
$result = $hookResult;
} elseif (is_array($hookResult) && $result !== false) {
$result = array_merge($result, $hookResult);
} else {
$result .= $hookResult;
}
}
}
return $result;
}
/**
* Handle module widget call
* @param $action
* @param $method
* @param $hookName
* @param $configuration
* @return bool
* @throws \ReflectionException
*/
public function handleWidget($action, $method, $hookName, $configuration)
{
if (!isset($this->extensions) || empty($this->extensions)) {
return false;
}
foreach ($this->extensions as $extension) {
/** @var AbstractModuleExtension $extension */
$extension = new $extension();
if (!($extension instanceof WidgetInterface)) {
continue;
}
$extensionClass = (new ReflectionClass($extension))->getShortName();
if ($extensionClass != $action) {
continue;
}
$extension->setModule($this);
if (is_callable(array($extension, $method))) {
return $extension->{$method}($hookName, $configuration);
}
}
return false;
}
}