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.ilObjPollListGUI.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
ilObjPollListGUI
extends
ilObjectListGUI
16
{
20
function
init
()
21
{
22
$this->copy_enabled =
false
;
23
$this->delete_enabled =
true
;
24
$this->cut_enabled =
false
;
25
$this->subscribe_enabled =
false
;
26
$this->link_enabled =
false
;
27
$this->payment_enabled =
false
;
28
$this->info_screen_enabled =
true
;
29
$this->type =
"poll"
;
30
$this->gui_class_name =
"ilobjpollgui"
;
31
32
// general commands array
33
include_once(
'./Modules/Poll/classes/class.ilObjPollAccess.php'
);
34
$this->commands =
ilObjPollAccess::_getCommands
();
35
}
36
45
function
getProperties
()
46
{
47
global
$lng
;
48
49
// BEGIN WebDAV: Get parent properties
50
// BEGIN ChangeEvent: Get parent properties
51
$props = parent::getProperties();
52
// END ChangeEvent: Get parent properties
53
// END WebDAV: Get parent properties
54
55
// offline
56
include_once
'Modules/Poll/classes/class.ilObjPollAccess.php'
;
57
if
(!
ilObjPollAccess::_lookupOnline
($this->obj_id))
58
{
59
$props[] = array(
"alert"
=>
true
,
"property"
=> $lng->txt(
"status"
),
60
"value"
=> $lng->txt(
"offline"
));
61
}
62
63
return
$props;
64
}
65
}
66
67
?>
ilObjectListGUI
Class ilObjectListGUI.
Definition:
class.ilObjectListGUI.php:23
ilObjPollAccess\_getCommands
_getCommands()
get commands
Definition:
class.ilObjPollAccess.php:99
ilObjPollListGUI\getProperties
getProperties()
Get item properties.
Definition:
class.ilObjPollListGUI.php:45
$lng
global $lng
Definition:
privfeed.php:40
ilObjPollListGUI
Class ilObjPollListGUI.
Definition:
class.ilObjPollListGUI.php:15
ilObjPollAccess\_lookupOnline
static _lookupOnline($a_obj_id)
get status
Definition:
class.ilObjPollAccess.php:51
ilObjPollListGUI\init
init()
initialisation
Definition:
class.ilObjPollListGUI.php:20
Modules
Poll
classes
class.ilObjPollListGUI.php
Generated on Mon Mar 31 2025 19:00:37 for ILIAS by
1.8.13 (using
Doxyfile
)