निम्नलिखित छोटा प्लगइन वर्डप्रेस टाइनीएमसीई संस्करण 4 की लाइन 1 के अंदर एक कस्टम बटन बनाता है, जिसका परीक्षण WP संस्करण 3.9-beta2 में किया गया है।
प्लगइन ने var_dump
मूल्यों को समझने के लिए शामिल किया है। दृश्य संपादक की अन्य पंक्तियों के लिए बटन जोड़ना संभव है, केवल एक अन्य हुक, जैसे पंक्ति 2 mce_buttons_2
:।
परिणाम
प्लगइन, 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;
}
स्क्रिप्ट, जावास्क्रिप्ट पक्ष - 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 का उपयोग करें , या डाउनलोड करें। टिनीएमसीई में विभिन्न बटन के लिए जिस्ट के और भी उदाहरण हैं।
लिंक