ILIAS
release_8 Revision v8.19
◀ 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
n
o
p
r
s
t
u
v
w
x
+
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
j
l
m
p
s
t
u
+
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
r
s
t
u
v
w
x
z
+
Functions
_
a
b
c
d
e
g
h
i
m
n
p
r
s
t
u
v
x
+
Variables
$
a
c
d
e
f
g
h
i
j
k
l
m
n
o
p
r
s
t
u
v
w
z
Examples
•
All
Data Structures
Namespaces
Files
Functions
Variables
Modules
Pages
class.ilLoggingSetupSettings.php
Go to the documentation of this file.
1
<?php
2
3
declare(strict_types=1);
4
/* Copyright (c) 1998-2015 ILIAS open source, Extended GPL, see docs/LICENSE */
5
11
class
ilLoggingSetupSettings
implements
ilLoggingSettings
12
{
13
private
bool
$enabled
=
false
;
14
private
string
$log_dir
=
''
;
15
private
string
$log_file
=
''
;
16
17
18
public
function
init
(): void
19
{
20
$ilIliasIniFile
=
new
ilIniFile
(
"./ilias.ini.php"
);
21
$ilIliasIniFile
->read();
22
23
$enabled =
$ilIliasIniFile
->readVariable(
'log'
,
'enabled'
);
24
$this->enabled = $enabled ==
'1'
;
25
$this->log_dir = (string)
$ilIliasIniFile
->readVariable(
'log'
,
'path'
);
26
$this->log_file = (string)
$ilIliasIniFile
->readVariable(
'log'
,
'file'
);
27
}
28
33
public
function
isEnabled
(): bool
34
{
35
return
$this->enabled
;
36
}
37
38
public
function
getLogDir
(): string
39
{
40
return
$this->log_dir
;
41
}
42
43
public
function
getLogFile
(): string
44
{
45
return
$this->log_file
;
46
}
47
52
public
function
getLevel
():
int
53
{
54
return
ilLogLevel::INFO
;
55
}
56
57
public
function
getLevelByComponent
(
string
$a_component_id):
int
58
{
59
return
$this->
getLevel
();
60
}
61
66
public
function
getCacheLevel
():
int
67
{
68
return
ilLogLevel::INFO
;
69
}
70
71
public
function
isCacheEnabled
(): bool
72
{
73
return
false
;
74
}
75
76
public
function
isMemoryUsageEnabled
(): bool
77
{
78
return
false
;
79
}
80
81
public
function
isBrowserLogEnabled
(): bool
82
{
83
return
false
;
84
}
85
86
public
function
isBrowserLogEnabledForUser
(
string
$a_login): bool
87
{
88
return
false
;
89
}
90
91
public
function
getBrowserLogUsers
(): array
92
{
93
return
array();
94
}
95
}
$ilIliasIniFile
$ilIliasIniFile
Definition:
imgupload.php:32
ilLoggingSetupSettings\getLogDir
getLogDir()
Definition:
class.ilLoggingSetupSettings.php:38
ilLoggingSetupSettings\$log_dir
string $log_dir
Definition:
class.ilLoggingSetupSettings.php:14
ilLoggingSetupSettings\isBrowserLogEnabled
isBrowserLogEnabled()
Definition:
class.ilLoggingSetupSettings.php:81
ilLoggingSetupSettings\getCacheLevel
getCacheLevel()
Get log Level.
Definition:
class.ilLoggingSetupSettings.php:66
ilLoggingSetupSettings\$log_file
string $log_file
Definition:
class.ilLoggingSetupSettings.php:15
ilLoggingSetupSettings\init
init()
Definition:
class.ilLoggingSetupSettings.php:18
ilLoggingSetupSettings
Logger settings for setup.
Definition:
class.ilLoggingSetupSettings.php:11
ilLogLevel\INFO
const INFO
Definition:
class.ilLogLevel.php:19
ilLoggingSettings
Definition:
interface.ilLoggingSettings.php:14
ilLoggingSetupSettings\getBrowserLogUsers
getBrowserLogUsers()
Definition:
class.ilLoggingSetupSettings.php:91
ilLoggingSetupSettings\isBrowserLogEnabledForUser
isBrowserLogEnabledForUser(string $a_login)
Definition:
class.ilLoggingSetupSettings.php:86
ilLoggingSetupSettings\getLevelByComponent
getLevelByComponent(string $a_component_id)
Definition:
class.ilLoggingSetupSettings.php:57
ilLoggingSetupSettings\$enabled
bool $enabled
Definition:
class.ilLoggingSetupSettings.php:13
ilLoggingSetupSettings\isEnabled
isEnabled()
Logging enabled.
Definition:
class.ilLoggingSetupSettings.php:33
ilLoggingSetupSettings\getLevel
getLevel()
Get log Level.
Definition:
class.ilLoggingSetupSettings.php:52
ilLoggingSetupSettings\getLogFile
getLogFile()
Definition:
class.ilLoggingSetupSettings.php:43
ILIAS\Repository\int
int(string $key)
Definition:
trait.BaseGUIRequest.php:61
ilLoggingSetupSettings\isCacheEnabled
isCacheEnabled()
Definition:
class.ilLoggingSetupSettings.php:71
ilIniFile
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Definition:
class.ilIniFile.php:47
ilLoggingSetupSettings\isMemoryUsageEnabled
isMemoryUsageEnabled()
Definition:
class.ilLoggingSetupSettings.php:76
Services
Logging
classes
class.ilLoggingSetupSettings.php
Generated on Thu Apr 3 2025 22:02:23 for ILIAS by
1.8.13 (using
Doxyfile
)