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.
22 lines
428 B
22 lines
428 B
<?php
|
|
|
|
namespace App\Admin\Extensions\Form;
|
|
|
|
use Encore\Admin\Form\Field;
|
|
|
|
class CKEditor extends Field
|
|
{
|
|
public static $js = [
|
|
'/packages/ckeditor/ckeditor.js',
|
|
'/packages/ckeditor/adapters/jquery.js',
|
|
];
|
|
|
|
protected $view = 'admin.ckeditor';
|
|
|
|
public function render()
|
|
{
|
|
$this->script = "$('textarea.{$this->getElementClass()}').ckeditor();";
|
|
|
|
return parent::render();
|
|
}
|
|
} |