mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-30 16:49:58 +09:00
add site admin menu
git-svn-id: http://xe-core.googlecode.com/svn/branches/1.5.0@8796 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
parent
01b40169c7
commit
51a1d0a37e
6 changed files with 312 additions and 17 deletions
|
|
@ -0,0 +1,40 @@
|
|||
<?php
|
||||
/**
|
||||
* @class site
|
||||
* @author NHN (developers@xpressengine.com)
|
||||
* @brief base class of site module
|
||||
**/
|
||||
|
||||
class site extends ModuleObject {
|
||||
|
||||
/**
|
||||
* @brief install admin 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() {
|
||||
}
|
||||
}
|
||||
?>
|
||||
Loading…
Add table
Add a link
Reference in a new issue