You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
45 lines
1.1 KiB
45 lines
1.1 KiB
<?php
|
|
|
|
namespace App\Admin\Extensions\Form;
|
|
|
|
use Encore\Admin\Form\Field;
|
|
|
|
class PHPEditor extends Field
|
|
{
|
|
protected $view = 'admin::form.editor';
|
|
|
|
protected static $js = [
|
|
'/packages/codemirror-5.20.2/lib/codemirror.js',
|
|
'/packages/codemirror-5.20.2/addon/edit/matchbrackets.js',
|
|
'/packages/codemirror-5.20.2/mode/htmlmixed/htmlmixed.js',
|
|
'/packages/codemirror-5.20.2/mode/xml/xml.js',
|
|
'/packages/codemirror-5.20.2/mode/javascript/javascript.js',
|
|
'/packages/codemirror-5.20.2/mode/css/css.js',
|
|
'/packages/codemirror-5.20.2/mode/clike/clike.js',
|
|
'/packages/codemirror-5.20.2/mode/php/php.js',
|
|
];
|
|
|
|
protected static $css = [
|
|
'/packages/codemirror-5.20.2/lib/codemirror.css',
|
|
];
|
|
|
|
public function render()
|
|
{
|
|
$this->script = <<<EOT
|
|
|
|
CodeMirror.fromTextArea(document.getElementById("{$this->id}"), {
|
|
lineNumbers: true,
|
|
mode: "text/x-php",
|
|
extraKeys: {
|
|
"Tab": function(cm){
|
|
cm.replaceSelection(" " , "end");
|
|
}
|
|
}
|
|
});
|
|
|
|
EOT;
|
|
return parent::render();
|
|
|
|
}
|
|
}
|