add phpDoc in member module

git-svn-id: http://xe-core.googlecode.com/svn/branches/1.5.0@10838 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
devjin 2012-07-06 04:49:27 +00:00
parent a0a824166d
commit 634b6b78ea
6 changed files with 431 additions and 111 deletions

View file

@ -2,14 +2,21 @@
/**
* @class member
* @author NHN (developers@xpressengine.com)
* @brief high class of the member module
* high class of the member module
**/
class member extends ModuleObject {
/**
* Use sha1 encryption
*
* @var boolean
**/
var $useSha1 = false;
/**
* @brief constructor
* constructor
*
* @return void
**/
function member() {
if(!Context::isInstalled()) return;
@ -30,7 +37,9 @@
}
/**
* @brief Implement if additional tasks are necessary when installing
* Implement if additional tasks are necessary when installing
*
* @return Object
**/
function moduleInstall() {
// Register action forward (to use in administrator mode)
@ -150,7 +159,9 @@
}
/**
* @brief a method to check if successfully installed
* a method to check if successfully installed
*
* @return boolean
**/
function checkUpdate() {
$oDB = &DB::getInstance();
@ -195,7 +206,9 @@
}
/**
* @brief Execute update
* Execute update
*
* @return Object
**/
function moduleUpdate() {
$oDB = &DB::getInstance();
@ -329,7 +342,9 @@
}
/**
* @brief Re-generate the cache file
* Re-generate the cache file
*
* @return void
**/
function recompileCache() {
set_include_path(_XE_PATH_."modules/member/php-openid-1.2.3");