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.Context.php
Go to the documentation of this file.
1
<?php
2
19
declare(strict_types=1);
20
21
namespace
ILIAS\Notes
;
22
27
class
Context
28
{
29
protected
int
$obj_id
= 0;
30
protected
int
$sub_obj_id
= 0;
31
protected
int
$news_id
= 0;
32
protected
string
$type
=
""
;
33
protected
bool
$in_repo
=
false
;
34
35
public
function
__construct
(
36
int
$obj_id = 0,
37
int
$sub_obj_id = 0,
38
string
$type =
""
,
39
int
$news_id = 0,
40
bool
$in_repo =
true
41
) {
42
$this->obj_id =
$obj_id
;
43
$this->sub_obj_id =
$sub_obj_id
;
44
$this->type =
$type
;
45
$this->news_id =
$news_id
;
46
$this->in_repo =
$in_repo
;
47
}
48
49
public
function
getObjId
():
int
50
{
51
return
$this->obj_id
;
52
}
53
54
public
function
getSubObjId
():
int
55
{
56
return
$this->sub_obj_id
;
57
}
58
59
public
function
getNewsId
():
int
60
{
61
return
$this->news_id
;
62
}
63
64
public
function
getType
(): string
65
{
66
return
$this->type
;
67
}
68
69
public
function
getInRepository
(): bool
70
{
71
return
$this->in_repo
;
72
}
73
}
ILIAS\Notes\Context\getSubObjId
getSubObjId()
Definition:
class.Context.php:54
ILIAS\Notes\Context\getNewsId
getNewsId()
Definition:
class.Context.php:59
ILIAS\Notes\Context\$news_id
int $news_id
Definition:
class.Context.php:31
ILIAS\Notes
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Definition:
class.Context.php:21
ILIAS\Notes\Context\$obj_id
int $obj_id
Definition:
class.Context.php:29
ILIAS\Notes\Context\$type
string $type
Definition:
class.Context.php:32
ILIAS\Notes\Context\getInRepository
getInRepository()
Definition:
class.Context.php:69
ILIAS\Notes\Context\getObjId
getObjId()
Definition:
class.Context.php:49
ILIAS\Notes\Context\$sub_obj_id
int $sub_obj_id
Definition:
class.Context.php:30
ILIAS\Notes\Context\getType
getType()
Definition:
class.Context.php:64
ILIAS\Notes\Context
Definition:
class.Context.php:27
ILIAS\Repository\int
int(string $key)
Definition:
trait.BaseGUIRequest.php:61
ILIAS\Notes\Context\$in_repo
bool $in_repo
Definition:
class.Context.php:33
ILIAS\Notes\Context\__construct
__construct(int $obj_id=0, int $sub_obj_id=0, string $type="", int $news_id=0, bool $in_repo=true)
Definition:
class.Context.php:35
components
ILIAS
Notes
Context
class.Context.php
Generated on Wed Apr 2 2025 23:03:21 for ILIAS by
1.8.13 (using
Doxyfile
)