[G5] 비회원 전용 컨텐츠 페이지 만들기 > 기술자료 | 해피정닷컴

[G5] 비회원 전용 컨텐츠 페이지 만들기 > 기술자료

본문 바로가기

사이트 내 전체검색

[G5] 비회원 전용 컨텐츠 페이지 만들기 > 기술자료

그누보드 [G5] 비회원 전용 컨텐츠 페이지 만들기

페이지 정보


본문

컨텐츠 페이지에 비회원일때만 보이는 입력창을 만들어 봅니다.


1. / adm / contentform.php 

1-1. 디비 필드 추가
상단 적당한 위치에 디비 필드 생성을 위한 아래 내용 추가

// 데이타2개 더 입력가능하게 필드 생성 - 해피정닷컴 2019-11-08
if(!sql_query(" select co_content2 from {$g5['content_table']} limit 1 ", false)) {
    $sql = " ALTER TABLE `{$g5['content_table']}`  ADD `co_content2` text ,
                                                    ADD `co_mobile_content2` text ";
    sql_query($sql, false);
}


1-2. 적당한 위치에 아래 내용 추가

    <tr>
        <th scope="row">PC 내용 (비회원전용)</th>
        <td><?php echo editor_html('co_content2', get_text($co['co_content2'], 0)); ?></td>
    </tr>
    <tr>
        <th scope="row">모바일 내용 (비회원전용)</th>
        <td><?php echo editor_html('co_mobile_content2', get_text($co['co_mobile_content2'], 0)); ?></td>
    </tr>


1-3. 하단 자바스크립트 영역에 내용추가

    <?php echo get_editor_js('co_content2'); ?>
    <?php echo get_editor_js('co_mobile_content2'); ?>


2. / adm / contentformupdate.php
$sql_common 에 아래 내용 추가

                co_content2         = '$co_content2',
                co_mobile_content2  = '$co_mobile_content2',


3. / bbs / content.php

$str = conv_content($co['co_content'], $co['co_html'], $co['co_tag_filter_use']);

를 아래와 같이 변경합니다.

if ($co['co_content2'] && $member['mb_level']<2) { //비회원
$str = conv_content($co['co_content2'], $co['co_html'], $co['co_tag_filter_use']);
} else {
$str = conv_content($co['co_content'], $co['co_html'], $co['co_tag_filter_use']);
}


4. / mobile / content.php
$co_content = $co['co_mobile_content'] ? $co['co_mobile_content'] : $co['co_content'];
$str = conv_content($co_content, $co['co_html'], $co['co_tag_filter_use']);

를 아래와 같이 변경

if ($co['co_mobile_content2'] && $member['mb_level']<2) { //비회원
$co_content = $co['co_mobile_content2'] ? $co['co_mobile_content2'] : $co['co_content2'];
} else {
$co_content = $co['co_mobile_content'] ? $co['co_mobile_content'] : $co['co_content'];
}
$str = conv_content($co_content, $co['co_html'], $co['co_tag_filter_use']);

댓글목록

등록된 댓글이 없습니다.


Total 2,634건 15 페이지
  • RSS
기술자료 목록
2354
Android   11744  2019-12-19 22:29  
2353
HTML   8194  2019-12-16 12:13 ~ 2019-12-16 12:46  
2352
Linux   7510  2019-12-13 21:28  
2351
그누보드   5645  2019-12-10 21:41 ~ 2019-12-10 22:07  
열람
그누보드   6059  2019-11-08 13:38 ~ 2019-11-15 11:33  
2349
PHP   6621  2019-10-28 10:05  
2348
HTML   8958  2019-10-25 18:48 ~ 2019-10-25 18:49  
2347
그누보드   7374  2019-10-16 02:05 ~ 2019-10-16 02:52  
2346
JavaScript   6856  2019-10-02 22:05 ~ 2019-10-04 16:13  
2345
PHP   8586  2019-10-02 16:52 ~ 2020-06-05 13:50  
2344
Linux   5621  2019-10-02 16:42 ~ 2019-10-02 16:49  
2343
그누보드   5226  2019-09-30 20:00  
2342
Linux   6363  2019-09-30 18:06 ~ 2021-09-01 13:12  
2341
HTML   6935  2019-09-27 14:07 ~ 2019-09-27 14:08  
2340
PHP   12403  2019-09-27 10:14 ~ 2019-09-27 10:52  
2339
영카트   7430  2019-09-27 09:25  
2338
PHP   8979  2019-09-24 00:41 ~ 2019-09-24 00:42  
2337
Linux   5436  2019-09-23 23:03  
2336
그누보드   4967  2019-09-23 08:32  
2335
Secure   6050  2019-09-19 22:17  

검색

해피정닷컴 정보

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

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