lav45/yii2-aceeditor

Yii2 ajax.org Ace Editor 组件

安装数量: 5,211

依赖: 1

建议者: 0

安全: 0

星标: 2

关注者: 3

分支: 3

开放问题: 0

类型:yii2-extension

1.2.0 2018-08-23 22:23 UTC

This package is auto-updated.

Last update: 2024-09-26 02:03:50 UTC


README

本扩展允许您安装和使用代码编辑器 Ace

演示

安装

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

运行以下命令之一:

php composer.phar require --prefer-dist lav45/yii2-aceeditor "1.2.*"

或者添加以下内容

"lav45/yii2-aceeditor": "1.2.*"

使用方法

如何调用?

use lav45\aceEditor\AceEditorWidget;

echo $form->field($model, 'content')->widget(AceEditorWidget::className(), [
    'theme' => 'xcode',
    'mode' => 'html',
    'showPrintMargin' => false,
    'fontSize' => 14,
    'height' => 300,
    'options' => [
        'style' => 'border: 1px solid #ccc; border-radius: 4px;'
    ]
]);

// Ace editor without model
echo AceEditorWidget::widget([
    'name' => 'description',
    'value' => 'same text',
]);