2017 © Pedro Peláez
 

yii2-extension yii2-redactor

Extension redactor for Yii2 Framework.

image

yiidoc/yii2-redactor

Extension redactor for Yii2 Framework.

  • Thursday, January 7, 2016
  • by zinzinday
  • Repository
  • 20 Watchers
  • 163 Stars
  • 108,543 Installations
  • JavaScript
  • 46 Dependents
  • 1 Suggesters
  • 92 Forks
  • 44 Open issues
  • 3 Versions
  • 11 % Grown

The README.md

yii2-redactor

Extension redactor for Yii2 Framework., (*1)

Installation

The preferred way to install this extension is through composer., (*2)

Either run, (*3)

php composer.phar require --prefer-dist yiidoc/yii2-redactor "*"

or, (*4)

 "yiidoc/yii2-redactor": "*"

to the require section of your composer.json., (*5)

Configure

Add to config file (config/web.php or common\config\main.php), (*6)

    'modules' => [
        'redactor' => 'yii\redactor\RedactorModule',
    ],

or if you want to change the upload directory. to path/to/uploadfolder default value @webroot/uploads, (*7)

    'modules' => [
        'redactor' => [
            'class' => 'yii\redactor\RedactorModule',
            'uploadDir' => '@webroot/path/to/uploadfolder',
            'uploadUrl' => '@web/path/to/uploadfolder',
            'imageAllowExtensions'=>['jpg','png','gif']
        ],
    ],

note: You need to create uploads folder and chmod and set security for folder upload reference: Protect Your Uploads Folder with .htaccess, How to Setup Secure Media Uploads, (*8)

Config view/form, (*9)

<?= $form->field($model, 'body')->widget(\yii\redactor\widgets\Redactor::className()) ?>

or not use ActiveField, (*10)

<?= \yii\redactor\widgets\Redactor::widget([
    'model' => $model,
    'attribute' => 'body'
]) ?>

or config advanced redactor reference Docs, (*11)

<?= $form->field($model, 'body')->widget(\yii\redactor\widgets\Redactor::className(), [
    'clientOptions' => [
        'imageManagerJson' => ['/redactor/upload/image-json'],
        'imageUpload' => ['/redactor/upload/image'],
        'fileUpload' => ['/redactor/upload/file'],
        'lang' => 'zh_cn',
        'plugins' => ['clips', 'fontcolor','imagemanager']
    ]
])?>

Bummer! i was tested on my project but not have many time to write document on file and usage. If you have problem please create a issue, (*12)

Thanks!, (*13)

The Versions

07/01 2016

dev-master

9999999-dev

Extension redactor for Yii2 Framework.

  Sources   Download

BSD-3-Clause

The Requires

 

extension yii2 wysiwyg imperavi redactor html editor

02/06 2015

2.0.1

2.0.1.0

Extension redactor for Yii2 Framework.

  Sources   Download

BSD-3-Clause

The Requires

 

extension yii2 wysiwyg imperavi redactor html editor

14/01 2015

2.0.0

2.0.0.0

Extension redactor for Yii2 Framework.

  Sources   Download

BSD-3-Clause

The Requires

 

extension yii2 wysiwyg imperavi redactor html editor