mirror of
https://github.com/a2nt/silverstripe-webpack.git
synced 2024-10-22 17:05:31 +02:00
22 lines
485 B
PHP
22 lines
485 B
PHP
<?php
|
|
|
|
use SilverStripe\Forms\HTMLEditor\HtmlEditorConfig;
|
|
use SilverStripe\Core\Manifest\ModuleResourceLoader;
|
|
use SilverStripe\ORM\Search\FulltextSearchable;
|
|
|
|
HtmlEditorConfig::get('cms')->enablePlugins([
|
|
'template',
|
|
'fullscreen',
|
|
'hr',
|
|
'contextmenu',
|
|
'charmap',
|
|
'visualblocks',
|
|
'lists',
|
|
'charcount' => ModuleResourceLoader::resourceURL(
|
|
'drmartingonzo/ss-tinymce-charcount:client/dist/js/bundle.js'
|
|
),
|
|
]);
|
|
|
|
FulltextSearchable::enable();
|
|
|