ILIAS
release_4-4 Revision
◀ 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
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
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.ilObjDataCollectionListGUI.php
Go to the documentation of this file.
1
<?php
2
3
/* Copyright (c) 1998-2009 ILIAS open source, Extended GPL, see docs/LICENSE */
4
5
include_once
"Services/Object/classes/class.ilObjectListGUI.php"
;
6
15
class
ilObjDataCollectionListGUI
extends
ilObjectListGUI
16
{
20
public
function
init
()
21
{
22
$this->copy_enabled =
true
;
23
$this->delete_enabled =
true
;
24
$this->cut_enabled =
true
;
25
$this->subscribe_enabled =
true
;
26
$this->link_enabled =
true
;
27
$this->payment_enabled =
false
;
28
$this->info_screen_enabled =
true
;
29
$this->type =
"dcl"
;
30
$this->gui_class_name =
"ilobjdatacollectiongui"
;
31
32
// general commands array
33
include_once(
'./Modules/DataCollection/classes/class.ilObjDataCollectionAccess.php'
);
34
$this->commands =
ilObjDataCollectionAccess::_getCommands
();
35
}
36
45
public
function
getProperties
()
46
{
47
global
$lng
,
$ilUser
;
48
49
$props = array();
50
51
include_once(
"./Modules/DataCollection/classes/class.ilObjDataCollectionAccess.php"
);
52
53
if
(!
ilObjDataCollectionAccess::_lookupOnline
($this->obj_id))
54
{
55
$props[] = array(
56
"alert"
=>
true
,
57
"property"
=> $lng->txt(
"status"
),
58
"value"
=> $lng->txt(
"offline"
)
59
);
60
}
61
62
return
$props;
63
}
64
}
65
66
?>
ilObjDataCollectionListGUI\init
init()
initialisation
Definition:
class.ilObjDataCollectionListGUI.php:20
ilObjDataCollectionListGUI
Class ilObjDataCollectionListGUI.
Definition:
class.ilObjDataCollectionListGUI.php:15
ilObjDataCollectionAccess\_lookupOnline
_lookupOnline($a_id)
Check wether datacollection is online.
Definition:
class.ilObjDataCollectionAccess.php:129
ilObjDataCollectionAccess\_getCommands
_getCommands()
get commands
Definition:
class.ilObjDataCollectionAccess.php:31
ilObjectListGUI
Class ilObjectListGUI.
Definition:
class.ilObjectListGUI.php:23
ilObjDataCollectionListGUI\getProperties
getProperties()
Get item properties.
Definition:
class.ilObjDataCollectionListGUI.php:45
$ilUser
global $ilUser
Definition:
imgupload.php:15
$lng
global $lng
Definition:
privfeed.php:40
Modules
DataCollection
classes
class.ilObjDataCollectionListGUI.php
Generated on Mon Dec 21 2020 19:01:01 for ILIAS by
1.8.13 (using
Doxyfile
)