Changeset 5743 for trunk/interface/owner/communication/link/index.php
- Timestamp:
- 04/11/08 02:07:12 (9 months ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
trunk/interface/owner/communication/link/index.php
r5690 r5743 92 92 <tr> 93 93 <th class="homepage"><span class="text"><?php echo _t('홈페이지 이름');?></span></th> 94 <th class="address"><span class="text"><?php echo _t('사이트 주소');?></span></th> 94 95 <th class="status"><span class="text"><?php echo _t('상태');?></span></th> 95 <th class="address"><span class="text"><?php echo _t('사이트 주소');?></span></th>96 96 <th class="edit"><span class="text"><?php echo _t('수정');?></span></th> 97 97 <th class="delete"><span class="text"><?php echo _t('삭제');?></span></th> … … 110 110 <tr id="link_<?php echo $link['id'];?>" class="<?php echo $className;?> inactive-class" onmouseover="rolloverClass(this, 'over')" onmouseout="rolloverClass(this, 'out')"> 111 111 <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> 112 113 <td class="status"> 113 114 … … 154 155 </span> 155 156 </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>158 157 <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> 159 158 <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> … … 161 160 <?php 162 161 } 163 if (sizeof($links) > 0) echo " </tbody>"; 162 if (sizeof($links) > 0) echo " 163 </tbody>"; 164 164 ?> 165 165 </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> 166 182 </div> 167 183 <?php
