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
class.ilCloudHookPlugin.php
Go to the documentation of this file.
1
<?php
2
/* Copyright (c) 1998-2010 ILIAS open source, Extended GPL, see docs/LICENSE */
3
4
include_once(
"./Services/Component/classes/class.ilPlugin.php"
);
5
16
abstract
class
ilCloudHookPlugin
extends
ilPlugin
17
{
18
24
final
public
function
getComponentType
()
25
{
26
return
IL_COMP_MODULE
;
27
}
28
29
35
final
public
function
getComponentName
()
36
{
37
return
"Cloud"
;
38
}
39
40
46
final
public
function
getSlot
()
47
{
48
return
"CloudHook"
;
49
}
50
51
57
final
public
function
getSlotId
()
58
{
59
return
"cldh"
;
60
}
61
62
66
final
protected
function
slotInit
()
67
{
68
// nothing to do here
69
}
70
71
72
public
function
getPluginTablePrefix
()
73
{
74
$id
= $this->
getId
();
75
if
(!
$id
) {
76
$rec =
ilPlugin::getPluginRecord
($this->
getComponentType
(), $this->
getComponentName
(), $this->
getSlotId
(), $this->
getPluginName
());
77
$id
= $rec[
'plugin_id'
];
78
}
79
80
return
$this->
getSlotObject
()->getPrefix() .
"_"
.
$id
;
81
}
82
83
84
public
function
getPluginTableName
()
85
{
86
return
$this->
getPluginTablePrefix
() .
"_props"
;
87
}
88
89
90
public
function
getPluginConfigTableName
()
91
{
92
return
$this->
getPluginTablePrefix
() .
"_config"
;
93
}
94
}
ilPlugin\getPluginRecord
static getPluginRecord(string $a_ctype, string $a_cname, string $a_slot_id, string $a_pname)
Definition:
class.ilPlugin.php:727
ilCloudHookPlugin\getComponentName
getComponentName()
Get Component Name.
Definition:
class.ilCloudHookPlugin.php:35
ilCloudHookPlugin\slotInit
slotInit()
Object initialization done by slot.
Definition:
class.ilCloudHookPlugin.php:66
ilPlugin\getId
getId()
Definition:
class.ilPlugin.php:131
ilCloudHookPlugin\getPluginTablePrefix
getPluginTablePrefix()
Definition:
class.ilCloudHookPlugin.php:72
ilPlugin\$id
$id
Definition:
class.ilPlugin.php:52
IL_COMP_MODULE
const IL_COMP_MODULE
Definition:
class.ilComponent.php:5
ilCloudHookPlugin\getPluginTableName
getPluginTableName()
Definition:
class.ilCloudHookPlugin.php:84
ilCloudHookPlugin\getSlot
getSlot()
Get Slot Name.
Definition:
class.ilCloudHookPlugin.php:46
ilCloudHookPlugin\getComponentType
getComponentType()
Get Component Type.
Definition:
class.ilCloudHookPlugin.php:24
ilPlugin\getPluginName
getPluginName()
Get Plugin Name.
ilPlugin\getSlotObject
getSlotObject()
Definition:
class.ilPlugin.php:245
ilCloudHookPlugin\getSlotId
getSlotId()
Get Slot ID.
Definition:
class.ilCloudHookPlugin.php:57
ilPlugin
ilCloudHookPlugin
Class ilCloudHookPlugin.
Definition:
class.ilCloudHookPlugin.php:16
ilCloudHookPlugin\getPluginConfigTableName
getPluginConfigTableName()
Definition:
class.ilCloudHookPlugin.php:90
Modules
Cloud
classes
class.ilCloudHookPlugin.php
Generated on Sun Apr 13 2025 20:00:57 for ILIAS by
1.8.13 (using
Doxyfile
)