adds comments for phpDoc

git-svn-id: http://xe-core.googlecode.com/svn/branches/1.5.0@10754 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
flyskyko 2012-05-30 08:17:56 +00:00
parent 455091f7e8
commit e010c07440
5 changed files with 149 additions and 55 deletions

View file

@ -1,14 +1,14 @@
<?php
/**
* @class addon
* High class of addon modules
* @author NHN (developers@xpressengine.com)
* @brief high class of addon modules
**/
class addon extends ModuleObject {
/**
* @brief Implement if additional tasks are necessary when installing
* Implement if additional tasks are necessary when installing
*
* @return Object
**/
function moduleInstall() {
// Register to add a few
@ -28,7 +28,9 @@
}
/**
* @brief a method to check if successfully installed
* A method to check if successfully installed
*
* @return bool
**/
function checkUpdate() {
$oDB = &DB::getInstance();
@ -42,7 +44,9 @@
}
/**
* @brief Execute update
* Execute update
*
* @return Object
**/
function moduleUpdate() {
$oDB = &DB::getInstance();
@ -78,7 +82,9 @@
}
/**
* @brief Re-generate the cache file
* Re-generate the cache file
*
* @return Object
**/
function recompileCache() {
}