asofter/yii2-imperavi-redactor

此软件包已被废弃,不再维护。未建议替代软件包。

Imperavi Redactor WYSIWYG小部件(针对Yii 2的OEM许可)

安装次数: 716,874

依赖者: 27

建议者: 1

安全: 0

星星: 87

观察者: 11

分支: 52

公开问题: 17

语言:JavaScript

类型:yii2-extension

0.0.3 2016-01-12 16:21 UTC

This package is not auto-updated.

Last update: 2023-08-19 09:50:30 UTC


README

Experitus 创建

ImperaviRedactorWidgetImperavi Redactor 的包装器,一个高质量的WYSIWYG编辑器。

注意,Imperavi Redactor 本身是专有商业版权软件,但由于Yii社区购买了OEM许可,因此您可以免费与Yii一起使用。

使用模型

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

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

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

使用ActiveForm

use yii\imperavi\Widget;
use yii\widgets\ActiveForm;

$form = ActiveForm::begin();

echo $form->field($model, 'my_field')->widget(Widget::classname(), 'options' => []);

或者您也可以通过调用将Redactor附加到已存在的DOM元素:

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

通过资源包安装的redactor插件。

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

安装

安装此扩展的首选方式是通过 composer

运行以下命令之一:

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

或者将以下内容添加到您的 composer.json 文件的require部分:

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