ILIAS
release_7 Revision v7.30-3-g800a261c036
◀ 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
r
s
t
w
+
Functions
_
a
b
c
f
g
h
i
r
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.ilLMMultiSrt.php
Go to the documentation of this file.
1
<?php
2
3
/* Copyright (c) 1998-2015 ILIAS open source, Extended GPL, see docs/LICENSE */
4
12
class
ilLMMultiSrt
implements
ilMobMultiSrtInt
13
{
14
public
function
__construct
($a_lm)
15
{
16
$this->lm = $a_lm;
17
}
18
24
public
function
getUploadDir
()
25
{
26
return
ilUtil::getDataDir
() .
"/lm_data"
.
27
"/lm_"
. $this->lm->getId() .
"/srt_tmp"
;
28
}
29
36
public
function
getMobIds
()
37
{
38
// add mob information to items
39
// all pages
40
$pages =
ilLMPageObject::getPageList
($this->lm->getId());
41
$mobs
= array();
42
foreach
($pages as $page) {
43
// all media objects
44
$pg_mobs =
ilObjMediaObject::_getMobsOfObject
(
"lm:pg"
, $page[
"obj_id"
], 0,
""
);
45
foreach
($pg_mobs as $k => $pg_mob) {
46
$mobs[$k] = $pg_mob;
47
}
48
}
49
return
$mobs
;
50
}
51
}
ilObjMediaObject\_getMobsOfObject
static _getMobsOfObject($a_type, $a_id, $a_usage_hist_nr=0, $a_lang="-")
get mobs of object
Definition:
class.ilObjMediaObject.php:1032
$mobs
$mobs
Definition:
imgupload.php:54
ilMobMultiSrtInt
Interface ilMobMultiSrtInt.
Definition:
interface.ilMobMultiSrtInt.php:8
ilLMMultiSrt\__construct
__construct($a_lm)
Definition:
class.ilLMMultiSrt.php:14
ilLMMultiSrt\getMobIds
getMobIds()
Definition:
class.ilLMMultiSrt.php:36
ilUtil\getDataDir
static getDataDir()
get data directory (outside webspace)
Definition:
class.ilUtil.php:1530
ilLMMultiSrt\getUploadDir
getUploadDir()
Get directory for multi srt upload.
Definition:
class.ilLMMultiSrt.php:24
ilLMPageObject\getPageList
static getPageList($lm_id)
static
Definition:
class.ilLMPageObject.php:334
ilLMMultiSrt
Handler class for multi srt upload in learning modules.
Definition:
class.ilLMMultiSrt.php:12
Modules
LearningModule
classes
class.ilLMMultiSrt.php
Generated on Sat Apr 5 2025 21:01:01 for ILIAS by
1.8.13 (using
Doxyfile
)