Avocado.CommunityEdition/AvocadoEdition/mypage/character/cloest.inc.php
TATECK 9c60c33cd6 최초 배포
Ver.02.2.2
2022-02-09 03:05:24 +09:00

73 lines
No EOL
3.3 KiB
PHP

<?php
if (!defined('_GNUBOARD_')) exit; // 개별 페이지 접근 불가
$cl_count = sql_fetch("select count(*) as cnt from {$g5['closthes_table']} where ch_id = '{$ch_id}'");
$cl_count = $cl_count['cnt'];
$cl_result = sql_query("select * from {$g5['closthes_table']} where ch_id = '{$ch_id}' order by cl_id asc");
?>
<div class="closet-list">
<form action="<?=G5_URL?>/mypage/character/closet_update.php" method="post" name="frm_closet" id="frm_closet" enctype="multipart/form-data">
<input type="hidden" name="ch_id" value="<?=$ch_id?>" />
<fieldset>
<input type="text" name="cl_subject" id="cl_sibject" value="" class="full" placeholder="의상 이름" />
<? if($article['ad_url_body']) { ?>
<input type="text" name="cl_path" id="cl_path" value="" class="full" placeholder="의상경로" />
<? } else { ?>
<input type="file" name="cl_path_file" id="cl_path_file" value="" class="full" />
<? } ?>
<input type="submit" value="추가" class="ui-btn point"/>
</fieldset>
</form>
<form name="fcloset" action="./cloest_path_update.php" method="post" onsubmit="return confirm('의상정보를 수정하시겠습니까?');" autocomplete="off">
<input type="hidden" name="ch_id" value="<?=$ch_id?>" />
<? if($cl_count > 0) { ?>
<hr class="line" />
<ul>
<?
$modify_index = 0;
for($i=0; $row=sql_fetch_array($cl_result); $i++) {
$class = "";
$class .= $row['cl_type'];
if($row['cl_use'] == '1') {
$class .=' selected ';
}
?>
<li class="<?=$class?>" style="padding-right:110px;">
<a href="<?=$row['cl_path']?>" style="display:block; max-width:100%; overflow:hidden; text-overflow:ellipsis; white-space:nowrap;" onclick="window.open(this.href, 'big_viewer', 'width=500 height=800 menubar=no status=no toolbar=no location=no scrollbars=yes resizable=yes'); return false;">
<?=$row['cl_subject']?>
</a>
<? if($row['cl_type'] !='default') { ?>
<div class="closet-modify" id="modify_closest_<?=$i?>">
<input type="hidden" name="cl_id[<?=$modify_index?>]" value="<?=$row['cl_id']?>" />
<input type="text" name="cl_path[<?=$modify_index?>]" value="<?=$row['cl_path']?>" />
<button type="submit" class="ui-btn point" style="height:30px; padding:0;">수정</button>
</div>
<? $modify_index++; } ?>
<div class="ui-btn-box" style="width:110px;">
<a href="./closet_update.php?w=u&amp;cl_id=<?=$row['cl_id']?>&amp;ch_id=<?=$ch_id?>" class="ui-btm btn-use">사용</a>
<? if($row['cl_type'] !='default'){ ?>
<a href="javascript:;" class="ui-btm btn-modify" title="수정하기">수정</a>
<a href="./closet_update.php?w=d&amp;cl_id=<?=$row['cl_id']?>&amp;ch_id=<?=$ch_id?>" onclick="return confirm('삭제한 데이터는 복구할 수 없습니다. 정말 삭제하시겠습니까?');" class="ui-btm btn-del">삭제</a>
<? } ?>
</div>
</li>
<? } ?>
</ul>
<? } ?>
</form>
</div>
<style>
.closet-list ul {background:rgba(0,0,0,.5);}
.closet-list ul .ui-btn-box a.btn-modify:before {content:"\e905";}
.closet-modify {display:none; position:relative; padding-right:50px;}
.state-modify .closet-modify {display:block;}
.closet-modify input {width:100%;}
.closet-modify button {display:block; position:absolute; top:0; right:0; bottom:0; width:50px; text-align:center; background:#dcd394; color:#000;}
</style>