add <input name ='module'>

git-svn-id: http://xe-core.googlecode.com/svn/branches/1.5.0@9723 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
chschy 2011-10-25 06:40:56 +00:00
parent 29f0d4a503
commit afa40dc8ad
73 changed files with 100 additions and 12 deletions

View file

@ -5,6 +5,7 @@
<p>{$XE_VALIDATOR_MESSAGE}</p>
</div>
<form action="./" method="post" enctype="multipart/form-data">
<input type="hidden" name="module" value="admin" />
<input type="hidden" name="act" value="procAdminUpdateConfig" />
<fieldset class="section">
<h2 class="h2">{$lang->title}</h2>
@ -30,6 +31,7 @@
</fieldset>
</form>
<form id="listForm" action="./" class="siteMap" method="post">
<input type="hidden" name="module" value="admin" />
<input type="hidden" name="act" value="procMenuAdminDeleteItem" />
<input type="hidden" name="menu_srl" value="{$menu_srl}" />
<input type="hidden" name="title" value="{$menu_title}" />
@ -63,6 +65,7 @@
<div class="modal" id="editMenu">
<div class="fg">
<form id="editForm" action="./" class="form">
<input type="hidden" name="module" value="menu" />
<input type="hidden" name="act" value="procMenuAdminInsertItemForAdminMenu" />
<input type="hidden" name="menu_srl" value="{$menu_srl}" />
<input type="hidden" name="parent_srl" value="" />

View file

@ -6,6 +6,7 @@
<p>{$XE_VALIDATOR_MESSAGE}</p>
</div>
<form ruleset="installFtpInfo" action="./" method="post" id="ftp_form" class="form" enctype="multipart/form-data">
<input type="hidden" name="module" value="install" />
<input type="hidden" name="act" value="procInstallAdminSaveFTPInfo" />
<fieldset class="section">
<h1 class="h1">{$lang->menu_gnb_sub['adminConfigurationFtp']}</h1>

View file

@ -21,7 +21,8 @@ jQuery(function($){
<load target="../../session/tpl/js/session.js" usecdn="true" />
<form action="" method="post" id="ftp_form" class="form" enctype="multipart/form-data">
<input type="hidden" name="act" value="procInstallAdminConfig" />
<input type="hidden" name="module" value="install" />
<input type="hidden" name="act" value="procInstallAdminConfig" />
<h1 class="h1">{$lang->menu_gnb_sub['adminConfigurationGeneral']}</h1>
<fieldset class="section">
<h2 class="h2">{$lang->subtitle_primary}</h2>

View file

@ -5,6 +5,7 @@
</div>
<!--@if(!$isEnviromentGatheringAgreement)-->
<form action="./" method="post" class="message info">
<input type="hidden" name="module" value="admin" />
<input type="hidden" name="act" value="procAdminEnviromentGatheringAgreement" />
<h2>{$lang->install_env_agreement}</h2>
<p>{$lang->install_env_agreement_desc}</p>

View file

@ -24,6 +24,7 @@ $('#theme').data('themes', themes);
<h1 class="h1">{$lang->menu_gnb_sub['theme']}</h1>
<p class="xe_validator_error">{$XE_VALIDATOR_ERROR}</p>
<form ruleset="insertThemeInfo" action="./" method="post" class="form">
<input type="hidden" name="module" value="admin" />
<input type="hidden" name="act" value="procAdminInsertThemeInfo">
<fieldset id="theme">
<h2 class="h2">{$lang->theme_setting}</h2>

View file

@ -72,6 +72,7 @@ xe.lang.msg_empty_search_keyword = '{$lang->msg_empty_search_keyword}';
</form>
<div class="modal" id="listManager">
<form ruleset="deleteChecked" action="./" method="post" class="fg form">
<input type="hidden" name="module" value="comment" />
<input type="hidden" name="act" value="procCommentAdminDeleteChecked" />
<input type="hidden" name="page" value="{$page}" />
<input type="hidden" name="is_trash" value="false" />

View file

@ -1,4 +1,5 @@
<form ruleset="insertCommentModuleConfig" action="./" method="post" class="form">
<input type="hidden" name="module" value="comment" />
<input type="hidden" name="act" value="procCommentInsertModuleConfig" />
<input type="hidden" name="success_return_url" value="{getUrl('', 'module', $module, 'act', $act, 'module_srl', $module_srl)}" />
<input type="hidden" name="target_module_srl" value="{$module_info->module_srl?$module_info->module_srl:$module_srls}" />

View file

@ -4,6 +4,7 @@
<p>{$XE_VALIDATOR_MESSAGE}</p>
</div>
<form ruleset="deleteChecked" id="fo_list" action="./" method="post">
<input type="hidden" name="module" value="comment" />
<input type="hidden" name="act" value="procCommentAdminDeleteChecked" />
<input type="hidden" value="{getUrl('', 'module', $module, 'act', $act)}" name="success_return_url">
<input type="hidden" name="page" value="{$page}" />

View file

@ -6,6 +6,7 @@
<p>{$XE_VALIDATOR_MESSAGE}</p>
</div>
<form ruleset="addFriend" action="./" method="post" class="form">
<input type="hidden" name="module" value="communication" />
<input type="hidden" name="act" value="procCommunicationAddFriend" />
<input type="hidden" name="target_srl" value="{$target_info->member_srl}" />
<div class="table">

View file

@ -11,6 +11,7 @@
<p>{$XE_VALIDATOR_MESSAGE}</p>
</div>
<form ruleset="addFriendGroup" action="./" method="post" class="form">
<input type="hidden" name="module" value="communication" />
<input type="hidden" name="act" value="procCommunicationAddFriendGroup" />
<input type="hidden" name="friend_group_srl" value="{$friend_group->friend_group_srl}" />
<ul>

View file

@ -6,6 +6,7 @@
<p>{$XE_VALIDATOR_MESSAGE}</p>
</div>
<form ruleset="deleteCheckedFriend" id="fo_friend_list" action="./" method="post" class="form">
<input type="hidden" name="module" value="communication" />
<input type="hidden" name="act" value="procCommunicationDeleteFriend" />
<div class="btnArea">

View file

@ -9,6 +9,7 @@
<input type="submit" value="{$lang->cmd_select}" />
</form>
<form action="./" method="POST" class="setupMessage">
<input type="hidden" name="module" value="communication" />
<input type="hidden" name="act" value="procCommunicationUpdateAllowMessage" />
<input type="hidden" name="message_type" value="{$message_type}" />
<select name="allow_message">
@ -42,6 +43,7 @@
</div>
<form action="./" method="get" id="fo_message_list">
<input type="hidden" name="module" value="communication" />
<input type="hidden" name="act" value="procCommunicationDeleteMessages" />
<input type="hidden" name="message_type" value="{$message_type}" />
<div class="table even">

View file

@ -4,6 +4,7 @@
<p>{$XE_VALIDATOR_MESSAGE}</p>
</div>
<form ruleset="sendMessage" action="./" method="get">
<input type="hidden" name="module" value="communication" />
<input type="hidden" name="act" value="procCommunicationSendMessage" />
<input type="hidden" name="content" value="{htmlspecialchars($source_message->content)}" />
<input type="hidden" name="receiver_srl" value="{$receiver_info->member_srl}" />

View file

@ -6,6 +6,7 @@
<p>{$XE_VALIDATOR_MESSAGE}</p>
</div>
<form ruleset="insertConfig" action="./" method="post" class="form">
<input type="hidden" name="module" value="communication" />
<input type="hidden" name="act" value="procCommunicationAdminInsertConfig">
<div class="table">
<table width="100%" border="1" cellspacing="0">

View file

@ -16,6 +16,7 @@
<p>{$XE_VALIDATOR_MESSAGE}</p>
</div>
<form ruleset="insertCategory" id="fo_category" action="./" method="post">
<input type="hidden" name="module" value="document" />
<input type="hidden" name="act" value="procDocumentInsertCategory" />
<input type="hidden" name="module_srl" value="{$module_info->module_srl}" />
<input type="hidden" name="xml_file" value="{$category_xml_file}" />

View file

@ -3,6 +3,7 @@
<load target="css/document.css" usecdn="true" />
<h1 class="h1">{$lang->cmd_manage_document}</h1>
<form action="./" method="get" id="fo_management">
<input type="hidden" name="module" value="document" />
<input type="hidden" name="type" value="" />
<!--@if(count($document_list)==0)-->

View file

@ -7,6 +7,7 @@ xe.lang.msg_empty_search_keyword = '{$lang->msg_empty_search_keyword}';
<p>{$XE_VALIDATOR_MESSAGE}</p>
</div>
<form id="fo_list" action="./" method="get" class="form">
<input type="hidden" name="module" value="document" />
<input type="hidden" name="page" value="{$page}" />
<h1 class="h1">{$lang->cmd_declared_list}</h1>
<div class="table even">
@ -67,6 +68,7 @@ xe.lang.msg_empty_search_keyword = '{$lang->msg_empty_search_keyword}';
</form>
<div class="modal" id="listManager">
<form action="./" method="post" class="fg form" id="manageForm">
<input type="hidden" name="module" value="document" />
<input type="hidden" name="act" value="procDocumentManageCheckedDocument" />
<input type="hidden" name="type" value="" />
<input type="hidden" name="success_return_url" value="{getUrl('', 'module', 'admin', 'act', 'dispDocumentAdminDeclared')}" />

View file

@ -3,6 +3,7 @@
<!--%import("filter/delete_alias.xml")-->
<form ruleset="deleteAlias" id="deleteForm" action="./" method="post">
<input type="hidden" name="module" value="document" />
<input type="hidden" name="act" value="procDocumentAdminDeleteAlias" />
<input type="hidden" id="target_srl" name="target_srl" value="" />
<input type="hidden" name="document_srl" value="{$document_srl}" />
@ -12,6 +13,7 @@
<p>{$XE_VALIDATOR_MESSAGE}</p>
</div>
<form ruleset="insertAlias" action="{Context::getRequestUri()}" method="post">
<input type="hidden" name="module" value="document" />
<input type="hidden" name="act" value="procDocumentAdminInsertAlias" />
<input type="hidden" name="document_srl" value="{$document_srl}" />
<input type="hidden" name="module_srl" value="{$oDocument->get('module_srl')}" />

View file

@ -1,6 +1,7 @@
<!--#include("header.html")-->
<form action="./" method="post">
<input type="hidden" name="module" value="document" />
<input type="hidden" name="act" value="procDocumentAdminInsertConfig" />
<div class="table">
<table width="100%" border="1" cellspacing="0">

View file

@ -7,6 +7,7 @@ xe.lang.msg_empty_search_keyword = '{$lang->msg_empty_search_keyword}';
<p>{$XE_VALIDATOR_MESSAGE}</p>
</div>
<form id="fo_list" action="./" method="get" class="form">
<input type="hidden" name="module" value="document" />
<input type="hidden" name="page" value="{$page}" />
<h1 class="h1">{$lang->document}</h1>
<div class="table even">
@ -79,6 +80,7 @@ xe.lang.msg_empty_search_keyword = '{$lang->msg_empty_search_keyword}';
</form>
<div class="modal" id="listManager">
<form action="./" method="post" class="fg form" id="manageForm">
<input type="hidden" name="module" value="document" />
<input type="hidden" name="act" value="procDocumentManageCheckedDocument" />
<input type="hidden" name="type" value="" />
<input type="hidden" name="success_return_url" value="{getUrl('', 'module', 'admin', 'act', 'dispDocumentAdminList', 'is_secret', $is_secret, 'search_target', $search_target, 'search_keyword', $search_keyword)}" cond="!empty($search_target) && !empty($search_keyword)" />

View file

@ -11,6 +11,7 @@
<!--@if($type == 'insertExtraForm' || $selected_var_idx)-->
<form ruleset="insertExtraVar" action="./" method="post">
<input type="hidden" name="module" value="document" />
<input type="hidden" name="act" value="procDocumentAdminInsertExtraVar" />
<input type="hidden" name="module_srl" value="{$module_srl}" />
<input type="hidden" name="var_idx" value="{$selected_var_idx}" />

View file

@ -30,6 +30,7 @@
<a href="{getUrl('module', 'admin', 'act', 'dispEditorConfigPreview')}" target="_blank">{$lang->cmd_preview}</a>
<!-- /Editor Preview -->
<form action="./" method="post" class="form" ruleset="generalConfig">
<input type="hidden" name="module" value="editor" />
<input type="hidden" name="act" value="procEditorAdminGeneralConfig " />
<fieldset class="section">
@ -105,6 +106,7 @@
</fieldset>
</form>
<form action="./" method="post" class="form" ruleset="componentOrderAndUse">
<input type="hidden" name="module" value="editor" />
<input type="hidden" name="act" value="procEditorAdminCheckUseListOrder" />
<fieldset class="section">
<h2 class="h2">Editor Component</h2>

View file

@ -2,7 +2,7 @@
<div class="x" style="padding: 10px;">
<h2 class="h2">{$lang->editor_preview}</h2>
<h2 class="h3">{$lang->main_editor}</h2>
<form onSubmit="return false">
<form onSubmit="return false">
<input type="hidden" name="dummy_content" />
<input type="hidden" name="dummy_key" value="1" />

View file

@ -1,6 +1,7 @@
<!--%import("filter/insert_editor_module_config.xml")-->
<load target="js/editor_module_config.js" usecdn="true" />
<form action="./" method="post" onsubmit="return procFilter(this, insert_editor_module_config)" class="form">
<input type="hidden" name="module" value="editor" />
<input type="hidden" name="target_module_srl" value="{$module_info->module_srl?$module_info->module_srl:$module_srls}" />
<h3 class="h3">{$lang->editor}</h3>
<div class="table">

View file

@ -6,6 +6,7 @@
<p>{$XE_VALIDATOR_MESSAGE}</p>
</div>
<form ruleset="setupComponent" action="./" method="post">
<input type="hidden" name="module" value="editor" />
<input type="hidden" name="act" value="procEditorAdminSetupComponent" />
<input type="hidden" name="component_name" value="{$component_name}" />
<div class="table">

View file

@ -3,6 +3,7 @@
<p>{$XE_VALIDATOR_MESSAGE}</p>
</div>
<form ruleset="insertConfig" action="./" method="post" class="form">
<input type="hidden" name="module" value="file" />
<input type="hidden" name="act" value="procFileAdminInsertConfig" />
<h1 class="h1">File Upload</h1>
<ul>

View file

@ -5,6 +5,7 @@
<p>{$XE_VALIDATOR_MESSAGE}</p>
</div>
<form ruleset="insertConfig" action="./" method="post" class="form">
<input type="hidden" name="module" value="file" />
<input type="hidden" name="act" value="procFileAdminInsertConfig" />
<div class="table">
<table width="100%" border="1" cellspacing="0">

View file

@ -7,6 +7,7 @@ xe.lang.msg_empty_search_keyword = '{$lang->msg_empty_search_keyword}';
<p>{$XE_VALIDATOR_MESSAGE}</p>
</div>
<form id="fo_list" action="./" method="post" class="form">
<input type="hidden" name="module" value="file" />
<h1 class="h1">{$lang->file}</h1>
<div class="table">
<div class="cnb">
@ -113,6 +114,7 @@ xe.lang.msg_empty_search_keyword = '{$lang->msg_empty_search_keyword}';
</form>
<div class="modal" id="listManager">
<form ruleset="deleteChecked" action="./" method="post" class="fg form">
<input type="hidden" name="module" value="file" />
<input type="hidden" name="act" value="procFileAdminDeleteChecked" />
<input type="hidden" name="page" value="{$page}" />
<h2 class="h2">{$lang->file_manager}</h2>

View file

@ -1,4 +1,5 @@
<form ruleset="fileModuleConfig" action="./" method="post" class="form">
<input type="hidden" name="module" value="file" />
<input type="hidden" name="act" value="procFileAdminInsertModuleConfig" />
<input type="hidden" name="success_return_url" value="{getUrl('', 'module', $module, 'act', $act, 'module_srl', $module_srl)}" />
<input type="hidden" name="target_module_srl" value="{$module_info->module_srl?$module_info->module_srl:$module_srls}" />

View file

@ -5,6 +5,7 @@
<span class="dummy"></span>
<div id="content">
<form action="./" class="agreement" method="post">
<input type="hidden" name="module" value="install" />
<input type="hidden" name="act" value="procInstallAgreement" />
<input type="hidden" id="agree_license_text" value="{$lang->install_license_desc['lgpl']}" />
<div class="desc">

View file

@ -4,6 +4,7 @@
<p>{$XE_VALIDATOR_MESSAGE}</p>
</div>
<form ruleset="insertLayout" action="./" method="post">
<input type="hidden" name="module" value="layout" />
<input type="hidden" name="act" value="procLayoutAdminInsert" />
<input type="hidden" name="layout_type" value="{$layout_type}" />
<div class="table">

View file

@ -64,6 +64,7 @@
<fieldset class="section">
<form id="fo_layout" class="form" ruleset="codeUpdate" action="./" method="post">
<input type="hidden" name="module" value="layout" />
<input type="hidden" name="layout_srl" value="{$layout_srl}" />
<input type="hidden" name="act" value="procLayoutAdminCodeUpdate" />

View file

@ -20,8 +20,9 @@
<h1 class="h1">{$lang->cmd_find_member_account}</h1>
<p>{$lang->about_find_account_question}</p>
<form action="./" method="get" class="form" ruleset="@find_member_account_by_question">
<input type="hidden" name="module" value="member" />
<input type="hidden" name="mid" value="{$mid}" />
<input type="hidden" name="document_srl" value="{$document_srl}" />
<input type="hidden" name="document_srl" value="{$document_srl}" />
<input type="hidden" name="act" value="procMemberFindAccountByQuestion" />
<input type="hidden" name="success_return_url" value="{getUrl('', 'act', 'dispMemberGetTempPassword')}" />
<input type="hidden" name="page" value="{$page}" />

View file

@ -4,6 +4,7 @@
<p>{$XE_VALIDATOR_MESSAGE}</p>
</div>
<form ruleset="leaveMember" id="fo_insert_member" class="form" action="./" method="post">
<input type="hidden" name="module" value="member" />
<input type="hidden" name="act" value="procMemberLeave" />
<input type="hidden" name="mid" value="{$mid}" />
<input type="hidden" name="document_srl" value="{$document_srl}" />

View file

@ -1,6 +1,7 @@
<include target="./common_header.html" />
<h1 class="h1">{$member_title = $lang->cmd_modify_member_password}</h1>
<form ruleset="modifyPassword" id="fo_insert_member" class="form" action="./" method="post">
<input type="hidden" name="module" value="member" />
<input type="hidden" name="act" value="procMemberModifyPassword" />
<input type="hidden" name="mid" value="{$mid}" />
<input type="hidden" name="document_srl" value="{$document_srl}" />

View file

@ -3,6 +3,7 @@
<p>{$XE_VALIDATOR_MESSAGE}</p>
</div>
<form ruleset="resendAuthMail" class="form" action="./" method="post">
<input type="hidden" name="module" value="member" />
<input type="hidden" name="act" value="procMemberResendAuthMail" />
<h1 class="h1">{$lang->cmd_resend_auth_mail}</h1>
<p>{$lang->about_resend_auth_mail}</p>

View file

@ -8,6 +8,7 @@
<p>{$XE_VALIDATOR_MESSAGE}</p>
</div>
<form ruleset="@insertMember" id="fo_insert_member" class="form" action="./" method="post" enctype="multipart/form-data">
<input type="hidden" name="module" value="member" />
<input type="hidden" name="act" value="procMemberInsert" />
<!--@if(!$is_logged && $member_config->agreement)-->
<div class="agreement">

View file

@ -51,6 +51,7 @@
<p>{$XE_VALIDATOR_MESSAGE}</p>
</div>
<form ruleset="insertDeniedId" action="./" method="post">
<input type="hidden" name="module" value="member" />
<input type="hidden" name="act" value="procMemberAdminInsertDeniedID" />
<input type="hidden" name="page" value="{$page}" />

View file

@ -16,6 +16,7 @@
</div>
<h1 class="h1">{$lang->member_group}</h1>
<form action="" class="form" method="post" ruleset="insertGroupConfig">
<input type="hidden" name="module" value="member" />
<input type="hidden" name="act" value="procMemberAdminGroupConfig" />
<div class="table even">
<table width="100%" border="1" cellspacing="0" class="sortable">

View file

@ -7,6 +7,7 @@
<p>{$XE_VALIDATOR_MESSAGE}</p>
</div>
<form ruleset="updateGroup" action="./" method="post">
<input type="hidden" name="module" value="member" />
<input type="hidden" name="act" value="procMemberAdminUpdateGroup" />
<input type="hidden" name="group_srl" value="{$selected_group->group_srl}" />
<input type="hidden" name="mode" value="update" />

View file

@ -10,6 +10,7 @@
<p>{$XE_VALIDATOR_MESSAGE}</p>
</div>
<form action="./" class="form" ruleset="@insertMember" method="post" enctype="multipart/form-data">
<input type="hidden" name="module" value="member" />
<input type="hidden" name="act" value="procMemberAdminInsert" />
<input type="hidden" name="member_srl" value="{$member_srl}" />
<input type="hidden" name="signature" value="{htmlspecialchars($member_info->signature)}" />

View file

@ -4,6 +4,7 @@
<p>{$XE_VALIDATOR_MESSAGE}</p>
</div>
<form ruleset="manageMemberGroup" action="./" method="post" id="fo_management">
<input type="hidden" name="module" value="member" />
<input type="hidden" name="act" value="procMemberAdminUpdateMembersGroup" />
<input type="hidden" name="member_srl" value="{$member_srls}" />
<div class="table">

View file

@ -9,6 +9,7 @@
<p>{$XE_VALIDATOR_MESSAGE}</p>
</div>
<form action="./" class="form" ruleset="insertConfig" method="post">
<input type="hidden" name="module" value="member" />
<input type="hidden" name="act" value="procMemberAdminInsertConfig" />
<input type="hidden" name="success_return_url" value="{getUrl('act', $act)}" />
<input type="hidden" name="agreement" value="{$config->agreement}" />
@ -195,6 +196,7 @@
</form>
<div class="modal" id="userDefine">
<form action="./" class="fg form" ruleset="insertJoinForm" method="post">
<input type="hidden" name="module" value="member" />
<input type="hidden" name="act" value="procMemberAdminInsertJoinForm" />
<input type="hidden" name="success_return_url" value="{getUrl('act', $act)}" />
<div id="extendForm">

View file

@ -92,6 +92,7 @@
</form>
<div class="modal" id="listManager">
<form action="./" ruleset="updateSeletecdMemberInfo" class="fg form" method="post">
<input type="hidden" name="module" value="member" />
<input type="hidden" name="act" value="procMemberAdminSelectedMemberManage" />
<input type="hidden" name="success_return_url" value="{getUrl('act', $act)}" />
<h2 class="h2">{$lang->cmd_selected_user_manage}</h2>
@ -169,6 +170,7 @@
</span>
</form>
<form action="" method="post">
<input type="hidden" name="module" value="{$module}" />
<select name="search_target">
<option value="">{$lang->search_target}</option>
{@$lang->search_target_list = array_merge($lang->search_target_list, $usedIdentifiers)}

View file

@ -10,6 +10,7 @@
<p>{$XE_VALIDATOR_MESSAGE}</p>
</div>
<form ruleset="@insertMember" id="fo_insert_member" class="ff" action="./" method="post" enctype="multipart/form-data">
<input type="hidden" name="module" value="member" />
<input type="hidden" name="act" value="procMemberInsert" />
<!--@if(!$is_logged && $member_config->agreement)-->
<div class="agreement">

View file

@ -5,6 +5,7 @@
<p>{$XE_VALIDATOR_MESSAGE}</p>
</div>
<form ruleset="insertMenu" action="./" method="post">
<input type="hidden" name="module" value="menu" />
<input type="hidden" name="act" value="procMenuAdminInsert" />
<div class="table">
<table width="100%" border="1" cellspacing="0">

View file

@ -19,6 +19,7 @@
<p>{$XE_VALIDATOR_MESSAGE}</p>
</div>
<form ruleset="updateMenuTitle" action="./" method="post">
<input type="hidden" name="module" value="menu" />
<input type="hidden" name="act" value="procMenuAdminUpdate" />
<input type="hidden" name="menu_srl" value="{$menu_info->menu_srl}" />
<h3 class="h3">{$lang->menu_management}</h3>
@ -61,6 +62,7 @@
<form ruleset="insertMenuItem" id="fo_menu" action="./" method="post" enctype="multipart/form-data">
<input type="hidden" name="module" value="menu" />
<input type="hidden" name="act" value="procMenuAdminInsertItem" />
<input type="hidden" name="title" value="{$menu_info->title}" />
<input type="hidden" name="menu_srl" value="{$menu_info->menu_srl}" />

View file

@ -13,6 +13,7 @@ xe.lang.confirm_delete = "{$lang->confirm_delete}";
<block loop="$menu_list=>$key,$value">
{@$menuSrl = $value->menuSrl}
<form class="portlet siteMap" id="menu_{$menuSrl}" method="post">
<input type="hidden" name="module" value="{$module}" />
<input type="hidden" name="act" value="procMenuAdminArrangeItem" />
<input type="hidden" name="menu_srl" value="{$menuSrl}" />
<input type="hidden" name="menu_item_srl" value="" />
@ -49,6 +50,7 @@ xe.lang.confirm_delete = "{$lang->confirm_delete}";
<div class="modal" id="editMenu">
<div class="fg">
<form ruleset="insertMenuItem" id="editForm" action="./" method="post" enctype="multipart/form-data" class="form">
<input type="hidden" name="module" value="menu" />
<input type="hidden" name="act" value="procMenuAdminInsertItem" />
<input type="hidden" name="menu_srl" value="" />
<input type="hidden" name="menu_item_srl" value="{$menu_info->menu_srl}" />

View file

@ -14,6 +14,7 @@
<!--%import("./filter/openid_login.xml")-->
<div class="mLogin" id="gLogin">
<form action="./" method="post" ruleset="@login" id="gForm" class="ff">
<input type="hidden" name="module" value="member" />
<input type="hidden" name="success_return_url" value="{getRequestUriByServerEnviroment()}" />
<fieldset>
<ul>

View file

@ -9,6 +9,7 @@
<h1>{$system_message}</h1>
<div class="mLogin" id="gLogin" cond="!$is_logged && $module == 'admin'">
<form ruleset="@login" action="./" method="post" id="gForm">
<input type="hidden" name="module" value="member" />
<input type="hidden" name="act" value="procMemberLogin" />
<input type="hidden" name="success_return_url" value="{getRequestUriByServerEnviroment()}" />
<fieldset>

View file

@ -4,6 +4,7 @@
<p>{$XE_VALIDATOR_MESSAGE}</p>
</div>
<form action="./" method="post">
<input type="hidden" name="module" value="message" />
<input type="hidden" name="act" value="procMessageAdminInsertConfig" />
<p>{$lang->about_skin}</p>
<ul>

View file

@ -7,6 +7,7 @@
</div>
<!-- 카테고리의 위/아래, 삭제와 관련된 form -->
<form id="fo_category_info" action="./" method="post">
<input type="hidden" name="module" value="module" />
<input type="hidden" name="act" value="procModuleAdminDeleteCategory" />
<input type="hidden" name="module_category_srl" value="" />
</form>
@ -41,6 +42,7 @@
<!-- 카테고리 추가 -->
<form ruleset="insertCategory" action="./" method="post" class="form">
<input type="hidden" name="module" value="module" />
<input type="hidden" name="act" value="procModuleAdminInsertCategory" />
<input type="hidden" name="page" value="{$page}" />
<input type="hidden" name="module_srl" value="{$module_srl}" />

View file

@ -5,6 +5,7 @@
<p>{$XE_VALIDATOR_MESSAGE}</p>
</div>
<form ruleset="updateCategory" action="./" method="post" enctype="multipart/form-data" class="form">
<input type="hidden" name="module" value="module" />
<input type="hidden" name="act" value="procModuleAdminUpdateCategory" />
<input type="hidden" name="module_category_srl" value="{$selected_category->module_category_srl}" />
<input type="hidden" name="mode" value="update" />

View file

@ -4,6 +4,7 @@
<p>{$XE_VALIDATOR_MESSAGE}</p>
</div>
<form rule="copyModule" action="./" method="post">
<input type="hidden" name="module" value="module" />
<input type="hidden" name="act" value="procModuleAdminCopyModule" />
<input type="hidden" name="module_srl" value="{$module_info->module_srl}" />
<div class="table">

View file

@ -7,6 +7,7 @@
<p>{$XE_VALIDATOR_MESSAGE}</p>
</div>
<form ruleset="insertModulesGrant" action="./" method="post" id="fo_obj">
<input type="hidden" name="module" value="module" />
<input type="hidden" name="act" value="procModuleAdminModuleGrantSetup" />
<input type="hidden" name="module_srls" value="{$module_srls}" />
<h2 class="h2">{$lang->permission_setting}</h2>

View file

@ -16,6 +16,7 @@
{@$langName = $value->name}
<strong>{$value->value}</strong> <span class="side"><button type="button" class="text" cond="$module != 'admin'" onclick="doInsertLangCode('{$value->name}', '{$target}')">{$lang->cmd_apply}</button><button type="button" class="text _edit">{$lang->cmd_edit}</button></span>
<form action="./" method="post" id="langForm_{$langName}" >
<input type="hidden" name="module" value="module" />
<input type="hidden" name="act" value="procModuleAdminInsertLang" />
<input type="hidden" name="lang_name" value="{$langName}" />
<ul>

View file

@ -3,6 +3,7 @@
<p>{$XE_VALIDATOR_MESSAGE}</p>
</div>
<form ruleset="insertModuleSetup" action="./" method="post" enctype="multipart/form-data" class="form">
<input type="hidden" name="module" value="module" />
<input type="hidden" name="act" value="procModuleAdminModuleSetup" />
<input type="hidden" name="module_srls" value="{$module_srls}" />
<h1 class="h1">{$lang->bundle_setup}</h1>

View file

@ -5,6 +5,7 @@
<p>{$XE_VALIDATOR_MESSAGE}</p>
</div>
<form ruleset="deletePage" action="./" method="post">
<input type="hidden" name="module" value="page" />
<input type="hidden" name="act" value="procPageAdminDelete" />
<input type="hidden" name="page" value="{$page}" />
<input type="hidden" name="module_srl" value="{$module_info->module_srl}" />

View file

@ -4,6 +4,7 @@
<p>{$XE_VALIDATOR_MESSAGE}</p>
</div>
<form ruleset="updatePage" action="./" method="post" enctype="multipart/form-data">
<input type="hidden" name="module" value="page" />
<input type="hidden" name="act" value="procPageAdminUpdate" />
<input type="hidden" name="page" value="{$page}" />
<input type="hidden" name="module_srl" value="{$module_srl}" />

View file

@ -4,6 +4,7 @@
<p>{$XE_VALIDATOR_MESSAGE}</p>
</div>
<form ruleset="insertConfig" action="./" method="post" class="form">
<input type="hidden" name="module" value="point" />
<input type="hidden" name="act" value="procPointAdminInsertConfig" />
<fieldset>
<h2 class="h2">{$lang->is_default}</h2>

View file

@ -4,7 +4,7 @@
<div cond="$XE_VALIDATOR_MESSAGE" class="message {$XE_VALIDATOR_MESSAGE_TYPE}">
<p>{$XE_VALIDATOR_MESSAGE}</p>
</div>
<div class="table form">
<div class="table form">
<table width="100%" border="1" cellspacing="0">
<caption>Total {number_format($total_count)}, Page {number_format($page)}/{number_format($total_page)}</caption>
<thead>
@ -26,6 +26,7 @@
<td><a href="#popup_menu_area" class="member_{$val->member_srl}">{$val->nick_name}</a></td>
<td>
<form action="./" method="get">
<input type="hidden" name="module" value="point" />
<input type="hidden" name="member_srl" value="{$val->member_srl}" />
<input type="text" name="orgpoint" value="{$val->point}" disabled="disabled" style="width:40px;text-align:right" />
<input type="text" id="point_{$val->member_srl}" name="point" style="width:40px;text-align:right" />
@ -40,6 +41,7 @@
</div>
<form ruleset="updatePoint" id="updateForm" action="./" method="POST">
<input type="hidden" name="module" value="point" />
<input type="hidden" name="act" value="procPointAdminUpdatePoint" />
<input type="hidden" id="update_member_srl" name="member_srl" value="" />
<input type="hidden" id="update_point" name="point" />

View file

@ -4,6 +4,7 @@
<p>{$XE_VALIDATOR_MESSAGE}</p>
</div>
<form action="./" method="post" id="fo_point" class="form">
<input type="hidden" name="module" value="point" />
<input type="hidden" name="act" value="procPointAdminInsertModuleConfig" />
<div class="table">
<table width="100%" border="1" cellspacing="0">

View file

@ -16,6 +16,7 @@
<p>{$XE_VALIDATOR_MESSAGE}</p>
</div>
<form ruleset="poll" action="./" method="post" onsubmit="return doPoll(this)">
<input type="hidden" name="module" value="poll" />
<input type="hidden" name="act" value="procPoll" />
<input type="hidden" name="poll_srl" value="{$poll->poll_srl}" />
<input type="hidden" name="poll_srl_indexes" value="" />

View file

@ -16,6 +16,7 @@
<p>{$XE_VALIDATOR_MESSAGE}</p>
</div>
<form action="./" method="post" onsubmit="return doPoll(this)">
<input type="hidden" name="module" value="poll" />
<input type="hidden" name="act" value="procPoll" />
<input type="hidden" name="poll_srl" value="{$poll->poll_srl}" />
<input type="hidden" name="poll_srl_indexes" value="" />

View file

@ -5,6 +5,7 @@
<p>{$XE_VALIDATOR_MESSAGE}</p>
</div>
<form ruleset="insertConfig" action="./" method="post" id="fo_poll">
<input type="hidden" name="module" value="poll" />
<input type="hidden" name="act" value="procPollAdminInsertConfig" />
<div class="table">
<table width="100%" border="1" cellspacing="0">

View file

@ -7,6 +7,7 @@ xe.lang.msg_empty_search_keyword = '{$lang->msg_empty_search_keyword}';
<p>{$XE_VALIDATOR_MESSAGE}</p>
</div>
<form action="" class="form">
<input type="hidden" name="module" value="poll" />
<h1 class="h1">{$lang->poll}</h1>
<div class="table even">
<table width="100%" border="1" cellspacing="0" id="pollListTable">
@ -56,6 +57,7 @@ xe.lang.msg_empty_search_keyword = '{$lang->msg_empty_search_keyword}';
</form>
<div class="modal" id="listManager">
<form ruleset="deleteChecked" action="./" method="post" class="fg form">
<input type="hidden" name="module" value="poll" />
<input type="hidden" name="act" value="procPollAdminDeleteChecked" />
<input type="hidden" name="page" value="{$page}" />
<h2 class="h2">{$lang->poll_manager}</h2>
@ -109,7 +111,7 @@ xe.lang.msg_empty_search_keyword = '{$lang->msg_empty_search_keyword}';
</span>
</form>
<form action="./" method="get" onsubmit="return checkSearch(this)">
<form action="./" method="get" onsubmit="return checkSearch(this)">
<input type="hidden" name="module" value="{$module}" />
<input type="hidden" name="act" value="{$act}" />
<select name="search_target">

View file

@ -1,4 +1,5 @@
<form ruleset="insertRssModuleConfig" action="./" method="post" class="form">
<input type="hidden" name="module" value="rss" />
<input type="hidden" name="act" value="procRssAdminInsertModuleConfig" />
<input type="hidden" name="success_return_url" value="{getUrl('', 'module', $module, 'act', $act, 'module_srl', $module_srl)}" />
<input type="hidden" name="target_module_srl" value="{$rss_config->module_srl?$rss_config->module_srl:$module_srls}" />

View file

@ -5,15 +5,16 @@
<p>{$XE_VALIDATOR_MESSAGE}</p>
</div>
<form id="spamfilterDelete" action="" method="post">
<input type="hidden" name="module" value="spamfilter" />
<input type="hidden" name="act" value="" />
<input type="hidden" name="ipaddress" value="" />
<input type="hidden" name="word" value="" />
<input type="hidden" name="ruleset" value="">
</form>
<form action="" id="spamfilterConfig" class="form" ruleset="@insertConfig">
<input type="hidden" name="act" value="procSpamfilterAdminInsertConfig">
<input type="hidden" name="module" value="spamfilter">
<input type="hidden" name="ruleset" value="insertConfig">
<form action="" id="spamfilterConfig" class="form" ruleset="@insertConfig">
<input type="hidden" name="act" value="procSpamfilterAdminInsertConfig" />
<input type="hidden" name="module" value="spamfilter" />
<input type="hidden" name="ruleset" value="insertConfig" />
<h1 class="h1">{$lang->spamfilter}</h1>
<ul>
<li>
@ -38,9 +39,9 @@
</div>
</form>
<form action="" id="spamfilterInsert" class="form">
<input type="hidden" name="act" value="">
<input type="hidden" name="module" value="spamfilter">
<input type="hidden" name="ruleset" value="">
<input type="hidden" name="act" value="" />
<input type="hidden" name="module" value="spamfilter" />
<input type="hidden" name="ruleset" value="" />
<ul>
<li>
<p class="q">{$lang->cmd_denied_ip}</p>

View file

@ -3,6 +3,7 @@
<p>{$XE_VALIDATOR_MESSAGE}</p>
</div>
<form ruleset="sendTrackback" action="./" method="post">
<input type="hidden" name="module" value="trackback" />
<input type="hidden" name="act" value="procTrackbackSend" />
<input type="hidden" name="target_srl" value="{$oDocument->document_srl}" />
<div class="table">

View file

@ -54,6 +54,7 @@ xe.lang.msg_empty_search_keyword = '{$lang->msg_empty_search_keyword}';
</form>
<div class="modal" id="listManager">
<form ruleset="deleteChecked" action="./" method="post" class="fg">
<input type="hidden" name="module" value="trackback" />
<input type="hidden" name="act" value="procTrackbackAdminDeleteChecked" />
<input type="hidden" name="page" value="{$page}" />
<h2 class="h2">{$lang->trackback_manager}</h2>

View file

@ -1,4 +1,5 @@
<form action="./" method="post" class="form">
<input type="hidden" name="module" value="trackback" />
<input type="hidden" name="act" value="procTrackbackAdminInsertModuleConfig" />
<input type="hidden" name="success_return_url" value="{getUrl('', 'module', $module, 'act', $act, 'module_srl', $module_srl)}" />
<input type="hidden" name="target_module_srl" value="{$trackback_config->module_srl?$trackback_config->module_srl:$module_srls}" />

View file

@ -7,6 +7,7 @@ var no_text_comment = '{$lang->no_text_comment}';
<p>{$XE_VALIDATOR_MESSAGE}</p>
</div>
<form ruleset="emptyTrash" action="./" method="post" class="form">
<input type="hidden" name="module" value="trash" />
<input type="hidden" name="act" value="procTrashAdminEmptyTrash" />
<input type="hidden" name="page" value="{$page}" />
<input type="hidden" name="is_all" value="true" />
@ -60,6 +61,7 @@ var no_text_comment = '{$lang->no_text_comment}';
</form>
<div class="modal" id="listManager">
<form ruleset="emptyTrash" id="fo_list" action="./" method="post" class="fg form">
<input type="hidden" name="module" value="trash" />
<input type="hidden" name="act" value="procTrashAdminEmptyTrash" />
<input type="hidden" name="page" value="{$page}" />
<input type="hidden" name="is_all" value="false" />

View file

@ -40,6 +40,7 @@
<p>{$lang->about_widget_code_in_page}</p>
<form class="form" action="./" method="post" id="fo_widget">
<input type="hidden" name="module" value="widget" />
<input type="hidden" name="module_srl" value="{$module_srl}" />
<input type="hidden" name="widget_sequence" value="" />
<input type="hidden" name="style" value="float:left;width:100%;margin:none;padding:none;" />