Commit fdaaac84 authored by platyhouse's avatar platyhouse

- encrypted

parent 2564dd76
......@@ -24,8 +24,8 @@ namespace platyFramework;
<div class="row">
<div class="col-md-12">
<!-- Horizontal Form -->
<div class="box box-info">
<form class="form-horizontal" method="post" action="<?= $postUrl ?>" enctype="multipart/form-data">
<form class="form-horizontal" method="post" action="<?= $postUrl ?>" enctype="multipart/form-data">
<div class="box box-info">
<input type="hidden" name="id" value="<?= $item->id ?>">
<div class="box-body">
<div class='col-md-12'>
......@@ -35,7 +35,7 @@ namespace platyFramework;
<?= $form->getInput("서비스고객ID", "serviceUserId"); ?>
<? } ?>
<? if ($this->request->functionName == "edit") { ?>
<?= $form->getInput("등록ID", "userId");?>
<?= $form->getInput("등록ID", "userId"); ?>
<?= $form->getDateTime("등록일", "regDateTime", "required placeholder='2018-01-01 00:00:00'"); ?>
<? } ?>
<? if ($item->commentIndex < 1) { ?>
......@@ -49,6 +49,10 @@ namespace platyFramework;
<?= $form->getInput("제목", "title"); ?>
<?= $form->getTextEdit("내용", "content"); ?>
<?= $form->getFile("미리보기 이미지", "previewImageUrl", "0", "onchange='checkUpload(this, 1);'"); ?>
<?= $form->getFile("첨부2 이미지", "attachImageUrl1", "0", "onchange='checkUpload(this, 2);'", ""); ?>
<?= $form->getFile("첨부3 이미지", "attachImageUrl2", "0", "onchange='checkUpload(this, 3);'", ""); ?>
<?= $form->getFile("첨부4 이미지", "attachImageUrl3", "0", "onchange='checkUpload(this, 4);'", ""); ?>
<?= $form->getFile("첨부5 이미지", "attachImageUrl4", "0", "onchange='checkUpload(this, 5);'", ""); ?>
<? if ($this->request->ip == "61.77.83.16") { ?>
<?= $form->getInput("출처 URL", "sourceUrl", "", "출처URL"); ?>
<? } ?>
......@@ -73,8 +77,19 @@ namespace platyFramework;
</button>
<? } ?>
</div>
</form>
</div>
</div>
<div class="box box-info">
<div class="box-header with-border">
<h3 class="box-title">잠금화면 내용</h3>
</div>
<div class="box-body">
<div class='col-md-12'>
<?= $form->getInput("한글 제목", "titleKorean", "", "TTS 읽기에 활용됩니다"); ?>
<?= $form->getFile("배경 이미지", "backgroundImageUrl", "0", "", "제목 영역에 배경으로 DIM 처리 됩니다"); ?>
</div>
</div>
</form>
</div>
</div>
<? if (true && $this->request->functionName == "edit") { ?>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment