hi. what's needs to be done to have this ability with the php module in version 1.6.
i would be happy to work on it, but would need some guidance.
thanks
<quote>
It's now possible to override any of the editor's configurations (for now it's implemented just for JavaScript, ASPX and HTC modules). See _test/test.html for a sample. I'm now waiting for the Community for the ASP, CFM and PHP versions.
</quote>
i would be happy to work on it, but would need some guidance.
thanks
<quote>
It's now possible to override any of the editor's configurations (for now it's implemented just for JavaScript, ASPX and HTC modules). See _test/test.html for a sample. I'm now waiting for the Community for the ASP, CFM and PHP versions.
</quote>
RE: overide config setting in php
in the page calling the editor:
$oFCKeditor->Config['StyleNames'] = ';Style 1;Style 2; Style 3' ;
in fckeditor.php
add this on line 30 - right under $this->Value = '' ;
$this->Config = array();
add this on line 70 - right under
$sLink = $sLink . "&Browse=false" ;
}
while (list($key, $value) = each ($this->Config)) {
$sLink = $sLink . "&" . $key . "=" .$value;
}
if anyone has any better ways to do this please post.
thanks