mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-04-19 02:12:15 +09:00
Fix indent
This commit is contained in:
parent
307c2edf89
commit
df762b2fb3
9 changed files with 12 additions and 12 deletions
|
|
@ -389,8 +389,8 @@ class Validator
|
|||
}
|
||||
|
||||
/**
|
||||
* Returns the last error information including a field name and an error message.
|
||||
* @return array The last error information
|
||||
* Returns the last error information including a field name and an error message.
|
||||
* @return array The last error information
|
||||
*/
|
||||
function getLastError()
|
||||
{
|
||||
|
|
|
|||
|
|
@ -157,7 +157,7 @@ class autoinstallModel extends autoinstall
|
|||
* @param int $depth Depth of category
|
||||
* @param array $list Category list
|
||||
* @param array $resultList Final result list
|
||||
* @return string $siblingList Comma separated list
|
||||
* @return string $siblingList Comma separated list
|
||||
*/
|
||||
function setDepth(&$item, $depth, &$list, &$resultList)
|
||||
{
|
||||
|
|
|
|||
|
|
@ -25,7 +25,7 @@ class BoardAdminView extends Board {
|
|||
// generate module model object
|
||||
$oModuleModel = getModel('module');
|
||||
|
||||
// get the module information based on the module_srl
|
||||
// get the module information based on the module_srl
|
||||
if($module_srl) {
|
||||
$module_info = $oModuleModel->getModuleInfoByModuleSrl($module_srl);
|
||||
if(!$module_info) {
|
||||
|
|
|
|||
|
|
@ -1018,7 +1018,7 @@ class importerAdminController extends importer
|
|||
}
|
||||
else
|
||||
{
|
||||
// Get parent comment information
|
||||
// Get parent comment information
|
||||
$parent_args = new stdClass();
|
||||
$parent_args->comment_srl = $obj->parent_srl;
|
||||
$parent_output = executeQuery('comment.getCommentListItem', $parent_args);
|
||||
|
|
|
|||
|
|
@ -4013,7 +4013,7 @@ class MemberController extends Member
|
|||
$logged_info = Context::get('logged_info');
|
||||
$spam_description = trim( Context::get('spam_description') );
|
||||
|
||||
// get member current information
|
||||
// get member current information
|
||||
$member_info = MemberModel::getMemberInfoByMemberSrl($member_srl);
|
||||
$cnt_comment = CommentModel::getCommentCountByMemberSrl($member_srl);
|
||||
$cnt_document = DocumentModel::getDocumentCountByMemberSrl($member_srl);
|
||||
|
|
|
|||
|
|
@ -149,7 +149,7 @@ class MenuAdminModel extends Menu
|
|||
|
||||
/**
|
||||
* Return item information of the menu_srl
|
||||
* group_srls uses a separator with comma(,) and converts to an array by explode
|
||||
* group_srls uses a separator with comma(,) and converts to an array by explode
|
||||
* @param int $menu_item_srl
|
||||
* @return object
|
||||
*/
|
||||
|
|
|
|||
|
|
@ -316,7 +316,7 @@ class PointAdminController extends Point
|
|||
// A variable to store member's points
|
||||
$member = array();
|
||||
|
||||
// Get member information
|
||||
// Get member information
|
||||
$output = executeQueryArray('point.getMemberCount');
|
||||
if(!$output->toBool()) return $output;
|
||||
|
||||
|
|
|
|||
|
|
@ -12,7 +12,7 @@ class PointAdminView extends Point
|
|||
*/
|
||||
function init()
|
||||
{
|
||||
// Get the configuration information
|
||||
// Get the configuration information
|
||||
$oModuleModel = getModel('module');
|
||||
$config = $oModuleModel->getModuleConfig('point');
|
||||
// Set the configuration variable
|
||||
|
|
|
|||
|
|
@ -15,7 +15,7 @@ class PollModel extends Poll
|
|||
}
|
||||
|
||||
/**
|
||||
* @brief returns poll information
|
||||
* @brief returns poll information
|
||||
*/
|
||||
public function _getPollinfo($poll_srl)
|
||||
{
|
||||
|
|
@ -78,7 +78,7 @@ class PollModel extends Poll
|
|||
}
|
||||
|
||||
/**
|
||||
* @brief returns poll information
|
||||
* @brief returns poll information
|
||||
*/
|
||||
public function getPollinfo()
|
||||
{
|
||||
|
|
@ -89,7 +89,7 @@ class PollModel extends Poll
|
|||
}
|
||||
|
||||
/**
|
||||
* @brief returns poll item information
|
||||
* @brief returns poll item information
|
||||
*/
|
||||
public function getPollitemInfo()
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue