PHP code example of markocupic / contao-tinymce-plugin-builder-bundle

1. Go to this page and download the library: Download markocupic/contao-tinymce-plugin-builder-bundle library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

markocupic / contao-tinymce-plugin-builder-bundle example snippets




    // Add a plugin to the tinymce editor
    $GLOBALS['TINYMCE']['SETTINGS']['PLUGINS'][] = 'myPlugin';

    // Add a button to the toolbar in tinymce editor
    $GLOBALS['TINYMCE']['SETTINGS']['TOOLBAR'][] = 'myPlugin';

    // Das Paket muss dafür Sorge tragen, dass der js-Code des Plugins in "assets\tinymce4\js\plugins\myPlugin\plugin.min.js" abgelegt wird.

    // Add a content_css in tinymce editor
    $GLOBALS['TINYMCE']['SETTINGS']['CONTENT_CSS'][] = 'my_plugin.css';

    // Add 'extended_valid_elements' to tinymce editor e.g. Font Awesome
    $GLOBALS['TINYMCE']['SETTINGS']['EXTENDED_VALID_ELEMENTS'][] = 'i[*]';

    // Ein eigener Schlüssel wird durch
    $GLOBALS['TINYMCE']['SETTINGS']['CONFIG_ROW']['myKey'] = 'myKeyValue';

    // dadurch wird bei der Inititalisierung zusätzlich  myKey: myKeyValue;
    // Die Auswertung von myKey kann im Plugin durch editor getParameter('myKey') erfolgen.