-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcommon_function.php
227 lines (200 loc) · 6.28 KB
/
common_function.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
<?php
/**
***********************************************************************************************
* Gemeinsame Funktionen fuer das Admidio-Plugin FormFiller
*
* @copyright 2004-2024 The Admidio Team
* @see https://www.admidio.org/
* @license https://www.gnu.org/licenses/gpl-2.0.html GNU General Public License v2.0 only
***********************************************************************************************
*/
require_once(__DIR__ . '/../../adm_program/system/common.php');
if(!defined('PLUGIN_FOLDER'))
{
define('PLUGIN_FOLDER', '/'.substr(__DIR__,strrpos(__DIR__,DIRECTORY_SEPARATOR)+1));
}
/**
* Funktion prueft, ob der Nutzer berechtigt ist das Plugin aufzurufen.
* Zur Prüfung werden die Einstellungen von 'Modulrechte' und 'Sichtbar für'
* verwendet, die im Modul Menü für dieses Plugin gesetzt wurden.
* @param string $scriptName Der Scriptname des Plugins
* @return bool true, wenn der User berechtigt ist
*/
function isUserAuthorized($scriptName)
{
global $gMessage;
$userIsAuthorized = false;
$menId = 0;
$sql = 'SELECT men_id
FROM '.TBL_MENU.'
WHERE men_url = ? -- $scriptName ';
$menuStatement = $GLOBALS['gDb']->queryPrepared($sql, array($scriptName));
if ( $menuStatement->rowCount() === 0 || $menuStatement->rowCount() > 1)
{
$GLOBALS['gLogger']->notice('FormFiller: Error with menu entry: Found rows: '. $menuStatement->rowCount() );
$GLOBALS['gLogger']->notice('FormFiller: Error with menu entry: ScriptName: '. $scriptName);
$gMessage->show($GLOBALS['gL10n']->get('PLG_FORMFILLER_MENU_URL_ERROR', array($scriptName)), $GLOBALS['gL10n']->get('SYS_ERROR'));
}
else
{
while ($row = $menuStatement->fetch())
{
$menId = (int) $row['men_id'];
}
}
$sql = 'SELECT men_id, men_com_id, com_name_intern
FROM '.TBL_MENU.'
LEFT JOIN '.TBL_COMPONENTS.'
ON com_id = men_com_id
WHERE men_id = ? -- $menId
ORDER BY men_men_id_parent DESC, men_order';
$menuStatement = $GLOBALS['gDb']->queryPrepared($sql, array($menId));
while ($row = $menuStatement->fetch())
{
if ((int) $row['men_com_id'] === 0 || Component::isVisible($row['com_name_intern']))
{
// Read current roles rights of the menu
$displayMenu = new RolesRights($GLOBALS['gDb'], 'menu_view', $row['men_id']);
$rolesDisplayRight = $displayMenu->getRolesIds();
// check for right to show the menu
if (count($rolesDisplayRight) === 0 || $displayMenu->hasRight($GLOBALS['gCurrentUser']->getRoleMemberships()))
{
$userIsAuthorized = true;
}
}
}
return $userIsAuthorized;
}
/**
* Funktion prueft, ob der Nutzer berechtigt ist, das Modul Preferences aufzurufen.
* @param none
* @return bool true, wenn der User berechtigt ist
*/
function isUserAuthorizedForPreferences()
{
global $pPreferences;
$userIsAuthorized = false;
if ($GLOBALS['gCurrentUser']->isAdministrator()) // Mitglieder der Rolle Administrator dürfen "Preferences" immer aufrufen
{
$userIsAuthorized = true;
}
else
{
foreach ($pPreferences->config['access']['preferences'] as $roleId)
{
if ($GLOBALS['gCurrentUser']->isMemberOfRole((int) $roleId))
{
$userIsAuthorized = true;
continue;
}
}
}
return $userIsAuthorized;
}
/**
* Funktion prueft, ob jeder einzelne Wert von $needle in $haystack enthalten ist
*
* @param string $haystack
* @param string $needle
* @return bool
*/
function strstr_multiple($haystack, $needle )
{
for ($i = 0; $i < strlen($needle); $i++)
{
if (!(strstr($haystack, substr($needle, $i, 1))))
{
return false;
}
}
return true;
}
/**
* Funktion prüft, ob es eine Konfiguration mit dem übergebenen Namen bereits gibt
* wenn ja: wird "- Kopie" angehängt und rekursiv überprüft
* @param string $name
* @return string
*/
function createDesc($name)
{
global $pPreferences;
while (in_array($name, $pPreferences->config['Formular']['desc']))
{
$name .= ' - '.$GLOBALS['gL10n']->get('SYS_CARBON_COPY');
}
return $name;
}
/**
* Funktion erstellt ein Array mit den Kernschriftarten (Core Fonts)
* @param none
* @return array $fonts
*/
function coreFonts()
{
//core fonts
$fonts = array(
'Courier'=>'Courier',
'Arial'=>'Arial',
'Times'=>'Times',
'Symbol'=>'Symbol',
'ZapfDingbats'=>'ZapfDingbats');
return $fonts;
}
/**
* Funktion erstellt die Schriftarten-Auswahlliste (core fonts + add fonts)
* @param none
* @return array $fonts
*/
function validFonts()
{
//core fonts
$fonts = coreFonts();
//additional fonts
$fonts['AlteDIN1451Mittelschrift'] = 'AlteDIN1451Mittelschrift';
$fonts['AlteDIN1451Mittelschrift-Geprägt'] = 'AlteDIN1451Mittelschrift-Geprägt';
$fonts['Angelina'] = 'Angelina';
$fonts['AsphaltFixed-Italic'] = 'AsphaltFixed-Italic';
$fonts['Calligraph'] = 'Calligraph';
$fonts['ClarendonBT-Roman'] = 'ClarendonBT-Roman';
$fonts['Edo'] = 'Edo';
$fonts['Exmouth'] = 'Exmouth';
$fonts['FreebooterScript'] = 'FreebooterScript';
$fonts['FuturaBT-Medium'] = 'FuturaBT-Medium';
$fonts['LeipzigFraktur'] = 'LeipzigFraktur';
$fonts['LeipzigFraktur-Bold'] = 'LeipzigFraktur-Bold';
$fonts['PlainBlack'] = 'PlainBlack';
$fonts['PlainGermanica'] = 'PlainGermanica';
$fonts['Scriptina'] = 'Scriptina';
$fonts['ShadowedBlack'] = 'ShadowedBlack';
$fonts['ShadowedGermanica'] = 'ShadowedGermanica';
$fonts['Barcode'] = 'Barcode';
return $fonts;
}
/**
* in_array function variant that performs case-insensitive comparison when needle is a string.
*
* @param mixed $needle
* @param array $haystack
* @param bool $strict
*
* @return bool
*/
function in_arrayi($needle, array $haystack, bool $strict = false): bool
{
if (is_string($needle))
{
$needle = strtolower($needle);
foreach ($haystack as $value)
{
if (is_string($value))
{
if (strtolower($value) === $needle)
{
return true;
}
}
}
return false;
}
return in_array($needle, $haystack, $strict);
}