ILIAS
trunk Revision v11.0_alpha-1689-g66c127b4ae8
◀ ilDoc Overview
Main Page
Related Pages
Modules
+
Namespaces
Namespace List
+
Namespace Members
+
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
k
l
m
n
o
p
r
s
t
u
v
w
x
+
Variables
$
c
e
g
h
j
l
m
p
s
t
u
v
+
Enumerations
a
c
e
f
i
j
l
m
n
o
p
r
s
t
u
v
z
+
Enumerator
a
c
d
e
f
g
i
l
m
n
o
p
q
s
t
u
v
y
+
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
Ö
Enumerations
Enumerator
+
Files
File List
+
Globals
+
All
$
a
b
c
d
e
f
g
h
i
l
m
n
o
p
r
s
t
u
v
z
+
Functions
a
b
c
d
e
f
g
h
i
m
n
p
r
s
t
u
v
+
Variables
$
a
c
e
g
h
i
m
n
o
p
r
s
t
u
v
z
Enumerations
Enumerator
Examples
•
All
Data Structures
Namespaces
Files
Functions
Variables
Enumerations
Enumerator
Modules
Pages
class.ilSoapDataCollectionAdministration.php
Go to the documentation of this file.
1
<?php
22
class
ilSoapDataCollectionAdministration
extends
ilSoapAdministration
23
{
28
public
function
exportDataCollectionContent
(
29
string
$sid,
30
int
$target_ref_id,
31
?
int
$table_id =
null
,
32
string
$format =
ilDclContentExporter::EXPORT_EXCEL
,
33
?
string
$filepath =
null
34
) {
35
$this->
initAuth
($sid);
36
$this->
initIlias
();
37
if
(!$this->
checkSession
($sid)) {
38
return
$this->
raiseError
($this->
getMessage
(), $this->
getMessageCode
());
39
}
40
41
if
(!$target_obj =
new
ilObjDataCollection
($target_ref_id)) {
42
return
$this->
raiseError
(
'No valid target given.'
,
'CLIENT'
);
43
}
44
45
if
(
ilObject::_isInTrash
($target_ref_id)) {
46
return
$this->
raiseError
(
47
"Parent with ID $target_ref_id has been deleted."
,
48
'CLIENT_TARGET_DELETED'
49
);
50
}
51
52
if
(!
ilObjDataCollectionAccess::hasReadAccess
($target_ref_id)) {
53
return
$this->
raiseError
(
54
'Check access failed. No permission to read DataCollection'
,
55
"CLIENT_PERMISSION_ISSUE"
56
);
57
}
58
59
try
{
60
$exporter =
new
ilDclContentExporter
($target_ref_id, $table_id);
61
return
$exporter->export($format, $filepath);
62
}
catch
(
ilException
$exception) {
63
return
$this->
raiseError
($exception->getMessage(), $exception->getCode());
64
}
65
}
66
}
ilException
ilDclContentExporter\EXPORT_EXCEL
const EXPORT_EXCEL
Definition:
class.ilDclContentExporter.php:28
ilSoapAdministration\getMessageCode
getMessageCode()
Definition:
class.ilSoapAdministration.php:131
ilSoapDataCollectionAdministration
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Definition:
class.ilSoapDataCollectionAdministration.php:22
ilSoapAdministration\raiseError
raiseError(string $a_message, $a_code)
Definition:
class.ilSoapAdministration.php:186
ilSoapAdministration
ilSoapDataCollectionAdministration\exportDataCollectionContent
exportDataCollectionContent(string $sid, int $target_ref_id, ?int $table_id=null, string $format=ilDclContentExporter::EXPORT_EXCEL, ?string $filepath=null)
Export DataCollection async.
Definition:
class.ilSoapDataCollectionAdministration.php:28
ilSoapAdministration\initAuth
initAuth(string $sid)
Definition:
class.ilSoapAdministration.php:136
null
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
Definition:
shib_logout.php:142
ilSoapAdministration\checkSession
checkSession(string $sid)
Definition:
class.ilSoapAdministration.php:59
ilObject\_isInTrash
static _isInTrash(int $ref_id)
Definition:
class.ilObject.php:1095
ilObjDataCollectionAccess\hasReadAccess
static hasReadAccess(int $ref, ?int $user_id=0)
Definition:
class.ilObjDataCollectionAccess.php:240
ilDclContentExporter
Hook-Class for exporting data-collections (used in SOAP-Class) This Class avoids duplicated code by r...
Definition:
class.ilDclContentExporter.php:25
ilSoapAdministration\initIlias
initIlias()
Definition:
class.ilSoapAdministration.php:156
ilSoapAdministration\getMessage
getMessage()
Definition:
class.ilSoapAdministration.php:115
ilObjDataCollection
Definition:
class.ilObjDataCollection.php:21
components
ILIAS
soap
classes
class.ilSoapDataCollectionAdministration.php
Generated on Wed Apr 2 2025 23:03:36 for ILIAS by
1.8.13 (using
Doxyfile
)