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.arEditFields.php
Go to the documentation of this file.
1
<?php
2
require_once(
'./Services/ActiveRecord/Views/class.arViewField.php'
);
3
require_once(
'./Services/ActiveRecord/Views/class.arViewFields.php'
);
4
12
class
arEditFields
extends
arViewFields
13
{
14
const
FIELD_CLASS
=
'arEditField'
;
15
16
20
public
function
sortFields
()
21
{
22
uasort($this->
fields
,
function
(
arEditField
$field_a,
arEditField
$field_b) {
23
//If both fields are or are not subelements, then let the position decide which is displayed first
24
if
(($field_a->
getSubelementOf
()) == ($field_b->
getSubelementOf
())) {
25
return
$field_a->
getPosition
() > $field_b->
getPosition
();
26
}
//If only one of the elements is a subelement, then the other has to be generated first
27
else
{
28
return
$field_a->
getSubelementOf
();
29
}
30
});
31
}
32
}
arEditField\getSubelementOf
getSubelementOf()
Definition:
class.arEditField.php:36
arViewFields
GUI-Class arViewFields.
Definition:
class.arViewFields.php:12
arEditFields
GUI-Class arEditFields.
Definition:
class.arEditFields.php:12
fields
$errors fields
Definition:
imgupload.php:51
arEditFields\FIELD_CLASS
const FIELD_CLASS
Definition:
class.arEditFields.php:14
arEditField
GUI-Class arEditField.
Definition:
class.arEditField.php:11
arViewField\getPosition
getPosition()
Definition:
class.arViewField.php:93
arEditFields\sortFields
sortFields()
Definition:
class.arEditFields.php:20
Services
ActiveRecord
Views
Edit
class.arEditFields.php
Generated on Thu Apr 3 2025 20:01:00 for ILIAS by
1.8.13 (using
Doxyfile
)