เพิ่มปุ่ม TinyMCE 4 แบบกำหนดเองที่ใช้งานได้ตั้งแต่ WordPress 3.9-beta1


20

มันเป็นวิธีการที่เป็นไปได้ที่จะเพิ่มปุ่มที่กำหนดเองกับ TinyMCE บรรณาธิการภาพรุ่นที่ 4 ?

ขณะนี้ฉันพบคำถาม & คำตอบเล็กน้อยกับหัวข้อนี้ แต่ไม่ใช่คำตอบหรือวิธีการ แต่ฉันไม่สามารถหาบทช่วยสอน, เอกสารประกอบ, ถาม & ตอบสำหรับหัวข้อเพื่อเพิ่มปุ่มที่กำหนดเองใน TinyMCE เวอร์ชัน 4 รวมอยู่ใน WordPress ตั้งแต่รุ่น 3.9-beta1

เป้าหมาย

ป้อนคำอธิบายรูปภาพที่นี่

คำตอบ:


24

ปลั๊กอินขนาดเล็กต่อไปนี้สร้างปุ่มที่กำหนดเองภายในบรรทัดที่ 1 ของ WordPress TinyMCE เวอร์ชัน 4 ซึ่งทดสอบใน WP เวอร์ชัน 3.9-beta2

ปลั๊กอินได้var_dumpรวมไว้เพื่อทำความเข้าใจกับค่าต่างๆ นอกจากนี้ยังเป็นไปได้ที่จะเพิ่มปุ่มไปสายอื่น ๆ ของโปรแกรมแก้ไขภาพเพียงตะขออื่น ๆ เช่นสายที่ mce_buttons_22:

ผล

ป้อนคำอธิบายรูปภาพที่นี่

ปลั๊กอิน, ด้าน PHP - tinymce4-test.php

<?php
/**
 * Plugin Name: TinyMCE 4 @ WP Test
 * Description: 
 * Plugin URI:  
 * Version:     0.0.1
 * Author:      Frank Bültge
 * Author URI:  http://bueltge.de
 * License:     GPLv2
 * License URI: ./assets/license.txt
 * Text Domain: 
 * Domain Path: /languages
 * Network:     false
 */

add_action( 'admin_head', 'fb_add_tinymce' );
function fb_add_tinymce() {
    global $typenow;

    // Only on Post Type: post and page
    if( ! in_array( $typenow, array( 'post', 'page' ) ) )
        return ;

    add_filter( 'mce_external_plugins', 'fb_add_tinymce_plugin' );
    // Add to line 1 form WP TinyMCE
    add_filter( 'mce_buttons', 'fb_add_tinymce_button' );
}

// Inlcude the JS for TinyMCE
function fb_add_tinymce_plugin( $plugin_array ) {

    $plugin_array['fb_test'] = plugins_url( '/plugin.js', __FILE__ );
    // Print all plugin JS path
    var_dump( $plugin_array );
    return $plugin_array;
}

// Add the button key for address via JS
function fb_add_tinymce_button( $buttons ) {

    array_push( $buttons, 'fb_test_button_key' );
    // Print all buttons
    var_dump( $buttons );
    return $buttons;
}

สคริปต์, ฝั่ง JavaScript - plugin.js

( function() {
    tinymce.PluginManager.add( 'fb_test', function( editor, url ) {

        // Add a button that opens a window
        editor.addButton( 'fb_test_button_key', {

            text: 'FB Test Button',
            icon: false,
            onclick: function() {
                // Open window
                editor.windowManager.open( {
                    title: 'Example plugin',
                    body: [{
                        type: 'textbox',
                        name: 'title',
                        label: 'Title'
                    }],
                    onsubmit: function( e ) {
                        // Insert content when the window form is submitted
                        editor.insertContent( 'Title: ' + e.data.title );
                    }

                } );
            }

        } );

    } );

} )();

ส่วนสำคัญ

ใช้Gist bueltge / 9758082เป็นข้อมูลอ้างอิงหรือดาวน์โหลด ส่วนสำคัญยังมีตัวอย่างเพิ่มเติมสำหรับปุ่มที่แตกต่างใน TinyMCE

การเชื่อมโยง


2
เอกสารของ TinyMCE เกี่ยวกับวิธีสร้างไดอะล็อกนั้นไม่มีประโยชน์จริง ๆ ดังนั้นฉันจึงไปข้างหน้าและเขียนบทความที่แสดงรายการวิดเจ็ตและโครงร่างคอนเทนเนอร์ที่แตกต่างกัน: makina-corpus.com/blog/metier/2016/20
Gagaro

3

และหากคุณต้องการมีปุ่มไอคอนจริงคุณสามารถใช้ประโยชน์จาก dashicons หรือแบบอักษรไอคอนของคุณเอง

สร้างไฟล์ CSS และจัดคิวบนฝั่งผู้ดูแลระบบ

i.mce-i-pluginname:before {
    content: "\f164";
    display: inline-block;
    -webkit-font-smoothing: antialiased;
    text-align: center;
    font: 400 20px/1 dashicons!important;
    speak: none;
    vertical-align: top;
}

โดยทั่วไปนำมาจากแกนกลางโดยตรง


ถูกต้องอยู่ในลิงค์ของฉันด้านบนในลิงค์ลิสต์
bueltge

หวังว่าฉันจะได้พบคำตอบนี้ก่อนที่จะใช้เวลาครึ่งชั่วโมงพยายามที่จะเพิ่มผ่านไฟล์ CSS ดูเหมือนว่าวิธีที่ดีที่สุดที่จะทำ; บทเรียนทั้งหมดที่ฉันพบในโลกออนไลน์นั้นไม่จำเป็น
aendrew

0

วิธีการง่ายๆในการเพิ่มปุ่ม

1) เพิ่มรหัสนี้เข้ากับฟังก์ชั่น PHP หรือในปลั๊กอิน

//add_protect_shortcode_button
add_action('admin_init', 'add_cb_button');function add_cb_button() {
   if (current_user_can('edit_posts')  &&  get_user_option('rich_editing') == 'true') {
        add_filter('mce_buttons_2', 'register_buttonfirst');
        add_filter('mce_external_plugins', 'add_pluginfirst');
   }
}
function register_buttonfirst($buttons) {  array_push($buttons, "|", "shortcode_button1" );   return $buttons;}
function add_pluginfirst($plugin_array) {$plugin_array['MyPuginButtonTag'] =  plugin_dir_url( __FILE__ ).'My_js_folder/1_button.php';return $plugin_array;}
add_filter( 'tiny_mce_version', 'my_refresh_mceeee1');  function my_refresh_mceeee1($ver) {$ver += 3;return $ver;}

2) สร้าง 1_button.php ในโฟลเดอร์เป้าหมายและใส่รหัสนี้ (หมายเหตุเปลี่ยน "wp-load" และ "ButtonImage.png" urls !!!)

<?php 
header("Content-type: application/x-javascript");
require('../../../../wp-load.php');
?>
(function() {
    // START my customs
    var abcd =location.host;

    tinymce.create('tinymce.plugins.shortcodebuton_plugin2', {  
        init            : function(ed, this_folder_url)
        {
                    // -------------------------
                    ed.addButton('shortcode_button1', {  
                        title : 'Show Level1 count',  
                        image : this_folder_url + '/ButtonImage.png',
                        onclick : function() {  
                            ed.selection.setContent('[statistics_sp]');  
                                //var vidId = prompt("YouTube Video", "");
                                //ed.execCommand('mceInsertContent', false, '[youtube id="'+vidId+'"]');
                        }  
                    });


        }, 

        createControl   : function(n, cm) {     return null;  }, 
    });  
    tinymce.PluginManager.add('MyPuginButtonTag', tinymce.plugins.shortcodebuton_plugin2);  
})();

ฉันคิดว่านี่ไม่ใช่วิธีที่ดีที่สุด การรวมของ wp-load.php ไม่เสถียร ความเร็วที่ทิ้งไฟล์นี้แตกต่าง การติดตั้ง WordPress มีความเป็นไปได้ที่จะย้ายธีมและโฟลเดอร์ปลั๊กอินเริ่มต้น
bueltge
โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.