-
Notifications
You must be signed in to change notification settings - Fork 1
/
common.php
45 lines (38 loc) · 971 Bytes
/
common.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
<?php
// Entschärft Benutzereingaben - nur A..Z, 0..9 erlaubt, um Codeinjection zu verhindern
function MakeSafe($eingabe)
{
$sReplace = '';
return preg_replace("/[\"\'<>\\\{\}\$#]/", $sReplace, $eingabe);
}
function NormAZ($aAZ)
{
if (is_array($aAZ)) {
}
}
// ------------------------------------ Steuerzentrale Funktionenaufruf ------------------------------------------
function Adminfuncs()
{
global $aAdminfunc;
global $iWhichfunction;
if (($iWhichfunction < 0) || ($iWhichfunction > (sizeof($aAdminfunc) - 1))) {
NoFunction();
}
// Undefinierter Funktionenaufruf
call_user_func($aAdminfunc[$iWhichfunction]);
}
function Userfuncs()
{
global $aUserfunc;
global $iWhichfunction;
if (($iWhichfunction < 0) || ($iWhichfunction > (sizeof($aUserfunc) - 1))) {
NoFunction();
}
// Undefinierter Funktionenaufruf
call_user_func($aUserfunc[$iWhichfunction]);
}
function NoFunction()
{
Error('Undefinierter Zustand !');
die;
}