이름 변경중

git-svn-id: http://xe-core.googlecode.com/svn/sandbox@6167 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
haneul 2009-04-22 08:08:12 +00:00
parent 4b9e5021c6
commit 946c14cc4f
3 changed files with 4 additions and 4 deletions

View file

@ -5,8 +5,8 @@
* @brief board 모듈의 IPhone class
**/
class boardIPhone extends board {
function procIPhone(&$oIPhone)
class boardSPhone extends board {
function procSmartPhone(&$oIPhone)
{
if(!$this->grant->list || $this->module_info->consultation == 'Y') return $oIPhone->setContent(Context::getLang('msg_not_permitted'));
$act = Context::get('act');
@ -35,7 +35,7 @@
Context::setBrowserTitle($oDocument->getTitleText());
Context::set('oDocument', $oDocument);
$oTemplate = new TemplateHandler();
$content = $oTemplate->compile($this->module_path.'tpl/iphone', "view_document");
$content = $oTemplate->compile($this->module_path.'tpl/smartphone', "view_document");
return $content;
}
else
@ -60,7 +60,7 @@
$page_navigation = $output->page_navigation;
Context::set('page_navigation',$page_navigation);
$oTemplate = new TemplateHandler();
$content = $oTemplate->compile($this->module_path.'tpl/iphone', "list");
$content = $oTemplate->compile($this->module_path.'tpl/smartphone', "list");
return $content;
}
}