메뉴 건너뛰기

정보자료게시판

장비/디자인/구조

XE | 쓰기 버튼 클릭시 권한이 없습니다 대신 로그인 화면으로 이동하기

by 숨마 posted Apr 19, 2022
?

단축키

Prev이전 문서

Next다음 문서

크게 작게 위로 아래로 댓글로 가기 인쇄
?

단축키

Prev이전 문서

Next다음 문서

크게 작게 위로 아래로 댓글로 가기 인쇄

/xe/modules/board/board.view.php 를 수정해야 한다.

dispBoardMessage 함수와 alertMessage 함수를 수정한다. 들어오는 메시지가 msg_not_permitted 면 로그인 화면으로 바로 이동하는 것으로 정리.

https://github.com/rhymix/rhymix/issues/853

https://xetown.com/tips/99279

등 참조.

 

// function dispBoardMessage($msg_code)

// {

// $msg = Context::getLang($msg_code);

// if(!$msg) $msg = $msg_code;

// Context::set('message', $msg);

// $this->setTemplateFile('message');

// }

    

    function dispBoardMessage($msg_code)

    {

        if($msg_code=="msg_not_permitted") {

            $script = sprintf('<script type="text/javascript"> jQuery(function(){ location.href="/?act=dispMemberLoginForm"; } );</script>');

            Context::addHtmlFooter( $script );

        }

        else

        {

        $msg = Context::getLang($msg_code);

        if(!$msg) $msg = $msg_code;

        Context::set('message', $msg);

        $this->setTemplateFile('message');

        }

    }

 

/**

* @brief the method for displaying the warning messages

* display an error message if it has not  a special design

**/

// function alertMessage($message)

// {

// $script =  sprintf('<script> jQuery(function(){ alert("%s"); } );</script>', Context::getLang($message));

// Context::addHtmlFooter( $script );

// }

    function alertMessage($message) {

        if($message=="msg_not_permitted") {

            $script = sprintf('<script type="text/javascript"> jQuery(function(){ location.href="/?act=dispMemberLoginForm"; } );</script>');

        }

        else

        {

            $script = sprintf('<script type="text/javascript"> jQuery(function(){ alert("%s"); } );</script>', Context::getLang($message));

        }

        Context::addHtmlFooter( $script );

    }


  1. hdmi 출력 음량 조절하기

    Date2019.05.03 Category애플/맥 By라키
    Read More
  2. 갤럭시워치4 와이파이 버전 아이폰과 쓰기

    Date2021.12.22 By숨마
    Read More
  3. 삼성TV Plex 앱 재생 오류 문제 발생시

    Date2019.01.12 By라키
    Read More
  4. 종이호일 유해물질 발암물질 있나?

    Date2022.07.08 BySumma
    Read More
  5. 미국이 나무로 집을 짓는 이유는?

    Date2017.09.19 Category사회/생태/환경 By라키
    Read More
  6. XE | 쓰기 버튼 클릭시 권한이 없습니다 대신 로그인 화면으로 이동하기

    Date2022.04.19 Category장비/디자인/구조 By숨마
    Read More
  7. [독일어 독어 문법] 조동사

    Date2017.05.19 Category학습/연구 By라키
    Read More
  8. [독일어 독어 문법] 전치사

    Date2017.05.23 Category학습/연구 By라키
    Read More
  9. [독일어 독어 문법] 구와 절

    Date2017.05.23 Category학습/연구 By라키
    Read More
  10. 아이폰에서 갤럭시워치4 호환

    Date2021.08.21 Category장비/디자인/구조 By숨마
    Read More
  11. 청소 | 레인지 부엌 주방 환풍기 후드 기름 떨어질때, 주방 환풍기 후드 청소 해야.

    Date2020.07.29 Category장비/디자인/구조 By숨마
    Read More
  12. [독일어 독어 기초 정리] B1.1_01 als(wenn) v,v

    Date2017.07.31 Category학습/연구 By라키
    Read More
  13. [독일어 듣기] 터키어 입문반, Türkisch Anfänger S01 F01

    Date2017.09.14 Category학습/연구 By라키
    Read More
  14. 맥에서 큰 이미지 나누어 인쇄하기

    Date2017.09.01 Category애플/맥 By라키
    Read More
  15. [독어 독일어] 10_재귀대명사를 사용하는 동사들

    Date2017.06.26 Category학습/연구 By라키
    Read More
  16. [독일어 독어 06] 음식, 요리, 주문하기

    Date2017.06.20 Category학습/연구 By라키
    Read More
  17. 파컷 | 파이널컷프로 mp4 import 임포트 시 소리 안나오는 증상

    Date2020.08.22 By숨마
    Read More
  18. [아두이노] 시리얼 통신 예제

    Date2018.08.09 Category장비/디자인/구조 By라키
    Read More
  19. 지그비 통신(COORDINATOR API-ROUTER AT) 정리

    Date2018.09.16 Category장비/디자인/구조 By라키
    Read More
  20. [독일어 독어 문법] 관사

    Date2017.05.25 Category학습/연구 By라키
    Read More
Board Pagination Prev 1 2 3 4 5 6 7 8 9 10 ... 45 Next
/ 45
위로