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
UserIdsOfPositionAndOrgUnit.php
Go to the documentation of this file.
1
<?php
2
3
namespace
ILIAS\OrgUnit\Webservices\SOAP
;
4
5
use
ilOrgUnitUserAssignmentQueries
;
6
12
class
UserIdsOfPositionAndOrgUnit
extends
Base
13
{
14
20
protected
function
run
(array $params)
21
{
22
$position_id = $params[self::POSITION_ID];
23
$orgu_id = $params[self::ORGU_REF_ID];
24
25
return
ilOrgUnitUserAssignmentQueries::getInstance
()->getUserIdsOfOrgUnitsInPosition(array($orgu_id), $position_id);
26
}
27
28
32
public
function
getName
()
33
{
34
return
"getUserIdsOfPositionAndOrgUnit"
;
35
}
36
37
41
protected
function
getAdditionalInputParams
()
42
{
43
return
array(
44
self::POSITION_ID =>
Base::TYPE_INT
,
45
self::ORGU_REF_ID =>
Base::TYPE_INT
,
46
);
47
}
48
49
53
public
function
getOutputParams
()
54
{
55
return
array(
'usr_ids'
=>
Base::TYPE_INT_ARRAY
);
56
}
57
58
62
public
function
getDocumentation
()
63
{
64
return
"Returns ids of users in a position of a given Org Unit"
;
65
}
66
}
ILIAS\OrgUnit\Webservices\SOAP\UserIdsOfPositionAndOrgUnit\run
run(array $params)
Definition:
UserIdsOfPositionAndOrgUnit.php:20
ILIAS\OrgUnit\Webservices\SOAP\UserIdsOfPositionAndOrgUnit\getAdditionalInputParams
getAdditionalInputParams()
Definition:
UserIdsOfPositionAndOrgUnit.php:41
ILIAS\OrgUnit\Webservices\SOAP
Definition:
AddUserIdToPositionInOrgUnit.php:3
ILIAS\OrgUnit\Webservices\SOAP\UserIdsOfPositionAndOrgUnit\getName
getName()
Definition:
UserIdsOfPositionAndOrgUnit.php:32
ILIAS\OrgUnit\Webservices\SOAP\Base\TYPE_INT_ARRAY
const TYPE_INT_ARRAY
Definition:
Base.php:24
ILIAS\OrgUnit\Webservices\SOAP\Base
Class Base.
Definition:
Base.php:18
ilOrgUnitUserAssignmentQueries
ILIAS\OrgUnit\Webservices\SOAP\UserIdsOfPositionAndOrgUnit
Class UserIdsOfPositionAndOrgUnit.
Definition:
UserIdsOfPositionAndOrgUnit.php:12
ILIAS\OrgUnit\Webservices\SOAP\UserIdsOfPositionAndOrgUnit\getOutputParams
getOutputParams()
Get the output parameters in the same format as the input parameters.array
Definition:
UserIdsOfPositionAndOrgUnit.php:53
ilOrgUnitUserAssignmentQueries\getInstance
static getInstance()
Definition:
class.ilOrgUnitUserAssignmentQueries.php:20
ILIAS\OrgUnit\Webservices\SOAP\Base\TYPE_INT
const TYPE_INT
Definition:
Base.php:26
ILIAS\OrgUnit\Webservices\SOAP\UserIdsOfPositionAndOrgUnit\getDocumentation
getDocumentation()
Get the documentation of this method.string
Definition:
UserIdsOfPositionAndOrgUnit.php:62
Modules
OrgUnit
classes
Webservices
SOAP
UserIdsOfPositionAndOrgUnit.php
Generated on Wed Apr 9 2025 20:01:06 for ILIAS by
1.8.13 (using
Doxyfile
)