Index: branches/feature-module-update/data/class/pages/unsupported/LC_Page_Unsupported.php
===================================================================
--- branches/feature-module-update/data/class/pages/unsupported/LC_Page_Unsupported.php	(revision 16149)
+++ branches/feature-module-update/data/class/pages/unsupported/LC_Page_Unsupported.php	(revision 16149)
@@ -0,0 +1,58 @@
+<?php
+/*
+ * Copyright(c) 2000-2007 LOCKON CO.,LTD. All Rights Reserved.
+ *
+ * http://www.lockon.co.jp/
+ */
+
+// {{{ requires
+require_once(CLASS_PATH . "pages/LC_Page.php");
+
+/**
+ * サポート外端末用 のページクラス.
+ *
+ * @package Page
+ * @author LOCKON CO.,LTD.
+ * @version $Id$
+ */
+class LC_Page_Unsupported extends LC_Page {
+
+    // }}}
+    // {{{ functions
+
+    /**
+     * Page を初期化する.
+     *
+     * @return void
+     */
+    function init() {
+        parent::init();
+        $this->tpl_mainpage = TEMPLATE_DIR . 'mobile/unsupported/index.tpl';
+    }
+
+    /**
+     * Page のプロセス.
+     *
+     * @return void
+     */
+    function process() {
+        $objView = new SC_MobileView();
+
+        // レイアウトデザインを取得
+        //$objHelper = new SC_Helper_PageLayout_Ex();
+        //$objHelper->sfGetPageLayout($this, false, DEF_LAYOUT);
+
+        $objView->assignobj($this);
+        $objView->display($this->tpl_mainpage);
+    }
+
+    /**
+     * デストラクタ.
+     *
+     * @return void
+     */
+    function destroy() {
+        parent::destroy();
+    }
+}
+?>
