xlerr/yii2-widget-code-editor

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

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,
    ],
]);