Changeset 3439
- Timestamp:
- 06/16/07 02:16:42 (17 months ago)
- Files:
-
- 1 modified
-
trunk/blog/owner/setting/teamblog/index.php (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/blog/owner/setting/teamblog/index.php
r3436 r3439 254 254 } 255 255 256 function buttonchange(){257 if( document.getElementById('target-role').value == 'delete'){258 document.getElementById('apply-button').value = '<?php echo _t('탈퇴');?>';259 } else {260 document.getElementById('apply-button').value = '<?php echo _t('적용');?>';261 }262 }263 256 <?php 264 257 } … … 274 267 <tr> 275 268 <th class="status"><input type="checkbox" name="Aclick" onclick="Check_rev()"></th> 276 <th class="acl"><span class="text"><?php echo _t('권한 ');?></span></th>277 <th class="name"><span class="text"><?php echo _t('이름 ');?></span></th>269 <th class="acl"><span class="text"><?php echo _t('권한');?></span></th> 270 <th class="name"><span class="text"><?php echo _t('이름');?></span></th> 278 271 <th class="blog"><span class="text"><?php echo _t('대표 블로그');?></span></th> 279 272 <th class="email"><span class="text"><?php echo _t('이메일');?></span></th> … … 311 304 $value['admin'] = Acl::check('group.administrators'); 312 305 $value['editor'] = Acl::check('group.editors'); 306 if(isset($teamblog_owner)) $value['acl'] = _t('소유자'); 307 else if(isset($value['admin'])) $value['acl'] = _t('관리자'); 308 else if(isset($value['editor'])) $value['acl'] = _t('편집자'); 309 else $value['acl'] = _t('블로거'); 313 310 $className= ($count%2)==1 ? 'even-line' : 'odd-line'; 314 311 $className.=($count==sizeof($invited_user)-1) ? ' last-line':''; … … 316 313 <tr class="<?php echo $className;?> inactive-class"> 317 314 <td class="status"><input type="checkbox" id="check_<?php echo $count; ?>"><input type="hidden" name="chh<?php echo $count; ?>" value="<?php echo $value['userid']; ?>"><input type="hidden" name="cht<?php echo $count; ?>" value="<?php if($value['last'] == '0' && $value['lastLogin'] =='0') echo "0"; else echo "1"; ?>"></td> 318 <td class="acl"> test</td>315 <td class="acl"><?php echo $value['acl'];?></td> 319 316 <td class="name"><?php echo $value['name'];?></td> 320 317 <td class="blog">test</td> … … 350 347 </table> 351 348 </div> 352 353 <div id="role-action" class="part" >354 <span class="text" >선택한 구성원을 </span>355 <select name="t-role" id="target-role" onchange="buttonchange();" >356 <option value=''>행동을 지정합니다</option>357 <optgroup label="다음 권한으로 변경합니다">358 <option value='manager'>관리자</option>359 <option value='editor'>편집자</option>360 <option value='writer'>필자</option>361 </optgroup>362 <optgroup label="탈퇴 처리 합니다">363 <option value='delete'>탈퇴</option>364 </optgroup>365 </select>366 <input type="submit" id="apply-button" class="apply-button input-button" value="적용" />367 </div>368 349 </div> 369 370 371 372 373 350 374 351 <?php
