xlerr/yii2-widget-code-editor

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

code editor

Installs: 2 466

Dependents: 2

Suggesters: 0

Security: 0

Stars: 0

Watchers: 1

Forks: 0

pkg:composer/xlerr/yii2-widget-code-editor

This package has no released version yet, and little information is available.


README

演示

demo.png

启动服务

php -S 127.0.0.1:9991 -t examples

使用浏览器访问 http://127.0.0.1:9991

使用方法

use xlerr\CodeEditor\CodeEditor;

echo CodeEditor::widget([
    'name'          => 'example',
    'value'         => file_get_contents(__FILE__),
    'clientOptions' => [
        'mode' => CodeEditor::MODE_PHP,
        'minLines' => 10,
        'maxLines' => 20,
    ],
]);