Commit 8676f63f authored by platyhouse's avatar platyhouse

.

parent 19e50ea5
...@@ -40,6 +40,9 @@ ...@@ -40,6 +40,9 @@
<? if (count($categories2)) { ?> <? if (count($categories2)) { ?>
<?= $form->getSelect("부분류", "category2", $categories2); ?> <?= $form->getSelect("부분류", "category2", $categories2); ?>
<? } ?> <? } ?>
<? { if (strstr($this->config->mobileapp->packageName, "atmstockinfo")) { ?>
<?= $form->getSelect("유료글", "paid", array("유료" => "1", "무료" => "0")); ?>
<? } ?>
<?= $form->getInput("제목", "title"); ?> <?= $form->getInput("제목", "title"); ?>
<?= $form->getTextEdit("내용", "content"); ?> <?= $form->getTextEdit("내용", "content"); ?>
<? // echo $form->getInput("Guest Name", "name"); ?> <? // echo $form->getInput("Guest Name", "name"); ?>
......
...@@ -30,6 +30,9 @@ ...@@ -30,6 +30,9 @@
<?= $form->getInput("성별", "gender"); ?> <?= $form->getInput("성별", "gender"); ?>
<?= $form->getInput("비밀번호변경", "*password"); ?> <?= $form->getInput("비밀번호변경", "*password"); ?>
<?= $form->getSelect("관리자여부", "isAdmin", array("관리자" => "1", "일반회원" => 0)); ?> <?= $form->getSelect("관리자여부", "isAdmin", array("관리자" => "1", "일반회원" => 0)); ?>
<? if (strstr($this->config->mobileapp->packageName, "atmstockinfo")) { ?>
<?= $form->getSelect("유료여부", "paid", array("유료" => "1", "무료" => 0)); ?>
<? } ?>
<?= $form->getFile("프로필이미지", "profileImageUrl"); ?> <?= $form->getFile("프로필이미지", "profileImageUrl"); ?>
<? if (false) { ?> <? if (false) { ?>
......
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