ILIAS  release_5-3 Revision v5.3.23-19-g915713cf615
class.ilCachedPlugin.php
Go to the documentation of this file.
1<?php
2
9abstract class ilCachedPlugin extends ilPlugin
10{
11 public function updateDatabase()
12 {
13 return parent::updateDatabase(); // TODO: Change the autogenerated stub
14 }
15
16
17 public static function lookupTxt($a_mod_prefix, $a_pl_id, $a_lang_var)
18 {
19 return parent::lookupTxt($a_mod_prefix, $a_pl_id, $a_lang_var); // TODO: Change the autogenerated stub
20 }
21
22
23 protected function init()
24 {
25 parent::init(); // TODO: Change the autogenerated stub
26 }
27
28
29 protected function beforeActivation()
30 {
31 return parent::beforeActivation(); // TODO: Change the autogenerated stub
32 }
33
34
35 protected function afterActivation()
36 {
37 parent::afterActivation(); // TODO: Change the autogenerated stub
38 }
39
40
41 protected function afterDeactivation()
42 {
43 parent::afterDeactivation(); // TODO: Change the autogenerated stub
44 }
45
46
47 protected function beforeUpdate()
48 {
49 return parent::beforeUpdate(); // TODO: Change the autogenerated stub
50 }
51
52
53 protected function afterUpdate()
54 {
55 parent::afterUpdate(); // TODO: Change the autogenerated stub
56 }
57
58
59 public function lookupNameForId($a_ctype, $a_cname, $a_slot_id, $a_plugin_id)
60 {
61 return parent::lookupNameForId($a_ctype, $a_cname, $a_slot_id, $a_plugin_id); // TODO: Change the autogenerated stub
62 }
63
64
65 public function lookupIdForName($a_ctype, $a_cname, $a_slot_id, $a_plugin_name)
66 {
67 return parent::lookupIdForName($a_ctype, $a_cname, $a_slot_id, $a_plugin_name); // TODO: Change the autogenerated stub
68 }
69}
An exception for terminatinating execution or to throw for unit testing.
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.