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.ilECSCourseConnector.php
Go to the documentation of this file.
1
<?php
2
/* Copyright (c) 1998-2009 ILIAS open source, Extended GPL, see docs/LICENSE */
3
4
include_once
'./Services/WebServices/ECS/classes/class.ilECSConnector.php'
;
5
include_once
'./Services/WebServices/ECS/classes/class.ilECSConnectorException.php'
;
6
13
class
ilECSCourseConnector
extends
ilECSConnector
14
{
15
20
public
function
__construct
(
ilECSSetting
$settings
= null)
21
{
22
parent::__construct(
$settings
);
23
}
24
25
30
public
function
getCourse
($course_id,$a_details =
false
)
31
{
32
$this->path_postfix =
'/campusconnect/courses/'
. (int) $course_id;
33
34
if
($a_details and $course_id)
35
{
36
$this->path_postfix .=
'/details'
;
37
}
38
39
try
{
40
$this->
prepareConnection
();
41
$this->
setHeader
(array());
42
if
($a_details)
43
{
44
$this->
addHeader
(
'Accept'
,
'application/json'
);
45
}
46
else
47
{
48
$this->
addHeader
(
'Accept'
,
'text/uri-list'
);
49
}
50
$this->curl->setOpt(CURLOPT_HTTPHEADER, $this->
getHeader
());
51
$res
= $this->
call
();
52
53
if
(substr(
$res
, 0, 4) ==
'http'
)
54
{
55
$json = file_get_contents(
$res
);
56
$ecs_result =
new
ilECSResult
($json);
57
}
58
else
59
{
60
$ecs_result =
new
ilECSResult
(
$res
);
61
62
}
63
64
// Return ECSEContentDetails for details switch
65
if
($a_details)
66
{
67
include_once
'./Services/WebServices/ECS/classes/class.ilECSEContentDetails.php'
;
68
$details =
new
ilECSEContentDetails
();
69
$details->loadFromJson($ecs_result->getResult());
70
return
$details;
71
}
72
// Return json result
73
return
$ecs_result->getResult();
74
}
75
catch
(
ilCurlConnectionException
$e)
76
{
77
throw
new
ilECSConnectorException
(
'Error calling ECS service: '
.$e->getMessage());
78
}
79
}
80
}
81
?>
ilCurlConnectionException
Definition:
class.ilCurlConnectionException.php:34
ilECSSetting
Definition:
class.ilECSSetting.php:33
$res
$res
Definition:
examplelayouts.sql.php:25
ilECSConnector\$settings
$settings
Definition:
class.ilECSConnector.php:50
ilECSConnector\getHeader
getHeader()
Definition:
class.ilECSConnector.php:85
ilECSResult
Definition:
class.ilECSResult.php:35
ilECSEContentDetails
Presentation of ecs content details (http://...campusconnect/courselinks/id/details) ...
Definition:
class.ilECSEContentDetails.php:32
ilECSConnectorException
Definition:
class.ilECSConnectorException.php:36
ilECSCourseConnector\__construct
__construct(ilECSSetting $settings=null)
Constructor.
Definition:
class.ilECSCourseConnector.php:20
ilECSCourseConnector
Definition:
class.ilECSCourseConnector.php:13
ilECSConnector\setHeader
setHeader($a_header_strings)
Definition:
class.ilECSConnector.php:90
ilECSConnector\call
call()
call peer
Definition:
class.ilECSConnector.php:632
ilECSConnector
Definition:
class.ilECSConnector.php:38
ilECSConnector\addHeader
addHeader($a_name, $a_value)
Add Header.
Definition:
class.ilECSConnector.php:80
ilECSConnector\prepareConnection
prepareConnection()
prepare connection
Definition:
class.ilECSConnector.php:585
ilECSCourseConnector\getCourse
getCourse($course_id, $a_details=false)
Get single directory tree.
Definition:
class.ilECSCourseConnector.php:30
Services
WebServices
ECS
classes
Course
class.ilECSCourseConnector.php
Generated on Mon Dec 21 2020 19:01:26 for ILIAS by
1.8.13 (using
Doxyfile
)