ILIAS
release_7 Revision v7.30-3-g800a261c036
◀ 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
r
s
t
w
+
Functions
_
a
b
c
f
g
h
i
r
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.ilCountrySelectInputGUI.php
Go to the documentation of this file.
1
<?php
2
3
/* Copyright (c) 1998-2010 ILIAS open source, Extended GPL, see docs/LICENSE */
4
5
6
include_once(
"./Services/Form/classes/class.ilSelectInputGUI.php"
);
7
15
class
ilCountrySelectInputGUI
extends
ilSelectInputGUI
16
{
20
protected
$lng
;
21
22
29
public
function
__construct
($a_title =
""
, $a_postvar =
""
)
30
{
31
global
$DIC
;
32
33
$this->lng = $DIC->language();
34
parent::__construct
($a_title, $a_postvar);
35
$this->
setType
(
"cselect"
);
36
}
37
43
public
function
getOptions
()
44
{
45
$lng
=
$this->lng
;
46
47
$lng
->loadLanguageModule(
"meta"
);
48
$lng
->loadLanguageModule(
"form"
);
49
50
include_once(
"./Services/Utilities/classes/class.ilCountry.php"
);
51
52
foreach
(
ilCountry::getCountryCodes
() as
$c
) {
53
$options
[
$c
] =
$lng
->txt(
"meta_c_"
. $c);
54
}
55
asort(
$options
);
56
57
$options
= array(
""
=>
"- "
.
$lng
->txt(
"form_please_select"
) .
" -"
)
58
+
$options
;
59
60
return
$options
;
61
}
62
}
$c
$c
Definition:
cli.php:37
ilCountrySelectInputGUI
This class represents a selection list property in a property form.
Definition:
class.ilCountrySelectInputGUI.php:15
ilCountrySelectInputGUI\__construct
__construct($a_title="", $a_postvar="")
Constructor.
Definition:
class.ilCountrySelectInputGUI.php:29
ilFormPropertyGUI\setType
setType($a_type)
Set Type.
Definition:
class.ilFormPropertyGUI.php:72
ilCountrySelectInputGUI\getOptions
getOptions()
Get Options.
Definition:
class.ilCountrySelectInputGUI.php:43
$DIC
global $DIC
Definition:
goto.php:24
ilCountrySelectInputGUI\$lng
$lng
Definition:
class.ilCountrySelectInputGUI.php:20
ILIAS\GlobalScreen\Provider\__construct
__construct(Container $dic, ilPlugin $plugin)
Definition:
PluginProviderHelper.php:40
ilSelectInputGUI
ilCountry\getCountryCodes
static getCountryCodes()
Get country codes (DIN EN 3166-1)
Definition:
class.ilCountry.php:18
ilSelectInputGUI\$options
$options
Definition:
class.ilSelectInputGUI.php:20
Services
Form
classes
class.ilCountrySelectInputGUI.php
Generated on Thu Apr 3 2025 21:01:22 for ILIAS by
1.8.13 (using
Doxyfile
)