ILIAS  release_5-1 Revision 5.0.0-5477-g43f3e3fab5f
class.ilCachedPlugin.php
Go to the documentation of this file.
1<?php
2
9abstract class ilCachedPlugin extends ilPlugin {
10
11 function updateDatabase() {
12 return parent::updateDatabase(); // TODO: Change the autogenerated stub
13 }
14
15
16 static function lookupTxt($a_mod_prefix, $a_pl_id, $a_lang_var) {
17 return parent::lookupTxt($a_mod_prefix, $a_pl_id, $a_lang_var); // TODO: Change the autogenerated stub
18 }
19
20
21 protected function init() {
22 parent::init(); // TODO: Change the autogenerated stub
23 }
24
25
26 protected function beforeActivation() {
27 return parent::beforeActivation(); // TODO: Change the autogenerated stub
28 }
29
30
31 protected function afterActivation() {
32 parent::afterActivation(); // TODO: Change the autogenerated stub
33 }
34
35
36 protected function afterDeactivation() {
37 parent::afterDeactivation(); // TODO: Change the autogenerated stub
38 }
39
40
41 protected function beforeUpdate() {
42 return parent::beforeUpdate(); // TODO: Change the autogenerated stub
43 }
44
45
46 protected function afterUpdate() {
47 parent::afterUpdate(); // TODO: Change the autogenerated stub
48 }
49
50
51 function lookupNameForId($a_ctype, $a_cname, $a_slot_id, $a_plugin_id) {
52 return parent::lookupNameForId($a_ctype, $a_cname, $a_slot_id, $a_plugin_id); // TODO: Change the autogenerated stub
53 }
54
55
56 function lookupIdForName($a_ctype, $a_cname, $a_slot_id, $a_plugin_name) {
57 return parent::lookupIdForName($a_ctype, $a_cname, $a_slot_id, $a_plugin_name); // TODO: Change the autogenerated stub
58 }
59}
60
61?>
Class ilCachedPlugin.
init()
Object initialization.
beforeUpdate()
Before update processing.
beforeActivation()
Before activation processing.
lookupNameForId($a_ctype, $a_cname, $a_slot_id, $a_plugin_id)
Lookup name for id.
afterDeactivation()
After deactivation processing.
lookupIdForName($a_ctype, $a_cname, $a_slot_id, $a_plugin_name)
Lookup id for name.
updateDatabase()
Update database.
static lookupTxt($a_mod_prefix, $a_pl_id, $a_lang_var)
Lookup language text.
afterActivation()
After activation processing.
afterUpdate()
After update processing.