21286 Posts in 5733 Topics by 2602 members
|
Page:
1
|
Go to End | |
| Author | Topic: | 2206 Views |
-
HtmlEditorConfig::get('cms')->setOption for tinymce

13 September 2009 at 10:52am
Hallo,
tiny mce editor puts <p> tags automaticly in my html source code.
I want to stop it in the _config.php like this:
HtmlEditorConfig::get('cms')->setOptions(array('apply_source_formatting'=>'false'));
HtmlEditorConfig::get('cms')->setOptions(array('forced_root_block'=>'p'));or in the page.php:
public function getCMSFields() {
$fields = parent::getCMSFields();
HtmlEditorConfig::get('cms')->setOption('verify_html', 'false');
HtmlEditorConfig::get('cms')->setOption('apply_source_formatting,'false');
HtmlEditorConfig::get('cms')->setOption('forced_root_block','p');return $fields;
}
but nothing works for me.Any helpful suggestions?
Thanks Michi
-
Re: HtmlEditorConfig::get('cms')->setOption for tinymce

17 September 2009 at 8:48pm
ok, this works fine for me :
see here:
http://open.silverstripe.com/ticket/4390
in mysite/_config.php:
Object::add_extension("LeftAndMain", "MyLeftAndMainDecorator");
in mysite/code/ I made a new file MyLeftAndMainDecorator.php and put into:
<?php
class MyLeftAndMainDecorator extends LeftAndMainDecorator
{
function init()
{
HtmlEditorConfig::get('cms')->setOptions( array ('valid_elements'=>'*[ * ]', 'forced_root_block'=>false));
}
}
?>
| 2206 Views | ||
|
Page:
1
|
Go to Top |

