$grant
이걸 왜 찾아봤을까..;;
문서권한지정애드온
https://xe1.xpressengine.com/index.php?mid=download&package_id=21015635
https://xe1.xpressengine.com/tip/17334915
뭡니까?
어떻게 합니까
182 183 184 185 186 187 188 189 | // 권한변수 설정 $this ->grant = $grant ; Context::set( 'grant' , $grant ); // 권한값을알기위한설정 Context::set( 'grants' , $this ->module_info->grants); if (method_exists( $this , 'init' )) $this ->init(); |
58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 | /** * @brief 목록 및 선택된 글 출력 **/ function dispBoardContent() { /** * 목록보기 권한 체크 (모든 권한은 ModuleObject에서 xml 정보와 module_info의 grant 값을 비교하여 미리 설정하여 놓음) **/ $grants = Context::get( 'grants' ); if (! $this ->grant->list) /** * module_info에서 권한을 검사하여 해당하는 메시지 출력 **/ { if (in_array( '2' , $grants [ 'view' ])) // 그룹2에게 보기 권한이 있을 때 return $this ->dispBoardMessage( 'msg_not_permitted_member2' ); elseif (in_array( '3' , $grants [ 'view' ])) // 그룹3에게 보기 권한이 있을 때 return $this ->dispBoardMessage( 'msg_not_permitted_member3' ); elseif (in_array( '4' , $grants [ 'view' ])) // 그룹4에게 보기 권한이 있을 때 return $this ->dispBoardMessage( 'msg_not_permitted_member4' ); else return $this ->dispBoardMessage( 'msg_not_permitted' ); } |
151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 | // 글 보기 권한을 체크해서 권한이 없으면 오류 메세지 출력하도록 처리 if (! $this ->grant->view && ! $oDocument ->isGranted()) { $oDocument = null; $oDocument = $oDocumentModel ->getDocument(0); Context::set( 'document_srl' , '' ,true); if (in_array( '2' , $grants [ 'view' ])) //그룹2에게 보기 권한이 있을 때 return $this ->alertMessage( 'msg_not_permitted_member1' ); elseif (in_array( '3' , $grants [ 'view' ])) //그룹3에게 보기 권한이 있을 때 return $this ->alertMessage( 'msg_not_permitted_member2' ); elseif (in_array( '4' , $grants [ 'view' ])) // 그룹4에게 보기 권한이 있을 때 return $this ->alertMessage( 'msg_not_permitted_member3' ); else return $this ->alertMessage( 'msg_not_permitted' ); } else { |
스샷은 귀찮아서..
출처 : https://xe1.xpressengine.com/tip/17334915
제목 | 날짜 | |
---|---|---|
본 게시판의 용도 | 2024/06/11 | |
51 | [XE] XE게시판 리스트 1차 카테고리 선택시 2차 카테고리 출력 | 2022/01/02 |
50 | [XE] XE 태그 연관글 출력 위젯은 없나요? | 2022/01/02 |
49 | [XE] 누리고 상품 업로드 에러 -> Prepared statement failed: INSERT INTO `xe_nproduct_extra_vars` (`item_srl`, `name`) VALUES (?, ?)Field 'value' doesn't have a default value [1] | 2022/02/03 |
48 | [XE] 성인인증 애드온 문의 | 2022/03/12 |
47 | [XE] XE 모바일 게시판 페이징 설정한 갯수대로 출력하는 방법.. [1] | 2022/06/20 |
46 | [XE] WIKI 문서 수정시 등록버튼이 안먹히는 문제 [2] | 2022/07/02 |
45 | [XE] 구매문의 [3] | 2022/07/03 |
44 | [XE] WIKI 모듈 질문 하나만 더 해봅니다. [2] | 2022/07/05 |
43 | [XE] 현재 이온디에서 사용 중이신 레이아웃을 구매할 수 있을까요? [1] | 2022/07/27 |
42 | [XE] 이온디님 안녕하세요 [1] | 2022/09/16 |
41 | [XE] Excel 등록 [6] | 2022/09/29 |
40 | [XE] 누리고 상품관리 썸네일 안 나오는 현상 | 2022/09/30 |