ILIAS
release_6 Revision v6.24-5-g0c8bfefb3b8
◀ ilDoc Overview
Main Page
Related Pages
Modules
+
Namespaces
Namespace List
+
Namespace Members
+
All
$
_
a
b
c
d
e
f
g
h
i
j
l
m
p
s
t
w
+
Functions
_
a
b
c
f
g
h
i
s
t
w
+
Variables
$
c
d
e
f
g
h
j
l
m
p
s
t
+
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
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
+
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
l
m
n
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.ilUriInputGUI.php
Go to the documentation of this file.
1
<?php
2
3
/* Copyright (c) 1998-2021 ILIAS open source, GPLv3, see LICENSE */
4
10
class
ilUriInputGUI
extends
ilTextInputGUI
11
{
15
protected
$lng
;
16
17
protected
$value
;
18
protected
$maxlength
= 500;
19
protected
$size
= 40;
20
26
public
function
__construct
($a_title =
""
, $a_postvar =
""
)
27
{
28
global
$DIC
;
29
30
$this->lng = $DIC->language();
31
parent::__construct
($a_title, $a_postvar);
32
$this->
setType
(
"uri"
);
33
}
34
39
public
function
checkInput
()
40
{
41
$lng
=
$this->lng
;
42
43
$_POST
[$this->
getPostVar
()] =
44
ilUtil::stripSlashes
(
$_POST
[$this->
getPostVar
()]);
45
46
// check required
47
if
($this->
getRequired
() && trim(
$_POST
[$this->
getPostVar
()]) ==
""
) {
48
$this->
setAlert
(
$lng
->txt(
"msg_input_is_required"
));
49
return
false
;
50
}
51
52
// check feed url
53
$url
=
$_POST
[$this->
getPostVar
()];
54
55
try
{
56
new \ILIAS\Data\URI(
$url
);
57
}
catch
(\Throwable
$e
) {
58
$this->
setAlert
(
$lng
->txt(
"form_invalid_uri"
));
59
return
false
;
60
}
61
62
return
true
;
63
}
64
}
ilFormPropertyGUI\getPostVar
getPostVar()
Get Post Variable.
Definition:
class.ilFormPropertyGUI.php:122
ilUriInputGUI\$maxlength
$maxlength
Definition:
class.ilUriInputGUI.php:18
Vendor\Package\$e
$e
Definition:
example_cleaned.php:31
ilFormPropertyGUI\setAlert
setAlert($a_alert)
Set Alert Text.
Definition:
class.ilFormPropertyGUI.php:165
ilFormPropertyGUI\setType
setType($a_type)
Set Type.
Definition:
class.ilFormPropertyGUI.php:72
ilUriInputGUI\$value
$value
Definition:
class.ilUriInputGUI.php:17
ilUriInputGUI\$lng
$lng
Definition:
class.ilUriInputGUI.php:15
ilUriInputGUI\$size
$size
Definition:
class.ilUriInputGUI.php:19
ilUriInputGUI
Legacy Uri input.
Definition:
class.ilUriInputGUI.php:10
ilUtil\stripSlashes
static stripSlashes($a_str, $a_strip_html=true, $a_allow="")
strip slashes if magic qoutes is enabled
Definition:
class.ilUtil.php:2408
ilTextInputGUI
ILIAS\GlobalScreen\Provider\__construct
__construct(Container $dic, ilPlugin $plugin)
Definition:
PluginProviderHelper.php:30
$DIC
$DIC
Definition:
xapitoken.php:46
$url
$url
Definition:
proxy_ylocal.php:28
ilFormPropertyGUI\getRequired
getRequired()
Get Required.
Definition:
class.ilFormPropertyGUI.php:195
ilUriInputGUI\__construct
__construct($a_title="", $a_postvar="")
Constructor.
Definition:
class.ilUriInputGUI.php:26
ilUriInputGUI\checkInput
checkInput()
Check input, strip slashes etc.
Definition:
class.ilUriInputGUI.php:39
$_POST
$_POST["username"]
Definition:
cfg.phpunit.template.php:11
Services
Form
classes
class.ilUriInputGUI.php
Generated on Thu Apr 3 2025 20:01:07 for ILIAS by
1.8.13 (using
Doxyfile
)