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.arOrder.php
Go to the documentation of this file.
1
<?php
2
require_once(dirname(__FILE__) .
'/../Statement/class.arStatement.php'
);
3
11
class
arOrder
extends
arStatement
{
12
16
protected
$fieldname
=
''
;
20
protected
$direction
=
'ASC'
;
21
22
28
public
function
asSQLStatement
(
ActiveRecord
$ar) {
29
return
' '
. $this->
getFieldname
() .
' '
. strtoupper($this->
getDirection
());
30
}
31
32
36
public
function
setDirection
(
$direction
) {
37
$this->direction =
$direction
;
38
}
39
40
44
public
function
getDirection
() {
45
return
$this->direction
;
46
}
47
48
52
public
function
setFieldname
(
$fieldname
) {
53
$this->fieldname =
$fieldname
;
54
}
55
56
60
public
function
getFieldname
() {
61
return
$this->fieldname
;
62
}
63
}
64
65
?>
ActiveRecord
Class ActiveRecord.
Definition:
class.ActiveRecord.php:23
arOrder\$direction
$direction
Definition:
class.arOrder.php:20
arOrder\setDirection
setDirection($direction)
Definition:
class.arOrder.php:36
arOrder\getDirection
getDirection()
Definition:
class.arOrder.php:44
arOrder\setFieldname
setFieldname($fieldname)
Definition:
class.arOrder.php:52
arStatement
Class arStatement.
Definition:
class.arStatement.php:10
arOrder\getFieldname
getFieldname()
Definition:
class.arOrder.php:60
arOrder\asSQLStatement
asSQLStatement(ActiveRecord $ar)
Definition:
class.arOrder.php:28
arOrder\$fieldname
$fieldname
Definition:
class.arOrder.php:16
arOrder
Class arOrder.
Definition:
class.arOrder.php:11
Services
ActiveRecord
Connector
Order
class.arOrder.php
Generated on Mon Apr 14 2025 19:00:41 for ILIAS by
1.8.13 (using
Doxyfile
)