agreementView.php 3.39 KB
<? include $_SERVER["DOCUMENT_ROOT"] . "/common/classes/AdminPush.php" ?>
<? include $_SERVER["DOCUMENT_ROOT"] . "/admin/inc/php/header.php" ?> 
<? include $_SERVER["DOCUMENT_ROOT"] . "/admin/inc/php/leftPushManage.php" ?>
<?
	$obj = new AdminPush($_REQUEST, "") ;
	
	//$list = $obj->getListOfAdminPush() ;
	$vnum = $obj->virtualNum ;
	
	$rurl		= pack("H*", $_REQUEST["rurl"]) ;
?>
<script>
	var _rurl = "<?=$rurl?>";

	$(document).ready(function(){

		$.ajax({
			url : "/setting/agree.txt",
			dataType : "html",
			cache : false,
			success : function(data){
				console.log(data);
				$("#content").val(data);
		}});
		
		//=====프레입웤 변수들==================================================================================//
		var FORM_TARGET_CLS_NM		= "DIV#Contents"	;		// 폼을 동적 wrap 할 타겟 ID이름
		var FORM_NAME				= "nf"		;		// 폼이름
		var FORM_METHOD				= "GET"		;		// 폼 메쏘드
		var FORM_USE_FILE			= false		;		// 파일폼 사용 여부
		var FORM_ACTION				= document.URL ; 

		var NEXT_CMD				= ""			;		// 다은 수행 할 cmd
		//=====================================================================================================//

		var jForm = $(FORM_TARGET_CLS_NM).mf({ "name" : FORM_NAME , "method" : FORM_METHOD , "action" : FORM_ACTION , "useFile" : FORM_USE_FILE }) ;
		
		// 페이징
		$(".jPage").click2(function(){
			jForm.ci() ;
			jForm.mi("page",$(this).attr("page")) ;			
			jForm.submit() ;
		}) ;
		

		$(".jAutoSearch").change(function(){
			jForm.ci() ;
			jForm.submit() ;
		});
		
		
		$(".jSearch").click2(function(){
			jForm.ci() ;
			jForm.submit() ;
		});

		$("#type").change(function(){
			if($("#type").val() == "PR"){
				$.ajax({
					url : "/setting/privacy.txt",
					dataType : "html",
					cache : false,
					success : function(data){
						$("#content").val(data);
						}
				});
			}
			else{
				$.ajax({
					url : "/setting/agree.txt",
					dataType : "html",
					cache : false,
					success : function(data){
					$("#content").val(data);
					}
				});
			}
		});

		$(".jSave").click2(function(){
			if(confirm("내용을 저장하시겠습니까?")){
				$("#jData").ajaxSubmit({
					url:"/action_front.php?cmd=AdminPush.saveAgreement",
					type : "post",
					forceSync : true,
					dataType : "json",
					success : function(data){
						//alert(data.returnMessage);
						//location.href = _rurl;
					}

				});
			}
			
		});

		
	}) ;





</script>


<div id="Contents"  class="notice">
    
    <h1>약관 관리</h1>
    <h2>푸시관리 > <span>약관관리</span></h2>
    <div class="data">
<form id="jData" method="post" enctype="multipart/form-data">
        <table class="datav" style="width:100%;">
			<colgroup>
				<col width="20%" />
				<col width="80%" />
			</colgroup>
			<tr>
				<th style="height:25px;">약관 종류</th>
				<td>
					<select id="type" name="type">
						<option value="AG">이용약관</option>
						<option value="PR">개인정보처리방침</option>
					</select>
				</td>
			</tr>			
			<tr>
				<th style="height:25px;">내용</th>
				<td class="l">
					<textarea rows="25" style="width:95%;" id="content" name="content"><?=$info?></textarea>
				</td>
			</tr>
		</table>
</form>	
		<div class="btngroupcenter" style="width:100%;">
			<span class="button bigrounded blue jSave" >등록</span>
		</div>

        

    </div>


        
</div>

<? include $_SERVER["DOCUMENT_ROOT"] . "/admin/inc/php/footer.php" ?>