마크업:관리자>게시판그룹,게시판,관리권한 목록 caption 전체선택 등
This commit is contained in:
@ -83,14 +83,19 @@ var list_delete_php = 'auth_list_delete.php';
|
||||
<input type="hidden" name="page" value="<?=$page?>">
|
||||
<input type="hidden" name="token" value="<?=$token?>">
|
||||
<table>
|
||||
<caption>관리권한 현황</caption>
|
||||
<caption>
|
||||
관리권한 현황
|
||||
<p>
|
||||
여러개의 권한설정을 한번에 삭제하실 때는 권한 체크기능을 이용하세요.
|
||||
</p>
|
||||
</caption>
|
||||
<thead>
|
||||
<tr>
|
||||
<th scope="col" id="th_mb_id"><?=subject_sort_link('a.mb_id')?>회원아이디</a></th>
|
||||
<th scope="col" id="th_mb_nick"><?=subject_sort_link('mb_nick')?>별명</a></th>
|
||||
<th scope="col" id="th_chkall"><input type="checkbox" id="chkall" name="chkall" value="1" onclick="check_all(this.form)"></th>
|
||||
<th scope="col" id="th_au_menu">메뉴</th>
|
||||
<th scope="col" id="th_au_auth">권한</th>
|
||||
<th scope="col" id="th_chkall"><input type="checkbox" id="chkall" name="chkall" value="1" title="현재목록 전체선택" onclick="check_all(this.form)"></th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
@ -114,15 +119,15 @@ for ($i=0; $row=sql_fetch_array($result); $i++)
|
||||
<input type="hidden" name="mb_id[<?=$i?>]" value="<?=$row['mb_id']?>">
|
||||
<?=$mb_nick?>
|
||||
</td>
|
||||
<td headers="th_chkall">
|
||||
<input type="checkbox" id="chk" name="chk[]" value="<?=$i?>">
|
||||
</td>
|
||||
<td headers="th_au_menu">
|
||||
<input type="hidden" name="au_menu[<?=$i?>]" value="<?=$row['au_menu']?>">
|
||||
<?=$row['au_menu']?>
|
||||
<?=$auth_menu[$row['au_menu']]?>
|
||||
</td>
|
||||
<td headers="th_au_auth"><?=$row['au_auth']?></td>
|
||||
<td headers="th_chkall">
|
||||
<input type="checkbox" id="chk" name="chk[]" value="<?=$i?>" title="권한체크">
|
||||
</td>
|
||||
</tr>
|
||||
<?
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user