Does anyone have a method for detaching the editor toolbar in PHP? I can see how the javascript one works, but am not sure how to implement it for the php version.
Take the exemple from _samples/html/sample10.html and in a PHP sample, put: 1. the html div with the code: <div id="xToolbar"></div> 2. the PHP code, before the "Create()" calling: $oFCKeditor->Config['ToolbarLocation'] = 'Out:xToolbar' ;
RE: Detach Toolbar in PHP
1. the html div with the code:
<div id="xToolbar"></div>
2. the PHP code, before the "Create()" calling:
$oFCKeditor->Config['ToolbarLocation'] = 'Out:xToolbar' ;
I've made a little test and it works.
Good luck.