-
Notifications
You must be signed in to change notification settings - Fork 0
/
googleautocompleteaddress.php
168 lines (140 loc) · 5.07 KB
/
googleautocompleteaddress.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
<?php
/*
* 2007-2016 PrestaShop
*
* 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 PrestaShop SA <[email protected]>
* @copyright 2007-2016 PrestaShop SA
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
* International Registered Trademark & Property of PrestaShop SA
*/
class Googleautocompleteaddress extends Module
{
public function __construct()
{
$this->name = 'googleautocompleteaddress';
$this->version = '1.0.0';
$this->author = 'Eliphaz';
$this->need_instance = 0;
$this->bootstrap = true;
parent::__construct();
$this->displayName = $this->getTranslator()->trans(
'Google autocomplete address',
[],
'Modules.Googleautocompleteaddress.Admin'
);
$this->description =
$this->getTranslator()->trans(
'Google autocomplete address',
[],
'Modules.Googleautocompleteaddress.Admin'
);
$this->confirmUninstall = $this->l('Are you sure you want to uninstall?');
$this->ps_versions_compliancy = [
'min' => '1.7.7.0',
'max' => _PS_VERSION_,
];
}
/**
* This function is required in order to make module compatible with new translation system.
*
* @return bool
*/
public function isUsingNewTranslationSystem()
{
return true;
}
public function install()
{
return (parent::install()
&& $this->registerHook('actionFrontControllerSetMedia')
&& Configuration::updateValue('API_KEY', ''));
}
public function uninstall()
{
return (parent::uninstall()
&& Configuration::deleteByName('API_KEY'));
}
/**
* This method handles the module's configuration page
* @return string The page's HTML content
*/
public function getContent()
{
$output = '';
//this part is executed only when the form is submited
if (Tools::isSubmit('submit' . $this->name)) {
//retreive value set by the user
$configValue = (string) Tools::getValue('API_TOKEN');
//check that value is valid
if (empty($configValue) || !Validate::isGenericName($configValue)) {
//invalid value, show an error
$output = $this->displayError($this->l('Invalid Configuration value'));
} else {
//value is ok, update it and display a configuration messsage
Configuration::updateValue('API_KEY', $configValue);
$output = $this->displayConfirmation($this->l('Setting updated'));
}
}
//display any message, then the form
return $output . $this->displayForm();
}
public function displayForm()
{
$form = [
'form' => [
'legend' => [
'title' => $this->l('Settings'),
],
'input' => [
[
'type' => 'text',
'label' => $this->l('Google autocomplete api key'),
'name' => 'API_KEY',
'size' => 20,
'required' => true,
]
],
'submit' => [
'title' => $this->l('save'),
'class' => 'btn btn-default pull-right',
],
],
];
$helper = new HelperForm();
$helper->table = $this->table;
$helper->name_controller = $this->name;
$helper->token = Tools::getAdminTokenLite('AdminModules');
$helper->currentIndex = AdminController::$currentIndex . '&' . http_build_query(['configure' => $this->name]);
$helper->submit_action = 'submit' . $this->name;
$helper->default_form_language = (int) Configuration::get('PS_LANG_DEFAULT');
$helper->fields_value['API_KEY'] = Tools::getValue('API_KEY', Configuration::get('API_KEY'));
return $helper->generateForm([$form]);
}
public function hookActionFrontControllerSetMedia()
{
$this->context->controller->registerJavascript(
'googleautocompletaddress-javascript',
$this->_path . 'views/js/googleautocompleteaddress.js',
[
'media' => 'bottom',
'priority' => 1000,
]
);
}
}