2017 © Pedro Peláez
 

yii2-extension yii2-imperavi-redactor

Imperavi Redactor WYSIWYG widget (OEM-licensed for Yii 2)

image

bariew/yii2-imperavi-redactor

Imperavi Redactor WYSIWYG widget (OEM-licensed for Yii 2)

  • Wednesday, August 13, 2014
  • by bariew
  • Repository
  • 1 Watchers
  • 0 Stars
  • 286 Installations
  • JavaScript
  • 4 Dependents
  • 0 Suggesters
  • 46 Forks
  • 0 Open issues
  • 2 Versions
  • 0 % Grown

The README.md

Imperavi Redactor Widget For Yii2

Created for Tourista, (*1)

ImperaviRedactorWidget is a wrapper for Imperavi Redactor, a high quality WYSIWYG editor., (*2)

Note that Imperavi Redactor itself is a proprietary commercial copyrighted software but since Yii community bought OEM license you can use it for free with Yii., (*3)

Using model, (*4)

yii\imperavi\Widget::widget([
    // You can either use it for model attribute
    'model' => $my_model,
    'attribute' => 'my_field',

    // or just for input field
    'name' => 'my_input_name',

    // Some options, see http://imperavi.com/redactor/docs/
    'options' => [
        'toolbar' => false,
        'css' => 'wym.css',
    ],
]);

Alternatively you can attach Redactor to already existing DOM element by calling:, (*5)

yii\imperavi\Widget::widget([
    // Some options, see http://imperavi.com/redactor/docs/
    'options' => [],
]);

The redactor plugins plugged in with packages of resources., (*6)

yii\imperavi\Widget::widget([
    'options' => [
        'lang' => 'ru',
    ],
    'plugins' => [
        'fullscreen',
        'clips'
    ]
]);

Using upload actions, (*7)

 // 1. Use your controller actions() method, e.g.:
    public function actions()
    {
        $path = "/files/".$this->module->id."/".$this->id."/".Yii::$app->user->id;
        return [
            'file-upload'    => [
                'class'         => 'yii\imperavi\actions\FileUpload',
                'uploadPath'    => Yii::getAlias('@app/web'.$path),
                'uploadUrl'     => $path
            ],
            'image-upload'    => [
                'class'         => 'yii\imperavi\actions\ImageUpload',
                'uploadPath'    => Yii::getAlias('@app/web'.$path),
                'uploadUrl'     => $path
            ],
            'image-list'    => [
                'class'         => 'yii\imperavi\actions\ImageList',
                'uploadPath'    => Yii::getAlias('@app/web'.$path),
                'uploadUrl'     => $path
            ],
        ];
    }
 // 2. Set upload options in your imperavi widget, e.g.:
    [
        'fileUpload'               => Url::toRoute(['file-upload', 'attr' => 'content']),
        'imageUpload'              => Url::toRoute(['image-upload', 'attr' => 'content']),
        'imageGetJson'             => Url::toRoute(['image-list', 'attr' => 'content']),
        'imageUploadErrorCallback' => new \yii\web\JsExpression('function(json) { alert(json.error); }'),
        'fileUploadErrorCallback'  => new \yii\web\JsExpression('function(json) { alert(json.error); }'),
    ]

 * You can also redefine action 'customRules' attribute for file validation.

Installation

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

Either run, (*9)

php composer.phar require bariew/yii2-imperavi-redactor "*"

or add, (*10)

"bariew/yii2-imperavi-redactor": "*"

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

The Versions

13/08 2014

dev-master

9999999-dev

Imperavi Redactor WYSIWYG widget (OEM-licensed for Yii 2)

  Sources   Download

BSD-3-Clause

The Requires

 

by Alexander Yaremchuk
by Veaceslav Medvedev

yii imperavi imperavi redactor

13/08 2014

1.0.0-alpha

1.0.0.0-alpha

Imperavi Redactor WYSIWYG widget (OEM-licensed for Yii 2)

  Sources   Download

BSD-3-Clause

The Requires

 

by Alexander Yaremchuk
by Veaceslav Medvedev

yii imperavi imperavi redactor