projects
/
mtweb
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
eb91f9df200dfb0df22281323e6628e772b06751
[mtweb]
/
web
/
app
/
mw_plugin.php
1
<?php
2
3
class mw_plugin
4
{
5
6
function title()
7
{ return "(sans titre)";
8
}
9
10
function description()
11
{ return "";
12
}
13
14
function install($env)
15
{ return true;
16
}
17
18
function uninstall($env)
19
{ return true;
20
}
21
22
function enable($env)
23
{ return true;
24
}
25
26
27
function disable($env)
28
{ return true;
29
}
30
31
function init($env)
32
{ return true;
33
}
34
35
}
36
37
38
?>