mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-05 09:41:40 +09:00
CRLF로 잘못 저장된 board.model.php의 줄바꿈 형식을 LF로 변경
This commit is contained in:
parent
68429cabe4
commit
24756fc08d
1 changed files with 89 additions and 89 deletions
|
|
@ -1,89 +1,89 @@
|
|||
<?php
|
||||
/* Copyright (C) NAVER <http://www.navercorp.com> */
|
||||
|
||||
/**
|
||||
* @class boardModel
|
||||
* @author NAVER (developers@xpressengine.com)
|
||||
* @brief board module Model class
|
||||
**/
|
||||
class boardModel extends module
|
||||
{
|
||||
/**
|
||||
* @brief initialization
|
||||
**/
|
||||
function init()
|
||||
{
|
||||
}
|
||||
|
||||
/**
|
||||
* @brief get the list configuration
|
||||
**/
|
||||
public static function getListConfig($module_srl)
|
||||
{
|
||||
// get the list config value, if it is not exitsted then setup the default value
|
||||
$list_config = ModuleModel::getModulePartConfig('board', $module_srl);
|
||||
if(!is_array($list_config) || count($list_config) <= 0)
|
||||
{
|
||||
$list_config = array('no', 'title', 'nick_name', 'regdate', 'readed_count');
|
||||
}
|
||||
|
||||
// get the extra variables
|
||||
$inserted_extra_vars = DocumentModel::getExtraKeys($module_srl);
|
||||
|
||||
foreach($list_config as $key)
|
||||
{
|
||||
if(preg_match('/^([0-9]+)$/',$key))
|
||||
{
|
||||
if($inserted_extra_vars[$key])
|
||||
{
|
||||
$output['extra_vars'.$key] = $inserted_extra_vars[$key];
|
||||
}
|
||||
else
|
||||
{
|
||||
continue;
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
$output[$key] = new ExtraItem($module_srl, -1, lang($key), $key, 'N', 'N', 'N', null);
|
||||
}
|
||||
}
|
||||
return $output;
|
||||
}
|
||||
|
||||
/**
|
||||
* @brief return the default list configration value
|
||||
**/
|
||||
public static function getDefaultListConfig($module_srl)
|
||||
{
|
||||
// add virtual srl, title, registered date, update date, nickname, ID, name, readed count, voted count etc.
|
||||
$virtual_vars = array( 'no', 'title', 'regdate', 'last_update', 'last_post', 'module_title', 'nick_name',
|
||||
'user_id', 'user_name', 'readed_count', 'voted_count', 'blamed_count', 'comment_count',
|
||||
'thumbnail', 'summary', 'comment_status');
|
||||
foreach($virtual_vars as $key)
|
||||
{
|
||||
$extra_vars[$key] = new ExtraItem($module_srl, -1, lang($key), $key, 'N', 'N', 'N', null);
|
||||
}
|
||||
|
||||
// get the extra variables from the document model
|
||||
$inserted_extra_vars = DocumentModel::getExtraKeys($module_srl);
|
||||
if(count($inserted_extra_vars))
|
||||
{
|
||||
foreach($inserted_extra_vars as $obj)
|
||||
{
|
||||
$extra_vars['extra_vars'.$obj->idx] = $obj;
|
||||
}
|
||||
}
|
||||
|
||||
return $extra_vars;
|
||||
|
||||
}
|
||||
|
||||
/**
|
||||
* @brief return module name in sitemap
|
||||
**/
|
||||
public function triggerModuleListInSitemap(&$obj)
|
||||
{
|
||||
array_push($obj, 'board');
|
||||
}
|
||||
}
|
||||
<?php
|
||||
/* Copyright (C) NAVER <http://www.navercorp.com> */
|
||||
|
||||
/**
|
||||
* @class boardModel
|
||||
* @author NAVER (developers@xpressengine.com)
|
||||
* @brief board module Model class
|
||||
**/
|
||||
class boardModel extends module
|
||||
{
|
||||
/**
|
||||
* @brief initialization
|
||||
**/
|
||||
function init()
|
||||
{
|
||||
}
|
||||
|
||||
/**
|
||||
* @brief get the list configuration
|
||||
**/
|
||||
public static function getListConfig($module_srl)
|
||||
{
|
||||
// get the list config value, if it is not exitsted then setup the default value
|
||||
$list_config = ModuleModel::getModulePartConfig('board', $module_srl);
|
||||
if(!is_array($list_config) || count($list_config) <= 0)
|
||||
{
|
||||
$list_config = array('no', 'title', 'nick_name', 'regdate', 'readed_count');
|
||||
}
|
||||
|
||||
// get the extra variables
|
||||
$inserted_extra_vars = DocumentModel::getExtraKeys($module_srl);
|
||||
|
||||
foreach($list_config as $key)
|
||||
{
|
||||
if(preg_match('/^([0-9]+)$/',$key))
|
||||
{
|
||||
if($inserted_extra_vars[$key])
|
||||
{
|
||||
$output['extra_vars'.$key] = $inserted_extra_vars[$key];
|
||||
}
|
||||
else
|
||||
{
|
||||
continue;
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
$output[$key] = new ExtraItem($module_srl, -1, lang($key), $key, 'N', 'N', 'N', null);
|
||||
}
|
||||
}
|
||||
return $output;
|
||||
}
|
||||
|
||||
/**
|
||||
* @brief return the default list configration value
|
||||
**/
|
||||
public static function getDefaultListConfig($module_srl)
|
||||
{
|
||||
// add virtual srl, title, registered date, update date, nickname, ID, name, readed count, voted count etc.
|
||||
$virtual_vars = array( 'no', 'title', 'regdate', 'last_update', 'last_post', 'module_title', 'nick_name',
|
||||
'user_id', 'user_name', 'readed_count', 'voted_count', 'blamed_count', 'comment_count',
|
||||
'thumbnail', 'summary', 'comment_status');
|
||||
foreach($virtual_vars as $key)
|
||||
{
|
||||
$extra_vars[$key] = new ExtraItem($module_srl, -1, lang($key), $key, 'N', 'N', 'N', null);
|
||||
}
|
||||
|
||||
// get the extra variables from the document model
|
||||
$inserted_extra_vars = DocumentModel::getExtraKeys($module_srl);
|
||||
if(count($inserted_extra_vars))
|
||||
{
|
||||
foreach($inserted_extra_vars as $obj)
|
||||
{
|
||||
$extra_vars['extra_vars'.$obj->idx] = $obj;
|
||||
}
|
||||
}
|
||||
|
||||
return $extra_vars;
|
||||
|
||||
}
|
||||
|
||||
/**
|
||||
* @brief return module name in sitemap
|
||||
**/
|
||||
public function triggerModuleListInSitemap(&$obj)
|
||||
{
|
||||
array_push($obj, 'board');
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue