$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 | |
123 | [XE] 문의드립니다. [1] | 2016/08/16 |
122 | [XE] 이온디 로그인 레이아웃을 구매했는데 입금 확인바랍니다 [2] | 2016/09/22 |
121 | [XE] 플래넛 컬러셋 문의드립니다.. [4] | 2016/10/15 |
120 | [XE] 입금 확인 부탁드립니다~ [1] | 2016/10/25 |
119 | [XE] 플래넛컬러셋 적용문제 [1] | 2016/11/02 |
118 | [XE] 입금확인은 되었는데, 다운로드 링크가 안생기네요. [1] | 2016/12/24 |
117 | [XE] 단축키 애드온 구매전 질문 [4] | 2017/01/17 |
116 | [XE] 입금확인 해주세요 [1] | 2017/09/23 |
115 | [XE] 이온디님~ [2] | 2017/09/24 |
114 | [XE] 이온디님 살려주세요. [2] | 2017/09/26 |
113 | [XE] 멤버모듈스킨 다운로드 파일 확인 부탁드려요. | 2017/11/06 |
112 | [XE] 비회원 댓글 열람 차단 애드온 작동 안함 [1] | 2017/12/28 |