ILIAS
release_6 Revision v6.24-5-g0c8bfefb3b8
◀ ilDoc Overview
Main Page
Related Pages
Modules
+
Namespaces
Namespace List
+
Namespace Members
+
All
$
_
a
b
c
d
e
f
g
h
i
j
l
m
p
s
t
w
+
Functions
_
a
b
c
f
g
h
i
s
t
w
+
Variables
$
c
d
e
f
g
h
j
l
m
p
s
t
+
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
+
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
l
m
n
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.ilServicesTrackingExtractor.php
Go to the documentation of this file.
1
<?php
2
/* Copyright (c) 1998-2016 ILIAS open source, Extended GPL, see docs/LICENSE */
3
5
require_once
'./Services/WorkflowEngine/classes/extractors/class.ilBaseExtractor.php'
;
6
14
class
ilServicesTrackingExtractor
extends
ilBaseExtractor
15
{
22
public
function
extract
($event, $parameters)
23
{
24
//$this->ilExtractedParams->setSubjectType('tracking'); See below what we do here different from other impl.
25
26
switch
($event) {
27
case
'updateStatus'
:
28
$this->
extractTracking
($parameters);
29
break
;
30
}
31
32
return
$this->ilExtractedParams
;
33
}
34
38
protected
function
extractTracking
($parameters)
39
{
40
$this->
ilExtractedParams
->
setSubjectType
(
'tracking_'
. $parameters[
'status'
]);
41
$this->
ilExtractedParams
->
setSubjectId
($parameters[
'obj_id'
]);
42
$this->
ilExtractedParams
->
setContextType
(
'usr_id'
);
43
$this->
ilExtractedParams
->
setContextId
($parameters[
'usr_id'
]);
44
}
45
}
ilExtractedParams\setSubjectId
setSubjectId($subject_id)
Definition:
class.ilExtractedParams.php:52
ilServicesTrackingExtractor
PhpIncludeInspection
Definition:
class.ilServicesTrackingExtractor.php:14
ilExtractedParams\setContextType
setContextType($context_type)
Definition:
class.ilExtractedParams.php:68
ilBaseExtractor\$ilExtractedParams
$ilExtractedParams
Definition:
class.ilBaseExtractor.php:17
ilExtractedParams
Class ilExtractedParams.
Definition:
class.ilExtractedParams.php:11
ilExtractedParams\setContextId
setContextId($context_id)
Definition:
class.ilExtractedParams.php:84
ilServicesTrackingExtractor\extractTracking
extractTracking($parameters)
Definition:
class.ilServicesTrackingExtractor.php:38
ilBaseExtractor
PhpIncludeInspection
Definition:
class.ilBaseExtractor.php:14
ilServicesTrackingExtractor\extract
extract($event, $parameters)
Definition:
class.ilServicesTrackingExtractor.php:22
ilExtractedParams\setSubjectType
setSubjectType($subject_type)
Definition:
class.ilExtractedParams.php:36
Services
WorkflowEngine
classes
extractors
class.ilServicesTrackingExtractor.php
Generated on Wed Apr 2 2025 20:01:24 for ILIAS by
1.8.13 (using
Doxyfile
)