ILIAS
release_5-0 Revision 5.0.0-1144-gc4397b1f870
◀ ilDoc Overview
Main Page
Related Pages
Modules
+
Namespaces
Namespace List
+
Data Structures
Data Structures
Data Structure Index
Class Hierarchy
+
Data Fields
+
All
$
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
+
Functions
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
+
Variables
$
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
+
Files
File List
+
Globals
+
All
$
(
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
+
Functions
_
a
b
c
d
e
f
g
h
i
k
l
m
o
p
r
s
t
u
v
w
x
+
Variables
$
(
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
Examples
•
All
Data Structures
Namespaces
Files
Functions
Variables
Modules
Pages
class.ilSecurImageUtil.php
Go to the documentation of this file.
1
<?php
2
/* Copyright (c) 1998-2013 ILIAS open source, Extended GPL, see docs/LICENSE */
3
11
class
ilSecurImageUtil
12
{
16
private
static
$ver
=
'3_5_1'
;
17
21
public
static
function
getDirectory
()
22
{
23
return
'./Services/Captcha/lib/securimage_'
. self::$ver;
24
}
25
29
public
static
function
getImageScript
()
30
{
31
return
self::getDirectory() .
'/il_securimage_show.php'
;
32
}
33
37
public
static
function
getAudioScript
()
38
{
39
$script = self::getDirectory() .
'/securimage_play.swf'
;
40
$script =
ilUtil::appendUrlParameterString
($script,
'audio_file='
. self::getDirectory() .
'/il_securimage_play.php'
,
true
);
41
$script =
ilUtil::appendUrlParameterString
($script,
'icon_file='
.
ilUtil::getImagePath
(
'icon_audiocaptcha-19.png'
),
true
);
42
return
$script;
43
}
44
48
public
function
includeSecurImage
()
49
{
50
require_once
'Services/Captcha/lib/securimage_'
. self::$ver .
'/securimage.php'
;
51
}
52
}
ilSecurImageUtil\getImageScript
static getImageScript()
Definition:
class.ilSecurImageUtil.php:29
ilSecurImageUtil\getAudioScript
static getAudioScript()
Definition:
class.ilSecurImageUtil.php:37
ilSecurImageUtil\includeSecurImage
includeSecurImage()
Definition:
class.ilSecurImageUtil.php:48
ilUtil\appendUrlParameterString
static appendUrlParameterString($a_url, $a_par, $xml_style=false)
append URL parameter string ("par1=value1&par2=value2...") to given URL string
Definition:
class.ilUtil.php:2400
ilUtil\getImagePath
static getImagePath($img, $module_path="", $mode="output", $offline=false)
get image path (for images located in a template directory)
Definition:
class.ilUtil.php:71
ilSecurImageUtil
SecurImage Library Utility functions.
Definition:
class.ilSecurImageUtil.php:11
ilSecurImageUtil\$ver
static $ver
Definition:
class.ilSecurImageUtil.php:16
ilSecurImageUtil\getDirectory
static getDirectory()
Definition:
class.ilSecurImageUtil.php:21
Services
Captcha
classes
class.ilSecurImageUtil.php
Generated on Mon Mar 31 2025 19:00:43 for ILIAS by
1.8.13 (using
Doxyfile
)