이온디
첨부파일 https://imweb.eond.com/hosting_guide/464319

인증키를 직접 삽입 후 아래 파일로 교체함.

<?php

/**
 * Froala WYSIWYG Editor Skin
 * Base class of froala WYSIWYG editor skin
 * @author largeden (largeden@romanesque.co)
 * @package /modules/editor/skins/froalaeditor
 */

class roFE extends ModuleObject
{
    //var $rokey = array();
    var $rokey = array('인증키');
    var $roact = array('dispEditorConfigPreview','dispCommunicationSendMessage');

    function roFE ()
    {
        $oModuleModel = getModel('module');
        $froalaeditor_default_config = $oModuleModel->getModuleConfig('froalaeditor');
        if(!$froalaeditor_default_config)
        {
            $froalaeditor_default_config = new stdClass();
        }

        if(count($this->rokey) == 0)
        {
            $this->rokey = $froalaeditor_default_config->license_key;
            $this->rokey = array_filter(array_map('trim', preg_split('/[\r\n]/', $this->rokey)), function($item) {
                return $item !== '';
            });
        }

        $filename = '_f_';
        $path     = 'files/cache/froalaeditor/'.$filename.'.js';
        $cookie   = $filename;
        $script   = "try { (function (k){localStorage.ROK=k;})([".'"'.implode( '","', $this->rokey ).'"'."]) } catch(e){}";

        if(!@FileHandler::readFile($path))
        {
            @FileHandler::writeFile($path, $script, 'w');
        }

//        if(!$_COOKIE[$cookie])
//        {
//            setcookie($cookie,date('YmdHis'),time()+(60*60*24*365));
//            Context::addJsFile($path, false, '', 0, 'body');
//        }
//        elseif($_COOKIE[$cookie] < date('YmdHis', filemtime($path)))
//        {
//            setcookie($cookie,"",time()-3600);
//            Context::addJsFile($path, false, '', 0, 'body');
//        }
        if(!$_COOKIE[$cookie])
        {
            setcookie($cookie,date('YmdHis'),time()+(60*60*24*365));
            Context::addJsFile($path, false, '', 0, 'body');
        }
        elseif($_COOKIE[$cookie] < date('YmdHis', filemtime($path)))
        {
            setcookie($cookie,"",time()-3600);
            Context::addJsFile($path, false, '', 0, 'body');
        }
        else
        {
            Context::addJsFile($path, false, '', 0, 'body');
        }

        if(in_array(Context::get('act'), $this->roact))
        {
            Context::set('roact', true);
        }

        $this->getFroalaeditorConfig($froalaeditor_default_config, Context::get('module_info')->module_srl);
    }

    function getFroalaeditorConfig ($froalaeditor_default_config,$current_module_srl = '')
    {
        if(!$current_module_srl && !Context::get('roact'))
        {
            return;
        }

        if($current_module_srl)
        {
            $oModuleModel = getModel('module');
            $froalaeditor_config = $oModuleModel->getModulePartConfig('froalaeditor', $current_module_srl);
        }
        if(!$froalaeditor_config)
        {
            $froalaeditor_config = new stdClass();
        }

        if($froalaeditor_default_config->is_froalaeditor_document_config == 'Y')
        {
            Context::set('froalaeditor_default_document_config', $froalaeditor_default_config->froalaeditor_document_config);
        }
        if($froalaeditor_default_config->is_froalaeditor_comment_config == 'Y')
        {
            Context::set('froalaeditor_default_comment_config', $froalaeditor_default_config->froalaeditor_comment_config);
        }
        if($froalaeditor_default_config->is_froalaeditor_message_config == 'Y')
        {
            Context::set('froalaeditor_default_message_config', $froalaeditor_default_config->froalaeditor_message_config);
        }
        if($froalaeditor_default_config->is_froalaeditor_document_mobile_config == 'Y')
        {
            Context::set('froalaeditor_default_document_mobile_config', $froalaeditor_default_config->froalaeditor_document_mobile_config);
        }
        if($froalaeditor_default_config->is_froalaeditor_comment_mobile_config == 'Y')
        {
            Context::set('froalaeditor_default_comment_mobile_config', $froalaeditor_default_config->froalaeditor_comment_mobile_config);
        }
        if($froalaeditor_default_config->is_froalaeditor_message_mobile_config == 'Y')
        {
            Context::set('froalaeditor_default_message_mobile_config', $froalaeditor_default_config->froalaeditor_message_mobile_config);
        }

        if(Context::get('act') == 'dispEditorConfigPreview')
        {
            return;
        }

        if($froalaeditor_config->is_froalaeditor_document_config == 'Y')
        {
            Context::set('froalaeditor_document_config', $froalaeditor_config->froalaeditor_document_config);
        }
        if($froalaeditor_config->is_froalaeditor_comment_config == 'Y')
        {
            Context::set('froalaeditor_comment_config', $froalaeditor_config->froalaeditor_comment_config);
        }
        if($froalaeditor_config->is_froalaeditor_document_mobile_config == 'Y')
        {
            Context::set('froalaeditor_document_mobile_config', $froalaeditor_config->froalaeditor_document_mobile_config);
        }
        if($froalaeditor_config->is_froalaeditor_comment_mobile_config == 'Y')
        {
            Context::set('froalaeditor_comment_mobile_config', $froalaeditor_config->froalaeditor_comment_mobile_config);
        }

        if($froalaeditor_config->froalaeditor_cdn == 'N')
        {
            $module_info = Context::get('module_info');
            $module_info->ro_cdn =$froalaeditor_config->froalaeditor_cdn;
            Context::set('module_info', $module_info);
        }
    }
}

$roFE = new roFE();
$roFE->roFE();

/* End of file editor.php */
/* Location: ./modules/editor/skins/froalaeditor/editor.php */


참조

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

https://romanesque.me/contact/18338


코멘트 0
접기/펴기 | 댓글 새로고침
 
 
Total 80 articles in 1 / 4 pages
번호 제목 제목 최근 수정일 조회 수
공지 라이믹스 2.1.15 + PHP8.3 이상에서 동작하는 써드파티 모듈 정리 2024.06.21 215
공지 이온디 쉐어드호스팅 서비스란 2024.05.01 337
80 [클라우드플레어] 클라우드플레어 redirect www to non www 파일 2020/07/10 312
79 [Plesk] [라이믹스관련팁] 카테고리 선택 시 '대상을 찾을 수 없습니다' 해결방법 파일 [1] 2022/11/18 186
78 [서버관리] 리눅스 유저 리스트 2024/05/10 174
77 [라이믹스] 라이믹스(XE) 위키(wiki) 모듈 파일 2024/06/21 166
76 [클라우드플레어] 도메인 변경하는 방법 파일 2021/06/22 134
75 [라이믹스] 라이믹스 매뉴얼 파일 2024/07/06 133
현재글 [라이믹스] 게시물 작성이 되지 않습니다. (프로알라 에디터 사용시) 2024/06/11 128
73 [누리고] 구매하기 클릭시 발생하는 오류 - SQLSTATE[HY000]: General error: 1364 Field 'purdate' doesn't have a default value [1] 2024/08/05 124
72 [기타] MAMP를 이용한 라이믹스 세팅 2024/08/07 107
71 [라이믹스] 라이믹스 SMS(Solapi) 카카오톡 알림톡 발송방법 2024/05/15 97
70 [누리고] 누리고 결제모듈 연동모듈은 어떻게 설정하나요? 파일 2024/07/07 95
69 [Plesk] 외부에서 mysql 접속 허용하기 파일 2021/09/02 93
68 [누리고] 결제시 발생하는 오류 - Variable order_srl for column order_srl is not set [2] 2024/08/05 91
67 [Plesk] 라이믹스 사용 시 플래스크 설정 방법 파일 2021/03/30 91
66 [XE] XE에서 라이믹스로 업그레이드 하는 방법 2024/06/18 89
65 [라이믹스] 호토페이 사용법(작성중) 2024/07/05 87
64 [라이믹스] 라이믹스 삭제해야하는 자료 안내 2024/05/29 86
63 [서버관리] DB 백업 및 복원 명령어 2024/06/15 80
62 [라이믹스] redis cache 설정 with Rhymix 2024/06/09 80
61 [라이믹스] [XE팁] 사용하던 도메인이 바뀌었을 때 2024/05/05 75

해시태그 디렉터리