当前位置: 首页>>代码示例>>PHP>>正文


PHP chk_editor_js函数代码示例

本文整理汇总了PHP中chk_editor_js函数的典型用法代码示例。如果您正苦于以下问题:PHP chk_editor_js函数的具体用法?PHP chk_editor_js怎么用?PHP chk_editor_js使用的例子?那么, 这里精选的函数代码示例或许可以为您提供帮助。


在下文中一共展示了chk_editor_js函数的6个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: check_itemuse_write

    check_itemuse_write($it_id, $member['mb_id']);
} else {
    if ($w == "u") {
        $use = sql_fetch(" select * from {$g5['g5_shop_item_use_table']} where is_id = '{$is_id}' ");
        if (!$use) {
            alert_close("사용후기 정보가 없습니다.");
        }
        $it_id = $use['it_id'];
        $is_score = $use['is_score'];
        if (!$is_admin && $use['mb_id'] != $member['mb_id']) {
            alert_close("자신의 사용후기만 수정이 가능합니다.");
        }
    }
}
include_once G5_PATH . '/head.sub.php';
$is_dhtml_editor = false;
// 모바일에서는 DHTML 에디터 사용불가
if ($config['cf_editor'] && !G5_IS_MOBILE) {
    $is_dhtml_editor = true;
}
$editor_html = editor_html('is_content', get_text($use['is_content'], 0), $is_dhtml_editor);
$editor_js = '';
$editor_js .= get_editor_js('is_content', $is_dhtml_editor);
$editor_js .= chk_editor_js('is_content', $is_dhtml_editor);
$itemuseform_skin = G5_MSHOP_SKIN_PATH . '/itemuseform.skin.php';
if (!file_exists($itemuseform_skin)) {
    echo str_replace(G5_PATH . '/', '', $itemuseform_skin) . ' 스킨 파일이 존재하지 않습니다.';
} else {
    include_once $itemuseform_skin;
}
include_once G5_PATH . '/tail.sub.php';
开发者ID:ned3y2k,项目名称:youngcart5,代码行数:31,代码来源:itemuseform.php

示例2: sql_fetch

}
if ($w == "u") {
    $qa = sql_fetch(" select * from {$g5['g5_shop_item_qa_table']} where iq_id = '{$iq_id}' ");
    if (!$qa) {
        alert_close("상품문의 정보가 없습니다.");
    }
    $it_id = $qa['it_id'];
    if (!$iq_admin && $qa['mb_id'] != $member['mb_id']) {
        alert_close("자신의 상품문의만 수정이 가능합니다.");
    }
    if ($qa['iq_secret']) {
        $chk_secret = 'checked="checked"';
    }
}
include_once G5_PATH . '/head.sub.php';
$is_dhtml_editor = false;
// 모바일에서는 DHTML 에디터 사용불가
if ($config['cf_editor'] && (!is_mobile() || defined('G5_IS_MOBILE_DHTML_USE') && G5_IS_MOBILE_DHTML_USE)) {
    $is_dhtml_editor = true;
}
$editor_html = editor_html('iq_question', get_text($qa['iq_question'], 0), $is_dhtml_editor);
$editor_js = '';
$editor_js .= get_editor_js('iq_question', $is_dhtml_editor);
$editor_js .= chk_editor_js('iq_question', $is_dhtml_editor);
$itemqaform_skin = G5_MSHOP_SKIN_PATH . '/itemqaform.skin.php';
if (!file_exists($itemqaform_skin)) {
    echo str_replace(G5_PATH . '/', '', $itemqaform_skin) . ' 스킨 파일이 존재하지 않습니다.';
} else {
    include_once $itemqaform_skin;
}
include_once G5_PATH . '/tail.sub.php';
开发者ID:davis00,项目名称:youngcart,代码行数:31,代码来源:itemqaform.php

示例3: frmcontentform_check

    <a href="./contentlist.php" class="btn btn-default">목록</a>
</div>

</form>

<script>
function frmcontentform_check(f)
{
    errmsg = "";
    errfld = "";

    <?php 
echo get_editor_js('co_content');
?>
    <?php 
echo chk_editor_js('co_content');
?>
    <?php 
echo get_editor_js('co_mobile_content');
?>
    check_field(f.co_id, "ID를 입력하세요.");
    check_field(f.co_subject, "제목을 입력하세요.");
    check_field(f.co_content, "내용을 입력하세요.");

    if (errmsg != "") {
        alert(errmsg);
        errfld.focus();
        return false;
    }
    return true;
}
开发者ID:kimyongyeon,项目名称:myproject,代码行数:31,代码来源:contentform.php

示例4: fwrite_submit

        if (result)
            obj.value = "html2";
        else
            obj.value = "html1";
    }
    else
        obj.value = "";
}

function fwrite_submit(f)
{
    <?php 
echo get_editor_js('wr_content', $is_dhtml_editor);
?>
    <?php 
echo chk_editor_js('wr_content', $is_dhtml_editor);
?>

    var subject = "";
    var content = "";
    $.ajax({
        url: g5_bbs_url+"/ajax.filter.php",
        type: "POST",
        data: {
            "subject": f.wr_subject.value,
            "content": f.wr_content.value
        },
        dataType: "json",
        async: false,
        cache: false,
        success: function(data, textStatus) {
开发者ID:eeewq123,项目名称:aaa,代码行数:31,代码来源:write.skin.php

示例5: fmailform_check

<script>
function fmailform_check(f)
{
    errmsg = "";
    errfld = "";

    check_field(f.ma_subject, "제목을 입력하세요.");
    //check_field(f.ma_content, "내용을 입력하세요.");

    if (errmsg != "") {
        alert(errmsg);
        errfld.focus();
        return false;
    }

    <?php 
echo get_editor_js("ma_content");
?>
    <?php 
echo chk_editor_js("ma_content");
?>

     return true;
 }

document.fmailform.ma_subject.focus();
</script>

<?php 
include_once './admin.tail.php';
开发者ID:kimyongyeon,项目名称:myproject,代码行数:30,代码来源:mail_form.php

示例6: apms_unpack

if ($skin_row['qa_' . MOBILE_ . 'set']) {
    $wset = apms_unpack($skin_row['qa_' . MOBILE_ . 'set']);
}
// 데모
if ($is_demo) {
    @(include THEMA_PATH . '/assets/demo.config.php');
}
$skin_path = G5_SKIN_PATH . '/apms/qa/' . $skin_name;
$skin_url = G5_SKIN_URL . '/apms/qa/' . $skin_name;
if ($move) {
    include_once './_head.php';
} else {
    include_once G5_PATH . '/head.sub.php';
    @(include_once THEMA_PATH . '/head.sub.php');
}
$is_dhtml_editor = false;
// 모바일에서는 DHTML 에디터 사용불가
if ($config['cf_editor'] && !G5_IS_MOBILE) {
    $is_dhtml_editor = true;
}
$editor_html = editor_html('iq_answer', get_text($qa['iq_answer'], 0), $is_dhtml_editor);
$editor_js = '';
$editor_js .= get_editor_js('iq_answer', $is_dhtml_editor);
$editor_js .= chk_editor_js('iq_answer', $is_dhtml_editor);
include_once $skin_path . '/qansform.skin.php';
if ($move) {
    include_once './_tail.php';
} else {
    @(include_once THEMA_PATH . '/tail.sub.php');
    include_once G5_PATH . '/tail.sub.php';
}
开发者ID:peb317,项目名称:gbamn,代码行数:31,代码来源:itemqansform.php


注:本文中的chk_editor_js函数示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。