[G4] 첨부화일 이미지 클릭/팝업 제어 > 기술자료 | 해피정닷컴

[G4] 첨부화일 이미지 클릭/팝업 제어 > 기술자료

본문 바로가기

사이트 내 전체검색

[G4] 첨부화일 이미지 클릭/팝업 제어 > 기술자료

그누보드 [G4] 첨부화일 이미지 클릭/팝업 제어

페이지 정보


본문

1. 그누보드 자체의 첨부 이미지 클릭 새창 제어하기

1-1. 그누보드 / extend / b4.lib.php 에서 아래 내용 삭제
        // onclick을 했을 때, 원래의 이미지 크기로 popup이 되도록 변경
        if ($board[image_window]) {
            if (isset($img[onclick]) == true)
                $return = preg_replace('/onclick\=(\'|\")?[^\s\'\"]+(\'|\")?/i', 'onClick="image_window3(\'' . $img['src'] . '\',' . (int)$img_width . ',' . (int)$img_height . ')" ', $return);
            else
                $return = preg_replace("/(\<img )([^\>]*)(\>)/i", "\\1 onClick='image_window3(\"" . $img['src'] . "\"," . (int)$img_width . "," . (int)$img_height . ")' \\2 \\3", $return);
        } else {
            if (isset($img[onclick]) == true)
                $return = preg_replace('/onclick\=(\'|\")?[^\s\'\"]+(\'|\")?/i', '', $return);
            else
                $return = preg_replace("/(\<img )([^\>]*)(\>)/i", "\\1 onclick='' \\2 \\3", $return);
        }
    }
    else
    {
        // width를 조정
        if (isset($img['width']) == true)
            $return = preg_replace('/width\=(\'|\")?[^\s\'\"]+(\'|\")?/i', 'width="' . $img_width . '"', $return);
        else
            $return = preg_replace("/(\<img )([^\>]*)(\>)/i", "\\1 width='" . $img_width . "' \\2 \\3", $return);
        // height를 삭제
        $return = preg_replace('/height\=(\'|\")?[^\s\'\"]+(\'|\")?/i', null, $return);
        // 이름도 그누의 javascript resize할 수 있게 수정
        if (isset($img[name]) == true)
            $return = preg_replace('/name\=(\'|\")?[^\s\'\"]+(\'|\")?/i', ' name="target_resize_image[]" ', $return);
        else
            $return = preg_replace("/(\<img )([^\>]*)(\>)/i", "\\1 name='target_resize_image[]' \\2 \\3", $return);
        // $thumb_create가 true이면, 이미지 크기가 $max_img_width보다 작지만, 그래도 thumb를 생성
        if ($thumb_create && $thumb_path) {
            include_once("$g4[path]/lib/thumb.lib.php");
            $thumb_path=thumbnail($thumb_path, $max_img_width,$max_img_height,$is_create,$is_crop,$quality, "", $water_mark, $filter);
            $return = preg_replace('/src\=(\'|\")?[^\s\'\"]+(\'|\")?/i', 'src="' . $thumb_path . '"', $return);
        }
        // onclick을 했을 때, 원래의 이미지 크기로 popup이 되도록 변경
        if ($board[image_window]) {
            if (isset($img[onclick]) == true)
                $return = preg_replace('/onClick\=(\'|\")?[^\s\'\"]+(\'|\")?/i', 'onClick="image_window3(\'' . $img['src'] . '\',' . (int)$img_width . ',' . (int)$img_height . ')" ', $return);
            else
                $return = preg_replace("/(\<img )([^\>]*)(\>)/i", "\\1 onClick='image_window3(\"" . $img['src'] . "\"," . (int)$img_width . "," . (int)$img_height . ")' \\2 \\3", $return);
        } else {
            if (isset($img[onclick]) == true)
                $return = preg_replace('/onClick\=(\'|\")?[^\s\'\"]+(\'|\")?/i', '', $return);
            else
                $return = preg_replace("/(\<img )([^\>]*)(\>)/i", "\\1 onClick='' \\2 \\3", $return);
        }



1-2. 그누보드 / lib / common.lib.php  949줄

[ 원본 ]
        return "<img src='$g4[path]/data/file/$board[bo_table]/".urlencode($file)."' name='target_resize_image[]' onclick='image_window(this);' style='cursor:pointer;' title='$content'>";
[ 수정 ]
        return "<img src='$g4[path]/data/file/$board[bo_table]/".urlencode($file)."' name='target_resize_image[]' style='cursor:pointer;' title='$content'>";



2. editor로 첨부한 이미지 새창뜨기 제어하기

2-1. 그누보드 / bbs / view.php  124줄

[ 원본 ]
$view[content] = preg_replace("/(\<img )([^\>]*)(\>)/i", "\\1 name='target_resize_image[]' onclick='image_window(this)' style='cursor:pointer;' \\2 \\3", $view[content]);
[ 수정 ]
//$view[content] = preg_replace("/(\<img )([^\>]*)(\>)/i", "\\1 name='target_resize_image[]' onclick='image_window(this)' style='cursor:pointer;' \\2 \\3", $view[content]);


자료출처
http://sir.co.kr/bbs/board.php?bo_table=g4_tiptech&wr_id=25902 


그누보드5용 : https://www.happyjung.com/lecture/1722

댓글목록

등록된 댓글이 없습니다.


Total 459건 17 페이지
  • RSS
기술자료 목록
139
그누보드   14329  2012-09-23 06:03  
138
그누보드   17057  2012-09-20 19:09 ~ 2024-04-03 15:30  
137
그누보드   11533  2012-09-20 18:56  
136
그누보드   12761  2012-09-19 18:49  
135
그누보드   14819  2012-09-12 16:23  
134
그누보드   14167  2012-06-16 06:20  
133
그누보드   18985  2012-06-01 20:26  
132
그누보드   20290  2012-05-29 04:43  
131
그누보드   25509  2012-05-28 17:03  
130
그누보드   40004  2012-05-26 17:54 ~ 2021-10-21 23:12  
129
그누보드   18385  2012-05-01 22:12  
128
그누보드   10893  2012-04-23 11:44  
열람
그누보드   14796  2012-04-13 13:27  
126
그누보드   12944  2012-04-30 22:42  
125
그누보드   9179  2013-04-29 14:50  
124
그누보드   11524  2012-02-27 14:09  
123
그누보드   15568  2012-02-12 23:59  
122
그누보드   12477  2012-02-10 22:14 ~ 2016-11-21 00:00  
121
그누보드   13288  2011-09-02 10:12 ~ 2017-09-01 00:00  
120
그누보드   22602  2011-08-04 22:57  

검색

해피정닷컴 정보

회사소개 회사연혁 협력사 오시는길 서비스 이용약관 개인정보 처리방침

회사명: 해피정닷컴   대표: 정창용   전화: 070-7600-3500   팩스: 042-670-8272
주소: (34368) 대전시 대덕구 대화로 160 대전산업용재유통단지 1동 222호
개인정보보호책임자: 정창용   사업자번호: 119-05-36414
통신판매업신고: 제2024-대전대덕-0405호 [사업자등록확인]  
Copyright 2001~2024 해피정닷컴. All Rights Reserved.