이온디
첨부파일 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 3 / 4 pages
번호 제목 제목 최근 수정일 조회 수
공지 라이믹스 2.1.15 + PHP8.3 이상에서 동작하는 써드파티 모듈 정리 2024.06.21 215
공지 이온디 쉐어드호스팅 서비스란 2024.05.01 337
40 [서버관리] 하위 디렉토리별 용량 확인하는 명령어 2024/06/08 45
39 [워드프레스] 갑자기 사이트가 오류를 뱉어요 2024/05/08 26
38 [XE] xe_session 넌 누구니 2024/05/08 23
37 [라이믹스] froala 에디터가 뜨지 않습니다. 2024/05/07 46
36 [HestiaCP] hestiaCP 웹메일 설정방법 파일 2024/05/07 38
35 [그누보드] Warning: Use of undefined constant G5_COMMUNITY_USE - assumed 'G5_COMMUNITY_USE' 2024/05/06 51
34 [HestiaCP] HesiaCP + Cloudflare 사용시 SSL 설정 방법 파일 2024/05/06 68
33 [그누보드] 비밀글 휴대폰인증모듈 shell_exec() 함수 에러 관련 2024/05/06 0
32 [그누보드] 비밀글 g5_is_member 변수가 선언되지 않았습니다. js/ apms.sideview.js 2024/05/18 1
31 [HestiaCP] PHP Extension은 어느 경로에 업로드해야하나요? 2024/05/28 42
30 [Plesk] Plesk 패널에 extension 설치방법 파일 2024/05/06 59
29 [누리고] 비회원 주문시 발생하는 오류 파일 2024/05/06 23
28 [누리고] <이 모듈의 모듈인스턴스는 1개만 생성이 가능합니다.> 오류 메세지 발생시 2024/05/06 23
27 [누리고] 누리고 모바일에서 결제가 안됩니다. 파일 2024/05/06 51
26 [CMS컨텐츠] 비밀글 이온디 베이직 설정 방법 2024/06/11 7
25 [XE] XE 소개 파일 2024/05/06 18
24 [누리고] 누리고 결제모듈 - 연동모듈의 종류 파일 2024/05/06 24
23 [누리고] 연동모듈 설정 후 결제하기 누르면 발생하는 오류 파일 2024/05/06 21
22 [XE] XE 보안 업데이트 최종버전 다운로드 2024/05/06 45
21 [누리고] 결제하기, 연동모듈과 플러그인의 차이점 파일 2024/05/06 46

해시태그 디렉터리

오늘의 핫게시물