2018-03-24 11:45:31 +01:00
|
|
|
<?php
|
2021-09-05 21:46:32 +02:00
|
|
|
|
2024-05-30 18:16:13 +02:00
|
|
|
use SilverStripe\Forms\HTMLEditor\TinyMCEConfig;
|
2024-04-22 15:02:31 +02:00
|
|
|
use SilverStripe\Core\EnvironmentLoader;
|
|
|
|
|
|
|
|
$env = BASE_PATH . '/app/.env';
|
|
|
|
$loader = new EnvironmentLoader();
|
|
|
|
$loader->loadFile($env);
|
2021-09-05 21:46:32 +02:00
|
|
|
/*\SilverStripe\Core\Config\Config::modify()->set(
|
|
|
|
\SilverStripe\Control\Email\Email::class,
|
|
|
|
'bcc_all_emails_to',//'cc_all_emails_to',
|
|
|
|
'test@example.com'
|
|
|
|
);*/
|
2024-05-30 18:16:13 +02:00
|
|
|
|
|
|
|
$cfg = TinyMCEConfig::get('cms');
|
|
|
|
$cfg->setOption('forced_root_block', 'p');
|
2024-06-19 19:48:16 +02:00
|
|
|
$cfg->setOption('fix_list_elements', true);
|
|
|
|
$cfg->setOption('remove_trailing_brs', true);
|
|
|
|
$cfg->setOption('invalid_styles', 'font-family font'); //'color font-size width height'
|
2024-06-11 01:47:29 +02:00
|
|
|
|
2024-05-30 18:16:13 +02:00
|
|
|
$cfg->setOption(
|
|
|
|
'valid_elements',
|
2024-06-19 19:48:16 +02:00
|
|
|
'p/div,strong/b,em/i,'.
|
|
|
|
'strong[class|style|id],em[class|style|id],a[href|target=_blank|style],p[class|style|id],br,span[class|style|id],' .
|
|
|
|
'blockquote[class|style|id],' .
|
|
|
|
'h2[class|style|id],h3[class|style|id],h4[class|style|id],h5[class|style|id],h6[class|style|id],'.
|
|
|
|
'address[class|style|id],pre[class|style|id],hr,'.
|
|
|
|
'a[href|rel|title|target|class|style|id],'.
|
2024-08-14 18:13:10 +02:00
|
|
|
'table[class|style|id],tr,td,thead,tbody,th,'.
|
|
|
|
'ul[class|style|id],ol[start|type|class|style|id],li[class|style|id],'.
|
2024-06-19 19:48:16 +02:00
|
|
|
'img[class|style|id|src|alt|title|hspace|vspace|width|height|align|name|usemap|data*],' .
|
|
|
|
'iframe[class|style|id|src|name|width|height|align|frameborder|marginwidth|marginheight|scrolling],' .
|
|
|
|
'object[class|style|id|width|height|data|type],' .
|
|
|
|
'embed[class|style|id|src|type|pluginspage|width|height|autoplay],' .
|
|
|
|
'param[class|style|id|name|value],' .
|
|
|
|
'map[class|style|id|name|id],' .
|
2024-08-14 18:13:10 +02:00
|
|
|
'area[class|style|id|shape|coords|href|target|alt]',
|
2024-05-30 18:16:13 +02:00
|
|
|
);
|