묻고답하기
page_full_width" class="col-xs-12" |cond="$__Context->page_full_width">
반복적인 구문 간단하게 할 수 없을까요???
2013.06.08 18:52
<!--@if($module_info->mid == "main"|| $module_info->mid =="about" || $module_info->mid =="notice" || $module_info->mid =="free" || .......-->
이렇게 main, about, notice, free 를
간단하게 나열하는 방법이 없을까요?
if($module_info->mid == "main,about,free,notice"...
뭐 이런식으로요...
댓글 2
-
송동우
2013.06.08 18:59
-
sejin7940
2013.06.08 19:29
상황에 따라서는 모듈분류 기능을 쓰는 방법도 있습니다
게시판 생성 등의 경우 모듈분류를 설정한 뒤에
$module_info->module_category_srl 값을 이용해서 게시판들을 한꺼번에 지정하는 방법도 있습니다.
-
윈컴이
2013.06.08 19:32
@sejin7940 처음 알았네요~ 감사합니다 .
$modules = array('main', 'about', ' notice', 'free');
if(in_array($module_info->mid, $modules))