TAG Clouds

New Postings

  • 만약 모든 사람이 실제로 당신을 잡으려고 한다면, 편집증도 좋은 생각이다.
    - 우디 앨런


조회 수 9600 추천 수 0 댓글 0
소스 파일을 수정하는 것이므로 반드시 백업을 하시길 권합니다.

게시판의 썸네일 생성 함수를 응용해 원본 이미지를 구하는 함수를 만들어 
이를 게시판 썸네일에 링크 시키는 방식입니다.

1. (수정) modules/document/document.item.php 에서  } ?>  위에 다음 함수를 추가합니다.
      ※ (09.10.24 수정) 함수에 오류가 있어 수정했습니다.  

function getThumbSourceFile() {
            // 썸네일 원본 파일 출력함수
            if($this->get('uploaded_count')) {
                $oFileModel = &getModel('file');
                $s_file_list = $oFileModel->getFiles($this->document_srl);
                $s_source_file = $s_file_list[0]->uploaded_filename;
            }

            // 첨부된 파일이 없으면 내용중 이미지 파일을 구함
            if(!$s_source_file) {
                $content = $this->get('content');
                $s_target_src = null;
preg_match("/src=(\"|')([^\"' ]*?)(\"|')/is", $content, $s_matches);
              $s_target_src = trim($s_matches[2]);
                $s_source_file = $s_target_src;
            }
                      
            return $s_source_file;
        }
   }
?>

2. 게시판 스킨의 썸네일 링크 부분을 수정합니다. xe_official 게시판 스킨의 웹진 스타일을 예로 들면
modules/board/skins/xe_official/_style.webzine.html 에서 아래 부분을 찾아

<a href="{getUrl("document_srl',$document->document_srl,'listStyle',$listStyle, 'cpage','')}" class="thumb"><img src="{$document->getThumbnail($module_info->thumbnail_width, $module_info->thumbnail_height, $module_info->thumbnail_type)}" alt="" /></a>

다음과 같이 수정합니다.

<a href="{$document->getThumbSourceFile()}" class="thumb" target='_blank'><img src="{$document->getThumbnail($module_info->thumbnail_width, $module_info->thumbnail_height, $module_info->thumbnail_type)}" alt="" /></a> 

3. 만약 June Oh님의 HighSlide JS을 사용하고 있다면 아래와 같이 수정합니다.

<span class="thumb"><a href="{$document->getThumbSourceFile()}" class="highslide" onclick="return hs.expand(this)"><img src="{$document->getThumbnail($module_info->thumbnail_width, $module_info->thumbnail_height, $module_info->thumbnail_type)}" alt="" /></a></span>

4. 갤러리 스타일 역시 썸네일 부분을 찾아 위와 같은 방식으로 수정하면 됩니다. 
xe_official 게시판 스킨을 예로 들면 위의 2번 디렉토리에서 _style.gallery.html 파일을 아래와 같은 식으로 수정합니다.

<a href="{$document->getThumbSourceFile()}" target="_blank"><img src="{$document->getThumbnail($module_info->thumbnail_width, $module_info->thumbnail_height, $module_info->thumbnail_type)}" alt=""/><!--@if($module_info->use_category == "Y" && $document->get('category_srl'))--><strong class="category">{$category_list[$document->get('category_srl')]->title}</strong><!--@end--></a>

역시 June Oh님의 HighSlide JS을 적용하려면 아래와 같이 수정합니다.

<a href="{$document->getThumbSourceFile()}" class="highslide" onclick="return hs.expand(this)"><img src="{$document->getThumbnail($module_info->thumbnail_width, $module_info->thumbnail_height, $module_info->thumbnail_type)}" alt=""/><!--@if($module_info->use_category == "Y" && $document->get('category_srl'))--><strong class="category">{$category_list[$document->get('category_srl')]->title}</strong><!--@end--></a>

List of Articles
번호 분류 제목 글쓴이 날짜 조회 수 추천 수
69 일반 [ZBXE] 게시판(블로그)상단에 글쓰기 버튼이나 링크넣기 1 Dreamy 2010.03.04 14244 0
» 일반 [ZBXE] 웹진, 갤러리에서 썸네일 클릭 시 원본 이미지 보기 Dreamy 2010.03.04 9600 0
67 일반 타홈에서 제홈자료를 무단으로 가져가지 않게 하려면? 1 Dreamy 2012.01.14 4357 0
66 일반 천문기호 모음 file Dreamy 2010.03.03 11398 0
65 일반 집에서 두부 만들기 Dreamy 2017.09.12 2011 0
64 일반 아스키 아트 사이트 Dreamy 2008.08.20 12349 0
63 일반 [역전세란 대응방법]...전세사는 분들만 보세요. (아고라펌) Dreamy 2008.12.04 8339 0
62 일반 [펌] 교통사고-보험사와의 합의방법 Dreamy 2010.12.24 12125 0
61 일반 ZBXE 한글로 된 이미지 문제 해결법 Dreamy 2009.04.14 9473 0
60 일반 RobotC 정보 secret Dreamy 2010.07.20 0 0
59 일반 Shift 키의 10가지 기능 1 Dreamy 2010.08.27 8846 0
58 일반 Mappy secret Dreamy 2010.09.01 0 0
57 일반 떡볶이 만들기 file Dreamy 2020.09.13 1266 0
56 일반 Ram pump 램펌프, Spiral Pump 스파이럴 펌프 file Dreamy 2020.08.18 1439 0
55 일반 테오 얀센 메커니즘 Theo Jansen's linkage file Dreamy 2020.08.17 1315 0
Board Pagination ‹ Prev 1 2 3 4 5 Next ›
/ 5

나눔글꼴 설치 안내


이 PC에는 나눔글꼴이 설치되어 있지 않습니다.

이 사이트를 나눔글꼴로 보기 위해서는
나눔글꼴을 설치해야 합니다.

설치 취소

Designed by sketchbooks.co.kr / sketchbook5 board skin

Sketchbook5, 스케치북5

Sketchbook5, 스케치북5

Sketchbook5, 스케치북5

Sketchbook5, 스케치북5