Index: branches/version-2_5-dev/data/class/SC_View.php
===================================================================
--- branches/version-2_5-dev/data/class/SC_View.php	(revision 19987)
+++ branches/version-2_5-dev/data/class/SC_View.php	(revision 19996)
@@ -201,5 +201,5 @@
         $this->_smarty->compile_dir = COMPILE_ADMIN_REALDIR;
         $this->assign('TPL_URLPATH_DEFAULT', ROOT_URLPATH . USER_DIR . USER_PACKAGE_DIR . DEFAULT_TEMPLATE_NAME . '/');
-        $this->assign('TPL_URLPATH', ROOT_URLPATH . USER_DIR . USER_PACKAGE_DIR . ADMIN_DIR);
+        $this->assign('TPL_URLPATH', ROOT_URLPATH . USER_DIR . USER_PACKAGE_DIR . "admin/");
         $this->initpath();
     }
Index: branches/version-2_5-dev/data/class/pages/admin/system/LC_Page_Admin_System_AdminArea.php
===================================================================
--- branches/version-2_5-dev/data/class/pages/admin/system/LC_Page_Admin_System_AdminArea.php	(revision 19996)
+++ branches/version-2_5-dev/data/class/pages/admin/system/LC_Page_Admin_System_AdminArea.php	(revision 19996)
@@ -0,0 +1,214 @@
+<?php
+/*
+ * This file is part of EC-CUBE
+ *
+ * Copyright(c) 2000-2010 LOCKON CO.,LTD. All Rights Reserved.
+ *
+ * http://www.lockon.co.jp/
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
+ */
+
+// {{{ requires
+require_once(CLASS_REALDIR . "pages/admin/LC_Page_Admin.php");
+
+/**
+ * 店舗基本情報 のページクラス.
+ *
+ * @package Page
+ * @author LOCKON CO.,LTD.
+ * @version $Id: LC_Page_Admin_Basis.php 19972 2011-01-19 06:46:57Z Seasoft $
+ */
+class LC_Page_Admin_System_AdminArea extends LC_Page_Admin {
+
+    // }}}
+    // {{{ functions
+
+    /**
+     * Page を初期化する.
+     *
+     * @return void
+     */
+    function init() {
+        parent::init();
+        $this->tpl_mainpage = 'system/adminarea.tpl';
+        $this->tpl_subnavi = 'system/subnavi.tpl';
+        $this->tpl_subno = 'adminarea';
+        $this->tpl_mainno = 'adminarea';
+        $this->tpl_subtitle = '管理画面設定';
+        $this->tpl_enable_ssl = FALSE;
+        if(strpos(HTTPS_URL,"https://") !== FALSE){
+            $this->tpl_enable_ssl = TRUE;
+        }
+    }
+
+    /**
+     * Page のプロセス.
+     *
+     * @return void
+     */
+    function process() {
+        $this->action();
+        $this->sendResponse();
+    }
+
+    /**
+     * Page のアクション.
+     *
+     * @return void
+     */
+    function action() {
+        $objSess = new SC_Session();
+
+        // 認証可否の判定
+        SC_Utils_Ex::sfIsSuccess($objSess);
+
+        if(count($_POST) >= 1 ) {
+            // POSTデータの引き継ぎ
+            $this->arrForm = $_POST;
+
+            // 入力データの変換
+            $this->arrForm = $this->lfConvertParam($this->arrForm);
+            // 入力データのエラーチェック
+            $this->arrErr = $this->lfErrorCheck($this->arrForm);
+            //設定ファイルの権限チェック
+            if(!is_writable(CONFIG_REALFILE)){
+                $this->arrErr["all"] = CONFIG_REALFILE . ' を変更する権限がありません。';
+            }
+            //管理画面ディレクトリのチェック
+            $this->lfCheckAdminArea($this->arrForm);
+
+            if(count($this->arrErr) == 0) {
+                $this->lfUpdateAdminData($this->arrForm);	// 既存編集
+                $this->tpl_onload = "window.alert('管理機能の設定を変更しました。URLを変更した場合は、新しいURLにアクセスしてください。');";
+            }else{
+                $this->tpl_onload = "window.alert('設定内容に誤りがあります。設定内容を確認してください。');";                
+            }
+        } else {
+            $admin_dir = str_replace("/","",ADMIN_DIR);
+            $this->arrForm = array("admin_dir"=>$admin_dir,"admin_force_ssl"=>ADMIN_FORCE_SSL,"admin_allow_hosts"=>"");
+            if(defined("ADMIN_ALLOW_HOSTS")){
+                $allow_hosts = unserialize(ADMIN_ALLOW_HOSTS);
+                $this->arrForm["admin_allow_hosts"] = implode("\n",$allow_hosts);
+            }
+        }
+    }
+
+    /**
+     * デストラクタ.
+     *
+     * @return void
+     */
+    function destroy() {
+        parent::destroy();
+    }
+    
+    
+    
+    //管理機能ディレクトリのチェック
+    function lfCheckAdminArea($array){
+        $admin_dir = trim($array['admin_dir'])."/";
+
+        $installData = file(CONFIG_REALFILE, FILE_IGNORE_NEW_LINES);
+        foreach($installData as $key=>$line){
+            if(strpos($line,"ADMIN_DIR") !== false and ADMIN_DIR != $admin_dir){
+                //既存ディレクトリのチェック
+                if(file_exists(HTML_REALDIR.$admin_dir) and $admin_dir != "admin/"){
+                    $this->arrErr["admin_dir"] .= ROOT_URLPATH.$admin_dir."は既に存在しています。別のディレクトリ名を指定してください。";
+                }
+                //権限チェック
+                if(!is_writable(HTML_REALDIR . ADMIN_DIR)){
+                    $this->arrErr["admin_dir"] .= ROOT_URLPATH.ADMIN_DIR."のディレクトリ名を変更する権限がありません。";
+                }
+            }
+        }
+    }
+
+    
+    //管理機能ディレクトリのリネームと CONFIG_REALFILE の変更
+    function lfUpdateAdminData($array){
+        $admin_dir = trim($array['admin_dir'])."/";
+        $admin_force_ssl = "FALSE";
+        if($array['admin_force_ssl'] == 1){
+            $admin_force_ssl = "TRUE";
+        }
+        $admin_allow_hosts = explode("\n",$array['admin_allow_hosts']);
+        foreach($admin_allow_hosts as $key=>$host){
+            $host = trim($host);
+            if(strlen($host) >= 8){
+                $admin_allow_hosts[$key] = $host;
+            }else{
+                unset($admin_allow_hosts[$key]);
+            }
+        }
+        $admin_allow_hosts = serialize($admin_allow_hosts);
+
+        // CONFIG_REALFILE の書き換え
+        $installData = file(CONFIG_REALFILE, FILE_IGNORE_NEW_LINES);
+        $diff = 0;
+        foreach($installData as $key=>$line){
+            if(strpos($line,"ADMIN_DIR") !== false and ADMIN_DIR != $admin_dir){
+                $installData[$key] = 'define("ADMIN_DIR","'.$admin_dir.'");';
+                //管理機能ディレクトリのリネーム
+                rename(HTML_REALDIR.ADMIN_DIR,HTML_REALDIR.$admin_dir);
+                $diff ++;
+            }
+            
+            if(strpos($line,"ADMIN_FORCE_SSL") !== false){
+                $installData[$key] = 'define("ADMIN_FORCE_SSL",'.$admin_force_ssl.');';
+                $diff ++;
+            }
+            if(strpos($line,"ADMIN_ALLOW_HOSTS") !== false and ADMIN_ALLOW_HOSTS != $admin_allow_hosts) {
+                $installData[$key] = "define('ADMIN_ALLOW_HOSTS','".$admin_allow_hosts."');";
+                $diff ++;
+            }
+        }
+        
+        if($diff > 0) {
+            $fp = fopen(CONFIG_REALFILE,"wb");
+            $installData = implode("\n",$installData);
+            echo $installData;
+            fwrite($fp, $installData);
+            fclose($fp);
+        }
+        return true;
+    }
+
+    /* 取得文字列の変換 */
+    function lfConvertParam($array) {
+        /*
+         *	文字列の変換
+         *	K :  「半角(ﾊﾝｶｸ)片仮名」を「全角片仮名」に変換
+         *	C :  「全角ひら仮名」を「全角かた仮名」に変換
+         *	V :  濁点付きの文字を一文字に変換。"K","H"と共に使用します
+         *	n :  「全角」数字を「半角(ﾊﾝｶｸ)」に変換
+         *  a :  全角英数字を半角英数字に変換する
+         */
+        $arrConvList = array('admin_dir'=>"a",'admin_force_ssl' => "n",'admin_allow_hosts' => "a");
+        return SC_Utils_Ex::mbConvertKanaWithArray($array, $arrConvList);
+    }
+
+    // 入力エラーチェック
+    function lfErrorCheck($array) {
+        $objErr = new SC_CheckError($array);
+
+        //管理機能設定チェック
+        $objErr->doFunc(array('ディレクトリ名', "admin_dir", ID_MAX_LEN) ,array("EXIST_CHECK","SPTAB_CHECK", "ALNUM_CHECK"));
+        $objErr->doFunc(array('SSL制限', "admin_force_ssl", 1) ,array("NUM_CHECK", "MAX_LENGTH_CHECK"));
+        $objErr->doFunc(array('IP制限', "admin_allow_hosts", LTEXT_LEN) ,array("IP_CHECK", "MAX_LENGTH_CHECK"));
+        return $objErr->arrErr;
+    }
+}
+?>
Index: branches/version-2_5-dev/data/class/pages/admin/basis/LC_Page_Admin_Basis.php
===================================================================
--- branches/version-2_5-dev/data/class/pages/admin/basis/LC_Page_Admin_Basis.php	(revision 19972)
+++ branches/version-2_5-dev/data/class/pages/admin/basis/LC_Page_Admin_Basis.php	(revision 19996)
@@ -52,8 +52,4 @@
         $this->arrTAXRULE = $masterData->getMasterData("mtb_taxrule");
         $this->tpl_subtitle = 'SHOPマスタ';
-        $this->tpl_enable_ssl = FALSE;
-        if(strpos(HTTPS_URL,"https://") !== FALSE){
-            $this->tpl_enable_ssl = TRUE;
-        }
 
         //定休日用配列
@@ -118,5 +114,5 @@
                     break;
                 }
-                $this->tpl_onload = "fnCheckLimit('downloadable_days', 'downloadable_days_unlimited', '" . DISABLED_RGB . "'); window.alert('SHOPマスタの登録が完了しました。管理機能のURLを変更した場合は、新しいURLにアクセスしてください。');";
+                $this->tpl_onload = "fnCheckLimit('downloadable_days', 'downloadable_days_unlimited', '" . DISABLED_RGB . "'); window.alert('SHOPマスタの登録が完了しました。');";
             }
             if( empty($this->arrForm['regular_holiday_ids']) ) {
@@ -133,13 +129,4 @@
             $regular_holiday_ids = explode('|', $this->arrForm['regular_holiday_ids']);
             $this->arrForm['regular_holiday_ids'] = $regular_holiday_ids;
-            $admin_dir = str_replace("/","",ADMIN_DIR);
-            $this->arrForm += array("admin_dir"=>$admin_dir);
-            $this->arrForm += array("admin_force_ssl"=>ADMIN_FORCE_SSL);
-            if(defined("ADMIN_ALLOW_HOSTS")){
-                $allow_hosts = unserialize(ADMIN_ALLOW_HOSTS);
-                $this->arrForm += array("admin_allow_hosts"=>implode("\n",$allow_hosts));
-            }else{
-                $this->arrForm += array("admin_allow_hosts"=>"");
-            }
             $this->tpl_onload = "fnCheckLimit('downloadable_days', 'downloadable_days_unlimited', '" . DISABLED_RGB . "');";
         }
@@ -205,5 +192,4 @@
         }
         $sqlval['update_date'] = 'Now()';
-        $this->lfUpdateAdminData($array);
         // UPDATEの実行
         $ret = $objQuery->update("dtb_baseinfo", $sqlval);
@@ -217,80 +203,8 @@
         }
         $sqlval['update_date'] = 'Now()';
-        $this->lfUpdateAdminData($array);
         // INSERTの実行
         $ret = $objQuery->insert("dtb_baseinfo", $sqlval);
     }
     
-    //管理機能ディレクトリのリネームと CONFIG_REALFILE の変更
-    function lfUpdateAdminData($array){
-        $admin_dir = trim($array['admin_dir'])."/";
-        $admin_force_ssl = "FALSE";
-        if($array['admin_force_ssl'] == 1){
-            $admin_force_ssl = "TRUE";
-        }
-        $admin_allow_hosts = explode("\n",$array['admin_allow_hosts']);
-        foreach($admin_allow_hosts as $key=>$host){
-            $host = trim($host);
-            if(strlen($host) >= 8){
-                $admin_allow_hosts[$key] = $host;
-            }else{
-                unset($admin_allow_hosts[$key]);
-            }
-        }
-        $admin_allow_hosts = serialize($admin_allow_hosts);
-
-        // 権限チェック 
-        if(!is_writable(CONFIG_REALFILE)){
-            $this->arrErr["admin_force_ssl"] = CONFIG_REALFILE . ' を変更する権限がありません。';
-            return false;
-        }
-
-        // CONFIG_REALFILE の書き換え
-        $installData = file(CONFIG_REALFILE, FILE_IGNORE_NEW_LINES);
-        $diff = 0;
-        foreach($installData as $key=>$line){
-            if(strpos($line,"ADMIN_DIR") !== false and ADMIN_DIR != $admin_dir){
-                //既存ディレクトリのチェック
-                if(file_exists(HTML_REALDIR.$admin_dir)){
-                    $this->arrErr["admin_dir"] .= HTML_REALDIR.$admin_dir."は既に存在しています。別のディレクトリ名を指定してください。";
-                }
-                if(file_exists(USER_TEMPLATE_REALDIR.$admin_dir)){
-                    $this->arrErr["admin_dir"] .= USER_TEMPLATE_REALDIR.$admin_dir."は既に存在しています。別のディレクトリ名を指定してください。";
-                }
-                //権限チェック
-                if(!is_writable(HTML_REALDIR . ADMIN_DIR)){
-                    $this->arrErr["admin_dir"] .= ROOT_URLPATH.ADMIN_DIR."のディレクトリ名を変更する権限がありません。";
-                }
-                if(!is_writable(USER_TEMPLATE_REALDIR . ADMIN_DIR)){
-                    $this->arrErr["admin_dir"] .= USER_TEMPLATE_REALDIR . ADMIN_DIR."のディレクトリ名を変更する権限がありません。";        
-                }
-                if(count($this->arrErr) == 0 ){
-                    $installData[$key] = 'define("ADMIN_DIR","'.$admin_dir.'");';
-                    //管理機能ディレクトリのリネーム
-                    rename(HTML_REALDIR.ADMIN_DIR,HTML_REALDIR.$admin_dir);
-                    rename(USER_TEMPLATE_REALDIR.ADMIN_DIR,USER_TEMPLATE_REALDIR.$admin_dir);
-                    $diff ++;
-                }
-            }
-            
-            if(strpos($line,"ADMIN_FORCE_SSL") !== false and ADMIN_FORCE_SSL !== (boolean)$array['admin_force_ssl']){
-                $installData[$key] = 'define("ADMIN_FORCE_SSL",'.$admin_force_ssl.');';
-                $diff ++;
-            }
-            if(strpos($line,"ADMIN_ALLOW_HOSTS") !== false and ADMIN_ALLOW_HOSTS != $admin_allow_hosts) {
-                $installData[$key] = "define('ADMIN_ALLOW_HOSTS','".$admin_allow_hosts."');";
-                $diff ++;
-            }
-        }
-        
-        if($diff > 0) {
-            $fp = fopen(DATA_REALDIR . "install.php","wb");
-            $installData = implode("\n",$installData);
-            echo $installData;
-            fwrite($fp, $installData);
-            fclose($fp);
-        }
-        return true;
-    }
 
     /* 取得文字列の変換 */
@@ -326,7 +240,4 @@
         $arrConvList['email03'] = "a";
         $arrConvList['email04'] = "a";
-        $arrConvList['admin_dir'] = "a";
-        $arrConvList['admin_force_ssl'] = "n";
-        $arrConvList['admin_allow_hosts'] = "a";
         $arrConvList['tax'] = "n";
         $arrConvList['free_rule'] = "n";
@@ -362,9 +273,4 @@
         $objErr->doFunc(array('メール送信元メールアドレス', "email03", STEXT_LEN) ,array("EXIST_CHECK", "EMAIL_CHECK", "EMAIL_CHAR_CHECK", "MAX_LENGTH_CHECK"));
         $objErr->doFunc(array('送信エラー受付メールアドレス', "email04", STEXT_LEN) ,array("EXIST_CHECK", "EMAIL_CHECK", "EMAIL_CHAR_CHECK","MAX_LENGTH_CHECK"));
-        //管理機能設定チェック
-        $objErr->doFunc(array('ディレクトリ名', "admin_dir", ID_MAX_LEN) ,array("EXIST_CHECK","SPTAB_CHECK", "ALNUM_CHECK"));
-        $objErr->doFunc(array('SSL制限', "admin_force_ssl", 1) ,array("NUM_CHECK", "MAX_LENGTH_CHECK"));
-        $objErr->doFunc(array('IP制限', "admin_allow_hosts", LTEXT_LEN) ,array("IP_CHECK", "MAX_LENGTH_CHECK"));
-        
 
         // 電話番号チェック
Index: branches/version-2_5-dev/data/Smarty/templates/admin/system/subnavi.tpl
===================================================================
--- branches/version-2_5-dev/data/Smarty/templates/admin/system/subnavi.tpl	(revision 19972)
+++ branches/version-2_5-dev/data/Smarty/templates/admin/system/subnavi.tpl	(revision 19996)
@@ -27,4 +27,5 @@
 <li<!--{if $tpl_subno == 'parameter'}--> class="on"<!--{/if}--> id="navi-system-parameter"><a href="<!--{$smarty.const.ROOT_URLPATH}--><!--{$smarty.const.ADMIN_DIR}-->system/parameter.php"><span>パラメータ設定</span></a></li>
 <li<!--{if $tpl_subno == 'masterdata'}--> class="on"<!--{/if}--> id="navi-system-masterdata"><a href="<!--{$smarty.const.ROOT_URLPATH}--><!--{$smarty.const.ADMIN_DIR}-->system/masterdata.php"><span>マスタデータ管理</span></a></li>
+<li<!--{if $tpl_subno == 'masterdata'}--> class="on"<!--{/if}--> id="navi-system-adminarea"><a href="<!--{$smarty.const.ROOT_URLPATH}--><!--{$smarty.const.ADMIN_DIR}-->system/adminarea.php"><span>管理画面設定</span></a></li>
 <li<!--{if $tpl_subno == 'system'}--> class="on"<!--{/if}--> id="navi-system-system"><a href="<!--{$smarty.const.ROOT_URLPATH}--><!--{$smarty.const.ADMIN_DIR}-->system/system.php"><span>システム情報</span></a></li>
 <li<!--{if $tpl_subno == 'plugin'}--> class="on"<!--{/if}--> id="navi-system-plugin"><a href="<!--{$smarty.const.ROOT_URLPATH}--><!--{$smarty.const.ADMIN_DIR}-->system/plugin.php"><span>プラグイン管理</span></a></li>
Index: branches/version-2_5-dev/data/Smarty/templates/admin/system/adminarea.tpl
===================================================================
--- branches/version-2_5-dev/data/Smarty/templates/admin/system/adminarea.tpl	(revision 19996)
+++ branches/version-2_5-dev/data/Smarty/templates/admin/system/adminarea.tpl	(revision 19996)
@@ -0,0 +1,87 @@
+<!--{*
+/*
+ * This file is part of EC-CUBE
+ *
+ * Copyright(c) 2000-2010 LOCKON CO.,LTD. All Rights Reserved.
+ *
+ * http://www.lockon.co.jp/
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
+ */
+*}-->
+<script type="text/javascript">
+jQuery(function(){
+    $("a.btn-action").click(function(){
+        $("form#form1").submit();
+        return false;   
+    });
+});
+</script>
+<form name="form1" id="form1" method="post" action="?">
+<!--{* ▼登録テーブルここから *}-->
+<div id="system" class="contents-main">
+  <div class="notice">
+    <h2><span class="red">注意！</span>間違った設定を適用すると管理画面にアクセス出来なくなる可能性があります。</h2>
+    <p class="red">良く解らない場合はこの設定は変更しないでください</p>
+    <!--{if $arrErr.all}-->
+    <p class="error"><!--{$arrErr.all|escape}--></p>
+    <!--{/if}-->
+  </div>
+  <h2>管理機能設定</h2>
+  <table id="basis-index-admin">
+    <tr>
+      <th>ディレクトリ名</th>
+      <td>
+        <!--{assign var=key value="admin_dir"}-->
+        <span class="attention"><!--{$arrErr[$key]}--></span>
+        <!--{$smarty.const.ROOT_URLPATH}--><input type="text" name="<!--{$key}-->" value="<!--{$arrForm[$key]|h}-->" maxlength="<!--{$smarty.const.ID_MAX_LEN}-->" size="40" class="box40" style="<!--{if $arrErr[$key] != ""}-->background-color: <!--{$smarty.const.ERR_COLOR}-->;<!--{/if}-->"/>/
+      </td>
+    </tr>
+    <tr>
+      <th>SSL制限</th>
+      <td>
+        <!--{assign var=key value="admin_force_ssl"}-->
+        <span class="attention"><!--{$arrErr[$key]}--></span>
+        <input type="checkbox" name="<!--{$key}-->" value="1" id="<!--{$key}-->" <!--{if $arrForm[$key] == 1}-->checked="checked"<!--{/if}--><!--{if !$tpl_enable_ssl}--> disabled="disabled"<!--{/if}--> /><label for="<!--{$key}-->">SSLを強制する。</label>
+      </td>
+    </tr>
+    <tr>
+      <th>IP制限</th>
+      <td>
+        <!--{assign var=key value="admin_allow_hosts"}-->
+        <span class="attention"><!--{$arrErr[$key]}--></span>
+        <textarea name="<!--{$key}-->" cols="60" rows="8" class="area60" style="<!--{$arrErr[$key]|sfGetErrorColor}-->" ><!--{$arrForm[$key]|h}--></textarea>
+        <span class="attention"> (上限<!--{$smarty.const.LTEXT_LEN}-->文字)</span><br />
+        <span>※管理機能へのアクセスを特定のIPアドレスからの接続のみに制限します。<br />
+        アクセスを許可するIPアドレスを1行づつ入力してください。何も入力しない場合は全てを許可します。</span><br />
+      </td>
+    </tr>
+  </table>
+
+
+  <div class="btn-area">
+    <ul>
+      <li><a class="btn-action" href="#"><span class="btn-next">この内容で登録する</span></a></li>
+    </ul>
+  </div>
+</div>
+<div style="display: none">
+  <div id="maparea">
+    <div id="maps" style="width: 300px; height: 300px"></div>
+    <a class="btn-normal" href="javascript:;" id="inputPoint">この位置を入力</a>
+  </div>
+</div>
+<!--{* ▲登録テーブルここまで *}-->
+</form>
Index: branches/version-2_5-dev/data/Smarty/templates/admin/basis/index.tpl
===================================================================
--- branches/version-2_5-dev/data/Smarty/templates/admin/basis/index.tpl	(revision 19972)
+++ branches/version-2_5-dev/data/Smarty/templates/admin/basis/index.tpl	(revision 19996)
@@ -244,36 +244,4 @@
   </table>
 
-  <h2>管理機能設定</h2>
-  <table id="basis-index-admin">
-    <tr>
-      <th>ディレクトリ名</th>
-      <td>
-        <!--{assign var=key value="admin_dir"}-->
-        <span class="attention"><!--{$arrErr[$key]}--></span>
-        <!--{$smarty.const.ROOT_URLPATH}--><input type="text" name="<!--{$key}-->" value="<!--{$arrForm[$key]|h}-->" maxlength="<!--{$smarty.const.ID_MAX_LEN}-->" size="40" class="box40" style="<!--{if $arrErr[$key] != ""}-->background-color: <!--{$smarty.const.ERR_COLOR}-->;<!--{/if}-->"/>/
-      </td>
-    </tr>
-    <tr>
-      <th>SSL制限</th>
-      <td>
-        <!--{assign var=key value="admin_force_ssl"}-->
-        <span class="attention"><!--{$arrErr[$key]}--></span>
-        <input type="checkbox" name="<!--{$key}-->" value="1" id="<!--{$key}-->" <!--{if $arrForm[$key] == 1}-->checked="checked"<!--{/if}--><!--{if !$tpl_enable_ssl}--> disabled="disabled"<!--{/if}--> /><label for="<!--{$key}-->">SSLを強制する。</label>
-      </td>
-    </tr>
-    <tr>
-      <th>IP制限</th>
-      <td>
-        <!--{assign var=key value="admin_allow_hosts"}-->
-        <span class="attention"><!--{$arrErr[$key]}--></span>
-        <textarea name="<!--{$key}-->" cols="60" rows="8" class="area60" style="<!--{$arrErr[$key]|sfGetErrorColor}-->" ><!--{$arrForm[$key]|h}--></textarea>
-        <span class="attention"> (上限<!--{$smarty.const.LTEXT_LEN}-->文字)</span><br />
-        <span>※管理機能へのアクセスを特定のIPアドレスからの接続のみに制限します。<br />
-        アクセスを許可するIPアドレスを1行づつ入力してください。何も入力しない場合は全てを許可します。</span><br />
-      </td>
-    </tr>
-  </table>
-
-
   <h2>定休日設定</h2>
   <table id="basis-index-holiday">
