-
Notifications
You must be signed in to change notification settings - Fork 8
/
tools_list.php
200 lines (153 loc) · 6.33 KB
/
tools_list.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
<?php
/* Copyright (C) 2004-2017 Laurent Destailleur <[email protected]>
* Copyright (C) 2023 John Botella <[email protected]>
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
/**
* \file devcommunitytools/admin/setup.php
* \ingroup devcommunitytools
* \brief DevCommunityTools setup page.
*/
// Load Dolibarr environment
$res = 0;
// Try main.inc.php into web root known defined into CONTEXT_DOCUMENT_ROOT (not always defined)
if (!$res && !empty($_SERVER["CONTEXT_DOCUMENT_ROOT"])) {
$res = @include $_SERVER["CONTEXT_DOCUMENT_ROOT"]."/main.inc.php";
}
// Try main.inc.php into web root detected using web root calculated from SCRIPT_FILENAME
$tmp = empty($_SERVER['SCRIPT_FILENAME']) ? '' : $_SERVER['SCRIPT_FILENAME']; $tmp2 = realpath(__FILE__); $i = strlen($tmp) - 1; $j = strlen($tmp2) - 1;
while ($i > 0 && $j > 0 && isset($tmp[$i]) && isset($tmp2[$j]) && $tmp[$i] == $tmp2[$j]) {
$i--; $j--;
}
if (!$res && $i > 0 && file_exists(substr($tmp, 0, ($i + 1))."/main.inc.php")) {
$res = @include substr($tmp, 0, ($i + 1))."/main.inc.php";
}
if (!$res && $i > 0 && file_exists(dirname(substr($tmp, 0, ($i + 1)))."/main.inc.php")) {
$res = @include dirname(substr($tmp, 0, ($i + 1)))."/main.inc.php";
}
// Try main.inc.php using relative path
if (!$res && file_exists("../../main.inc.php")) {
$res = @include "../../main.inc.php";
}
if (!$res && file_exists("../../../main.inc.php")) {
$res = @include "../../../main.inc.php";
}
if (!$res) {
die("Include of main fails");
}
global $langs, $user;
// Libraries
require_once DOL_DOCUMENT_ROOT."/core/lib/admin.lib.php";
require_once __DIR__ . '/lib/devcommunitytools.lib.php';
// Translations
$langs->loadLangs(array("admin", "devcommunitytools@devcommunitytools"));
// Initialize technical object to manage hooks of page. Note that conf->hooks_modules contains array of hook context
$hookmanager->initHooks(array('devcommunitytoolssetup','devcommunitytools', 'globalsetup'));
// Access control
if (!$user->admin) {
accessforbidden();
}
// Parameters
$action = GETPOST('action', 'aZ09');
$backtopage = GETPOST('backtopage', 'alpha');
$modulepart = GETPOST('modulepart', 'aZ09'); // Used by actions_setmoduleoptions.inc.php
$value = GETPOST('value', 'alpha');
$label = GETPOST('label', 'alpha');
$error = 0;
/*
* Actions
*/
/*
* View
*/
$help_url = '';
$page_name = "DevCommunityToolsSetup";
$arrayofjs = array(
'devcommunitytools/js/devtools.js'
);
$arrayofcss = array(
'devcommunitytools/css/devtools.css'
);
llxHeader('', $langs->trans($page_name), $help_url, '', 0, 0, $arrayofjs, $arrayofcss);
// Subheader
$linkback = '<a href="'.($backtopage ? $backtopage : DOL_URL_ROOT.'/admin/modules.php?restore_lastsearch_values=1').'">'.$langs->trans("BackToModuleList").'</a>';
print load_fiche_titre($langs->trans($page_name), $linkback, 'title_setup');
// Configuration header
$head = devcommunitytoolsAdminPrepareHead();
print dol_get_fiche_head($head, 'tools', $langs->trans($page_name), -1, "devcommunitytools@devcommunitytools");
if(!checkDevToolsAccess(false)){
print '<div class="error" ><h4>'.$langs->trans('DevToolsNeedsDevEnvironmentToAllowUsage').'</h4><p style="font-weight: normal;">'.$langs->transnoentities('DevToolsNeedsDevEnvironmentToAllowUsageDesc').'</p></div>';
}else {
$toolList = array();
// Exemple of page
// $toolList[] = array(
// 'title' => 'YourPageName',
// 'desc' => 'YourPageNameDesc',
// 'file' => 'devcommunitytools/tools/default_tool_page.php', // A template for new page
// 'icon' => ''
// );
$toolList[] = array(
'title'=> 'UrlReplace',
'desc' => 'UrlReplaceDesc',
'file' => 'devcommunitytools/tools/replace_url.php',
'icon' => 'fa-exchange-alt'
);
$toolList[] = array(
'title'=> 'TranslateModules',
'desc' => 'TranslateModulesDesc',
'file' => 'devcommunitytools/tools/translate_modules_list.php',
'icon' => 'fa fa-flag'
);
$toolList[] = array(
'title'=> 'PriceImpact',
'desc' => 'PriceImpactDesc',
'file' => 'devcommunitytools/tools/price_impact.php',
'icon' => 'fa fa-dollar-sign'
);
devToolsListSortByItemChildArrayKey($toolList,'title');
print '<div class="dev-tools-search-container"><input autofocus name="search_dev_tools" value="" id="search-dev-tools-form-input" class="dev-tools-search-input" placeholder="'.$langs->trans('Search').'" autocomplete="off"></div>';
print '<div class="box-flex-container" >';
foreach($toolList as $toolItem){
$item = new stdClass();
$item->title = !empty($toolItem['title'])?$langs->trans($toolItem['title']):$langs->trans('TitleMissing');
$item->desc = !empty($toolItem['desc'])?$langs->trans($toolItem['desc']):'';
$item->icon = !empty($toolItem['icon'])?$toolItem['icon']:'fa-tools';
$item->url = !empty($toolItem['file'])?dol_buildpath($toolItem['file'], 1):'';
print '<div class="box-flex-item">';
print ' <div class="box-flex-item-with-margin">';
print ' <div class="info-box ">';
print ' <span class="info-box-icon bg-infobox-project">';
print ' <i class="fa '.$item->icon.'"></i>';
print ' </span>';
print ' <div class="info-box-content">';
print ' <div class="info-box-title" title="'.dol_escape_htmltag($item->title).'"><a href="'.$item->url.'" >'.$item->title.'</a></div>';
print ' <div class="info-box-lines">';
print ' <div class="info-box-line">'.$item->desc.'</div>';
print ' <div class="info-box-line"><a href="'.$item->url.'" >'.$langs->trans('GoToToolPage').' <i class="fa fa-arrow-right"></i></a></div>';
print ' </div><!-- /.info-box-lines -->';
print ' </div><!-- /.info-box-content -->';
print ' </div>';
print ' </div>';
print '</div>';
}
for ($i = 1; $i <= 10; $i++) {
print '<div class="box-flex-item filler"></div>';
}
print '</div>';
}
// Page end
print dol_get_fiche_end();
llxFooter();
$db->close();