Changeset 5912 for trunk/interface/owner/skin/sidebar/index.php
- Timestamp:
- 05/10/08 01:25:04 (7 months ago)
- Files:
-
- 1 modified
-
trunk/interface/owner/skin/sidebar/index.php (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/interface/owner/skin/sidebar/index.php
r5905 r5912 4 4 /// See the GNU General Public License for more details. (/doc/LICENSE, /doc/COPYRIGHT) 5 5 require ROOT . '/lib/includeForBlogOwner.php'; 6 $tabsClass['sidebar'] = true; 6 7 requireLibrary('blog.skin'); 7 8 requireModel("blog.sidebar"); … … 217 218 <form id="part-sidebar-order" class="part" method="post" action="<?php echo parseURL($blogURL.'/owner/skin/sidebar/register'.$viewMode2);?>"> 218 219 <h2 class="caption"><span class="main-text"><?php echo _t('사이드바 기능을 관리합니다');?></span></h2> 219 220 <?php 221 require ROOT . '/lib/piece/owner/skinTab.php'; 222 ?> 220 223 <div class="main-explain-box"> 221 224 <p class="explain"><?php echo _t('블로그의 사이드바 구성을 변경할 수 있습니다. 사이드바는 블로그 화면에서 양 옆이나 위아래에 표시되는 메뉴가 있는 부분을 말합니다. 사이드바에 새로운 요소를 추가/삭제할 수 있으며 자유로운 위치 이동을 할 수 있습니다.');?></p> … … 230 233 if ($sidebarCount == 0) { 231 234 ?> 232 <ul id="sidebar-tabs-box" class="tabs-box ">235 <ul id="sidebar-tabs-box" class="tabs-box right"> 233 236 <li class="selected"><a id="default-mode-button" class="button" href="<?php echo parseURL($blogURL.'/owner/skin/sidebar');?>" title="<?php echo _t('실제 출력되는 내용을 직접 볼 수 있는 기본 모드입니다.');?>"><?php echo _t('기본모드');?></a></li> 234 237 </ul> … … 253 256 } 254 257 ?> 255 <ul id="sidebar-tabs-box" class="tabs-box ">258 <ul id="sidebar-tabs-box" class="tabs-box right"> 256 259 <li<?php echo $defaultModeSelected ? ' class="selected"' : NULL;?>><a id="default-mode-button" class="button" href="<?php echo parseURL($blogURL.'/owner/skin/sidebar');?>" title="<?php echo _t('실제 출력되는 내용을 직접 볼 수 있는 기본 모드입니다.');?>"><?php echo _t('기본모드');?></a></li> 257 260 <li<?php echo $safeModeSelected ? ' class="selected"' : NULL;?>><a id="safe-mode-button" class="button" href="<?php echo parseURL($blogURL.'/owner/skin/sidebar?safe');?>" title="<?php echo _t('태그를 사용하지 않아 레이아웃이 깨질 위험이 없는 모드입니다.');?>"><?php echo _t('안전모드');?></a></li>
