ILIAS
trunk Revision v11.0_alpha-1702-gfd3ecb7f852
◀ 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.ilLMMultiSrt.php
Go to the documentation of this file.
1
<?php
2
23
class
ilLMMultiSrt
implements
ilMobMultiSrtInt
24
{
25
protected
ilObjLearningModule
$lm
;
26
27
public
function
__construct
(
ilObjLearningModule
$a_lm)
28
{
29
$this->lm = $a_lm;
30
}
31
35
public
function
getUploadDir
(): string
36
{
37
return
ilFileUtils::getDataDir
() .
"/lm_data"
.
38
"/lm_"
. $this->lm->getId() .
"/srt_tmp"
;
39
}
40
41
public
function
getMobIds
(): array
42
{
43
// add mob information to items
44
// all pages
45
$pages =
ilLMPageObject::getPageList
($this->lm->getId());
46
$mobs = array();
47
foreach
($pages as $page) {
48
// all media objects
49
$pg_mobs =
ilObjMediaObject::_getMobsOfObject
(
"lm:pg"
, $page[
"obj_id"
], 0,
""
);
50
foreach
($pg_mobs as $k => $pg_mob) {
51
$mobs[$k] = $pg_mob;
52
}
53
}
54
return
$mobs;
55
}
56
}
ilObjLearningModule
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Definition:
class.ilObjLearningModule.php:22
ilLMMultiSrt\$lm
ilObjLearningModule $lm
Definition:
class.ilLMMultiSrt.php:25
ilMobMultiSrtInt
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Definition:
interface.ilMobMultiSrtInt.php:23
ilLMMultiSrt\getMobIds
getMobIds()
Definition:
class.ilLMMultiSrt.php:41
ilLMMultiSrt\__construct
__construct(ilObjLearningModule $a_lm)
Definition:
class.ilLMMultiSrt.php:27
ilFileUtils\getDataDir
static getDataDir()
get data directory (outside webspace)
Definition:
class.ilFileUtils.php:250
ilObjMediaObject\_getMobsOfObject
static _getMobsOfObject(string $a_type, int $a_id, int $a_usage_hist_nr=0, string $a_lang="-")
Definition:
class.ilObjMediaObject.php:810
ilLMPageObject\getPageList
static getPageList(int $lm_id)
Definition:
class.ilLMPageObject.php:202
ilLMMultiSrt\getUploadDir
getUploadDir()
Get directory for multi srt upload.
Definition:
class.ilLMMultiSrt.php:35
ilLMMultiSrt
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Definition:
class.ilLMMultiSrt.php:23
components
ILIAS
LearningModule
classes
class.ilLMMultiSrt.php
Generated on Thu Apr 3 2025 23:03:09 for ILIAS by
1.8.13 (using
Doxyfile
)