Index: temp/trunk/data/downloads/module/ebis_tag.php
===================================================================
--- temp/trunk/data/downloads/module/ebis_tag.php	(revision 6603)
+++ temp/trunk/data/downloads/module/ebis_tag.php	(revision 6603)
@@ -0,0 +1,29 @@
+<?php
+/**
+ * 
+ * @copyright	2000-2006 LOCKON CO.,LTD. All Rights Reserved.
+ * @version	CVS: $Id$
+ * @link		http://www.lockon.co.jp/
+ *
+ */
+
+require_once("../../require.php");
+
+//¥Ú¡¼¥¸´ÉÍý¥¯¥é¥¹
+class LC_Page {
+	//¥³¥ó¥¹¥È¥é¥¯¥¿
+	function LC_Page() {
+		//¥á¥¤¥ó¥Æ¥ó¥×¥ì¡¼¥È¤Î»ØÄê
+		$this->tpl_mainpage = MODULE_PATH . 'ebis_tag.tpl';
+		$this->tpl_subtitle = 'EBiS¥¿¥°Ëä¤áµ¡Ç½';
+	}
+}
+$objPage = new LC_Page();
+$objView = new SC_AdminView();
+
+sfPrintR($_POST);
+
+$objView->assignobj($objPage);		//ÊÑ¿ô¤ò¥Æ¥ó¥×¥ì¡¼¥È¤Ë¥¢¥µ¥¤¥ó¤¹¤ë
+$objView->display($objPage->tpl_mainpage);		//¥Æ¥ó¥×¥ì¡¼¥È¤Î½ÐÎÏ
+//-------------------------------------------------------------------------------------------------------
+?>
