coderlex/yii2-wysibb

This package is abandoned and no longer maintained. No replacement package was suggested.

Implements WysiBB to Yii2 applications

Installs: 45

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 1

Forks: 0

Type:yii2-extension

1.0.0 2015-12-21 21:25 UTC

This package is not auto-updated.

Last update: 2022-02-01 12:53:56 UTC


README

Implements WysiBB visual editor http://www.wysibb.com/ to Yii2 applications. More about WysiBB read at http://www.wysibb.com/

Install via composer

Run in your console:

php composer.phar global require "fxp/composer-asset-plugin:1.0.0"
php composer.phar require "coderlex/yii2-wysibb" "*"

Basic usage

$form = \yii\widgets\ActiveForm::begin();
print $form->field($model, 'content')->widget(\coderlex\wysibb\WysiBB::className(), [
...
]);
\yii\widgets\ActiveForm::end();