cyberitas/yii2-tinymce-processor

Yii 2 extension providing WordPress-style text processing from a TinyMCE editor

0.7.0 2016-04-20 18:03 UTC

This package is auto-updated.

Last update: 2024-04-14 02:45:21 UTC


README

Build Status Coverage Status

Yii 2 extension providing WordPress-style text processing from a TinyMCE editor.

Features

Usage

composer require "cyberitas/yii2-tinymce-processor"

Processor

use Cyberitas\TinymceProcessor\TinymceProcessor;

$tmp = new TinymceProcessor(['config' => [
    'autop' => true,
    'essence' => true,
    'purify' => [
        'purifierConfig' => [
            'Attr.EnableId' => true
        ]
    ],
    'texturize' => [
        'leftDoubleQuote' => '«',
        'rightDoubleQuote' => '»'
    ]
]]);
$output = $tmp->process("This is some content from a TinyMCE editor.");

Asset Bundle

use Cyberitas\TinymceProcessor\Assets\TinymceAssets;
use yii\helpers\Html;
use yii\widgets\InputWidget;

class TinymceWidget extends InputWidget
{
    public function run()
    {
        TinymceAssets::register($this->view);
        $this->view->registerJs('tinymce.init({selector: "textarea"});');
        echo Html::textarea($this->name, $this->value);
    }
}

Copyright

Copyright © 2016 Cyberitas Technologies, LLC. This program is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.

This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details.