forked from kangisworking/xe-module-textmessage
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtextmessage.class.php
More file actions
45 lines (40 loc) · 748 Bytes
/
textmessage.class.php
File metadata and controls
45 lines (40 loc) · 748 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
<?php
/**
* vi:set sw=4 ts=4 noexpandtab fileencoding=utf8:
* @class textmessage
* @author wiley (wiley@nurigo.net)
* @brief base class of textmessage module
**/
class textmessage extends ModuleObject
{
/**
* @brief install textmessage module
* @return new Object
**/
function moduleInstall()
{
return new Object();
}
/**
* @brief if update is necessary it returns true
**/
function checkUpdate()
{
return false;
}
/**
* @brief update module
* @return new Object
**/
function moduleUpdate()
{
return new Object();
}
/**
* @brief regenerate cache file
* @return none
**/
function recompileCache() { }
}
/* End of file textmessage.class.php */
/* Location: ./modules/textmessage.class.php */