Show
Ignore:
Timestamp:
04/11/08 02:07:12 (9 months ago)
Author:
inureyes
Message:

#920

  • 링크쪽 UI 의 일관성 유지
  • 도움말 일부 추가. (그런데 얘 왜 table 아래 가서 안 붙지?)
Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/interface/owner/communication/link/index.php

    r5690 r5743  
    9292                                    <tr> 
    9393                                        <th class="homepage"><span class="text"><?php echo _t('홈페이지 이름');?></span></th> 
     94                                        <th class="address"><span class="text"><?php echo _t('사이트 주소');?></span></th> 
    9495                                        <th class="status"><span class="text"><?php echo _t('상태');?></span></th> 
    95                                         <th class="address"><span class="text"><?php echo _t('사이트 주소');?></span></th> 
    9696                                        <th class="edit"><span class="text"><?php echo _t('수정');?></span></th> 
    9797                                        <th class="delete"><span class="text"><?php echo _t('삭제');?></span></th> 
     
    110110                                    <tr id="link_<?php echo $link['id'];?>" class="<?php echo $className;?> inactive-class" onmouseover="rolloverClass(this, 'over')" onmouseout="rolloverClass(this, 'out')"> 
    111111                                        <td class="homepage"><a href="<?php echo $blogURL;?>/owner/communication/link/edit/<?php echo $link['id'];?>" title="<?php echo _t('이 링크 정보를 수정합니다.');?>"><?php echo htmlspecialchars($link['name']);?></a></td> 
     112                                        <td class="address"><a href="<?php echo htmlspecialchars($link['url']);?>" onclick="window.open(this.href); return false;" title="<?php echo _t('이 링크에 연결합니다.');?>"><?php echo htmlspecialchars($link['url']);?></a></td> 
    112113                                        <td class="status"> 
    113114                                             
     
    154155                                            </span> 
    155156                                        </td> 
    156                                          
    157                                         <td class="address"><a href="<?php echo htmlspecialchars($link['url']);?>" onclick="window.open(this.href); return false;" title="<?php echo _t('이 링크에 연결합니다.');?>"><?php echo htmlspecialchars($link['url']);?></a></td> 
    158157                                        <td class="edit"><a class="edit-button button" href="<?php echo $blogURL;?>/owner/communication/link/edit/<?php echo $link['id'];?>" title="<?php echo _t('링크 정보를 수정합니다.');?>"><span><?php echo _t('수정');?></span></a></td> 
    159158                                        <td class="delete"><a class="delete-button button" href="<?php echo $blogURL;?>/owner/communication/link/delete/<?php echo $link['id'];?>" onclick="deleteLink(<?php echo $link['id'];?>); return false;" title="<?php echo _t('링크 정보를 삭제합니다.');?>"><span class="text"><?php echo _t('삭제');?></span></a></td> 
     
    161160<?php 
    162161} 
    163 if (sizeof($links) > 0) echo "                                  </tbody>"; 
     162if (sizeof($links) > 0) echo " 
     163                                </tbody>"; 
    164164?> 
    165165                            </table> 
     166                             
     167                            <hr class="hidden" /> 
     168                             
     169                            <div class="data-subbox"> 
     170                                <div id="data-description" class="section"> 
     171                                    <h2><?php echo _t('기능 설명');?></h2> 
     172                                    <dl class="modify-description"> 
     173                                        <dt><?php echo _t('수정하기');?></dt> 
     174                                        <dd><?php echo _t('링크 정보를 수정합니다.');?></dd> 
     175                                    </dl> 
     176                                    <dl class="trash-description"> 
     177                                        <dt><?php echo _t('지우기');?></dt> 
     178                                        <dd><?php echo _t('선택한 링크를 삭제합니다.');?></dd> 
     179                                    </dl> 
     180                                </div> 
     181                            </div> 
    166182                        </div> 
    167183<?php