게시판별 글쓰기, 댓글 포인트 출력하기

2015.05.17 18:29
1,875
3
- - 짧은주소 : http://e3net.fineyes.com/bbs/?t=ju
본문
게시판별로 지정한 글쓰기 포인트, 댓글 포인트를 breadcrumbs부분에 출력하는 간단 팁을 올려 봅니다.
예시)
1. eyoom/user_program/head.php 에 아래와 같이 추가합니다.
<?php
if (!defined('_GNUBOARD_')) exit;
// Your Program - Start
$subinfo['bo_write_point'] = $board['bo_write_point'];
$subinfo['bo_comment_point'] = $board['bo_comment_point'];
// Your Program - End
// 변수 할당하기 - /eyoom/inc/tpl.assign.php 파일 참조
$tpl->assign(array(
));
?>
사용자 정의 부분이기 때문에 패치에 영향을 받지 않겠군요.
2. eyoom/theme/basic/layout/head_bs.html 에 아래코드를 추가합니다.
<!--=== Board Title ===-->
<div class="breadcrumbs">
<div class="container">
<h1 class="pull-left"><i class="fa fa-chevron-circle-right"></i> <!--{subinfo.title}--></h1>
<ul class="pull-right breadcrumb">
<!--{? subinfo.bo_write_point}-->
<i class="fa fa-caret-right"></i> 글쓰기포인트: <i class="fa fa-plus-square color-red"></i> <!--{=number_format(subinfo.bo_write_point)}-->
<!--{/}-->
<!--{? subinfo.bo_comment_point}-->
<i class="fa fa-caret-right"></i> 댓글쓰기포인트: <i class="fa fa-plus-square color-red"></i> <!--{=number_format(subinfo.bo_comment_point)}--><!--{? !C.G5_IS_MOBILE}--> <!--{/}-->
<!--{/}-->
<!--{? C.G5_IS_MOBILE && (subinfo.bo_write_point || subinfo.bo_comment_point)}--><br /><!--{/}-->
<!--{subinfo.path}-->
</ul>
</div>
</div>
<!--=== End Board Title ===-->
<!--{? C.G5_IS_MOBILE && (subinfo.bo_write_point || subinfo.bo_comment_point)}--><br /><!--{/}--> 이 부분은
모바일에서 라인 feed를 위해 사용합니다.
0
로그인 후 평가 가능합니다.

-
비즈팔
- 회원등급 : 지상계 / Level 12
포인트 95,290
경험치 14,218
[레벨 12] - 진행률
43%
- 가입일 : 2015-03-24 15:01:18
- 서명 : 아무것도 하지 않으면, 아무일도 일어나지 않는다.
- 자기소개 : http://www.jobajob.co.kr (잡아잡-취업,알바정보 서비스)
- BIZPAL(비즈팔) -
댓글목록 3
shadow님의 댓글
훌륭한 정보 감사합니다.
"비즈팔"님 덕택에 정보가 풍성해지는 느낌입니다.
축하합니다. 첫댓글 포인트 69포인트를 획득하였습니다.
축하합니다. 행운의 포인트 84포인트를 획득하였습니다.
비즈팔님의 댓글
과찬이십니다.
그래도 작은거 나마 같이 나눌 수 있다는 것이 참 다행이라 생각을 합니다.^^
티보리님의 댓글
유용한 내용 감사합니다.