-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathxoops_version.php
267 lines (252 loc) · 10.1 KB
/
xoops_version.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
<?php declare(strict_types=1);
/*
* Xoops Poll Version Information
*
* Description: Version information and settings for the XoopsPoll Module
*
* ------------------------------------------------------------------------
* XOOPS - PHP Content Management System
* Copyright (c) 2000-2020 XOOPS.org
* <https://xoops.org>
* ------------------------------------------------------------------------
* 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 2 of the License, or
* (at your option) any later version.
*
* You may not change or alter any portion of this comment or credits
* of supporting developers from this source code or any supporting
* source code which is considered copyrighted (c) material of the
* original comment or credit authors.
*
* 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, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
* ------------------------------------------------------------------------
*/
/**
* @copyright:: {@link https://xoops.org/ XOOPS Project}
* @license :: {@link https://www.gnu.org/licenses/gpl-2.0.html GNU GPL 2.0 or later}
* @since :: 1.0
* @author :: {@link https://www.myweb.ne.jp Kazumi Ono}
**/
require_once __DIR__ . '/preloads/autoloader.php';
$moduleDirName = basename(__DIR__);
$moduleDirNameUpper = \mb_strtoupper($moduleDirName);
// ------------------- Information ------------------- /
$modversion = [
'version' => '2.1.0',
'module_status' => 'Beta 2',
'release_date' => '2023/04/20',
'name' => _MI_XOOPSPOLL_NAME,
'description' => _MI_XOOPSPOLL_DESC,
'official' => 0, //1 indicates official XOOPS module supported by XOOPS Dev Team, 0 means 3rd party supported
'author' => 'Kazumi Ono, modified by Mazarin',
'credits' => 'XOOPS Development Team, Mamba, ZySpec',
'author_mail' => 'author-email',
'author_website_url' => 'https://xoops.org',
'author_website_name' => 'XOOPS',
'license' => 'GPL 2.0 or later',
'license_url' => 'www.gnu.org/licenses/gpl-2.0.html/',
// ------------------- Folders & Files -------------------
'release_info' => 'Changelog',
'release_file' => XOOPS_URL . "/modules/$moduleDirName/docs/changelog.txt",
'manual' => 'link to manual file',
'manual_file' => XOOPS_URL . "/modules/$moduleDirName/docs/install.txt",
// images
'image' => 'assets/images/logoModule.png',
'iconsmall' => 'assets/images/iconsmall.png',
'iconbig' => 'assets/images/iconbig.png',
'dirname' => $moduleDirName,
// Local path icons
'modicons16' => 'assets/images/icons/16',
'modicons32' => 'assets/images/icons/32',
//About
'demo_site_url' => 'https://xoops.org',
'demo_site_name' => 'XOOPS Demo Site',
'support_url' => 'https://xoops.org/modules/newbb/viewforum.php?forum=28/',
'support_name' => 'Support Forum',
'submit_bug' => 'https://github.com/XoopsModules25x/' . $moduleDirName . '/issues',
'module_website_url' => 'www.xoops.org',
'module_website_name' => 'XOOPS Project',
// ------------------- Min Requirements -------------------
'min_php' => '7.4',
'min_xoops' => '2.5.11',
'min_admin' => '1.2',
'min_db' => ['mysql' => '5.5'],
// ------------------- Admin Menu -------------------
'system_menu' => 1,
'hasAdmin' => 1,
'adminindex' => 'admin/index.php',
'adminmenu' => 'admin/menu.php',
// ------------------- Main Menu -------------------
'hasMain' => 1,
// ------------------- Install/Update -------------------
'onInstall' => 'include/oninstall.php',
'onUpdate' => 'include/onupdate.php',
// 'onUninstall' => 'include/onuninstall.php',
// ------------------- PayPal ---------------------------
'paypal' => [
'business' => 'xoopsfoundation@gmail.com',
'item_name' => 'Donation : ' . _MI_XOOPSPOLL_NAME,
'amount' => 0,
'currency_code' => 'USD',
],
// ------------------- Search ---------------------------
'hasSearch' => 1,
'search' => [
'file' => 'include/search.php',
'func' => 'xoopspoll_search',
],
// ------------------- Comments -------------------------
'hasComments' => 1,
'comments' => [
'pageName' => 'pollresults.php',
'itemName' => 'poll_id',
],
// ------------------- Mysql -----------------------------
'sqlfile' => ['mysql' => 'sql/mysql.sql'],
// ------------------- Tables ----------------------------
'tables' => [
$moduleDirName . '_' . 'option',
$moduleDirName . '_' . 'desc',
$moduleDirName . '_' . 'log',
],
];
// ------------------- Templates ------------------- //
$modversion['templates'] = [
['file' => 'xoopspoll_index.tpl', 'description' => _MI_XOOPSPOLL_INDEX_DSC],
['file' => 'xoopspoll_view.tpl', 'description' => _MI_XOOPSPOLL_VIEW_DSC],
['file' => 'xoopspoll_results.tpl', 'description' => _MI_XOOPSPOLL_RESULTS_DSC],
['file' => 'xoopspoll_results_renderer.tpl', 'description' => _MI_XOOPSPOLL_RESULTS_REND_DSC],
['file' => 'admin/xoopspoll_index.tpl', 'description' => _MI_XOOPSPOLL_ADMIN_INDEX_DSC],
['file' => 'admin/xoopspoll_list.tpl', 'description' => _MI_XOOPSPOLL_ADMIN_LIST_DSC],
['file' => 'admin/xoopspoll_utility.tpl', 'description' => _MI_XOOPSPOLL_ADMIN_UTIL_DSC],
];
// ------------------- Help files ------------------- //
$modversion['help'] = 'page=help';
$modversion['helpsection'] = [
['name' => _MI_XOOPSPOLL_OVERVIEW, 'link' => 'page=help'],
['name' => _MI_XOOPSPOLL_DISCLAIMER, 'link' => 'page=disclaimer'],
['name' => _MI_XOOPSPOLL_LICENSE, 'link' => 'page=license'],
['name' => _MI_XOOPSPOLL_SUPPORT, 'link' => 'page=support'],
];
/**#@+
* Block template description
*/
$modversion['blocks'][] = [
'file' => 'multipoll.php',
'name' => _MI_XOOPSPOLL_BNAME1,
'description' => _MI_XOOPSPOLL_BNAME1DSC,
'show_func' => 'xoopspollBlockMultiShow',
'edit_func' => 'xoopspollBlockMultiEdit',
'options' => '1|1',
'template' => 'xoopspoll_block_poll.tpl',
];
$modversion['blocks'][] = [
'file' => 'singlepoll.php',
'name' => _MI_XOOPSPOLL_BNAME2,
'description' => _MI_XOOPSPOLL_BNAME2DSC,
'show_func' => 'xoopspollBlockSinglepollShow',
'edit_func' => 'xoopspollBlockSinglepollEdit',
'options' => '1|0|1|1',
'template' => 'xoopspoll_block_singlepoll.tpl',
];
/**#@-*/
/**#@+
* Module Config option
*/
/**
* Display host lookup to admin(1 = yes | 0 = no)
* note: uses 3rd party resources to complete this request
*/
$modversion['config'][] = [
'name' => 'look_up_host',
'title' => '_MI_XOOPSPOLL_LOOKUPHOST',
'description' => '_MI_XOOPSPOLL_LOOKUPHOSTDSC',
'formtype' => 'yesno',
'valuetype' => 'int',
'default' => '0',
'options' => [],
];
/**
* Display votes/voters to users (1 = yes | 0 = no)
*/
$modversion['config'][] = [
'name' => 'disp_vote_nums',
'title' => '_MI_XOOPSPOLL_DISPVOTE',
'description' => '_MI_XOOPSPOLL_DISPVOTEDSC',
'formtype' => 'yesno',
'valuetype' => 'int',
'default' => '1',
'options' => [],
];
/**
* Hide polls created with forums in index, blocks, etc. (1 = yes | 0 = no)
* polls still display in admin cpanel
*/
$modversion['config'][] = [
'name' => 'hide_forum_polls',
'title' => '_MI_XOOPSPOLL_HIDEFORUM_POLLS',
'description' => '_MI_XOOPSPOLL_HIDEFORUM_POLLSDSC',
'formtype' => 'yesno',
'valuetype' => 'int',
'default' => '1',
'options' => [],
];
/**
* Select the WYSIWYG Editor
*/
/*
xoops_load('XoopsEditorHandler');
$editorHandler = \XoopsEditorHandler::getInstance();
$editorList = array_flip($editorHandler->getList());
$modversion['config'][] = array(
'name' => 'useeditor',
'title' => '_MI_XOOPSPOLL_CHOOSEEDITOR',
'description' => '_MI_XOOPSPOLL_CHOOSEEDITORDSC',
'formtype' => 'select',
'valuetype' => 'text',
'options' => $editorList,
'default' => 'dhtmltextarea');
*/
// default admin editor
xoops_load('XoopsEditorHandler');
$editorHandler = \XoopsEditorHandler::getInstance();
$editorList = array_flip($editorHandler->getList());
$modversion['config'][] = [
'name' => 'editorAdmin',
'title' => 'MI_XOOPSPOLL_EDITOR_ADMIN',
'description' => 'MI_XOOPSPOLL_EDITOR_ADMIN_DESC',
'formtype' => 'select',
'valuetype' => 'text',
'default' => 'dhtmltextarea',
'options' => $editorList,
];
/**
* Make Sample button visible?
*/
$modversion['config'][] = [
'name' => 'displaySampleButton',
'title' => 'CO_' . $moduleDirNameUpper . '_' . 'SHOW_SAMPLE_BUTTON',
'description' => 'CO_' . $moduleDirNameUpper . '_' . 'SHOW_SAMPLE_BUTTON_DESC',
'formtype' => 'yesno',
'valuetype' => 'int',
'default' => 1,
];
/**
* Show Developer Tools?
*/
$modversion['config'][] = [
'name' => 'displayDeveloperTools',
'title' => 'CO_' . $moduleDirNameUpper . '_' . 'SHOW_DEV_TOOLS',
'description' => 'CO_' . $moduleDirNameUpper . '_' . 'SHOW_DEV_TOOLS_DESC',
'formtype' => 'yesno',
'valuetype' => 'int',
'default' => 0,
];