From 946c14cc4f4d2872d3ffbad971a8948e697d6c4d Mon Sep 17 00:00:00 2001 From: haneul Date: Wed, 22 Apr 2009 08:08:12 +0000 Subject: [PATCH] =?UTF-8?q?=EC=9D=B4=EB=A6=84=20=EB=B3=80=EA=B2=BD?= =?UTF-8?q?=EC=A4=91?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit git-svn-id: http://xe-core.googlecode.com/svn/sandbox@6167 201d5d3c-b55e-5fd7-737f-ddc643e51545 --- modules/board/{board.iphone.php => board.smartphone.php} | 8 ++++---- modules/board/tpl/{iphone => smartphone}/list.html | 0 .../board/tpl/{iphone => smartphone}/view_document.html | 0 3 files changed, 4 insertions(+), 4 deletions(-) rename modules/board/{board.iphone.php => board.smartphone.php} (94%) rename modules/board/tpl/{iphone => smartphone}/list.html (100%) rename modules/board/tpl/{iphone => smartphone}/view_document.html (100%) diff --git a/modules/board/board.iphone.php b/modules/board/board.smartphone.php similarity index 94% rename from modules/board/board.iphone.php rename to modules/board/board.smartphone.php index 3a75fd4f1..9ce5b29b4 100644 --- a/modules/board/board.iphone.php +++ b/modules/board/board.smartphone.php @@ -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; } } diff --git a/modules/board/tpl/iphone/list.html b/modules/board/tpl/smartphone/list.html similarity index 100% rename from modules/board/tpl/iphone/list.html rename to modules/board/tpl/smartphone/list.html diff --git a/modules/board/tpl/iphone/view_document.html b/modules/board/tpl/smartphone/view_document.html similarity index 100% rename from modules/board/tpl/iphone/view_document.html rename to modules/board/tpl/smartphone/view_document.html