|
BasePath = '/fckeditor/' ; // '/fckeditor/' is the default value.
$sBasePath = $_SERVER['PHP_SELF'] ;
$sBasePath = substr( $sBasePath, 0, strpos( $sBasePath, "_samples" ) ) ;
$oFCKeditor = new FCKeditor("body") ;
$oFCKeditor->BasePath = $sBasePath ;
//$oFCKeditor->ToolbarSet = 'Basic';
$oFCKeditor->ToolbarSet = 'Default_aweb';
$oFCKeditor->Width = '590';
$oFCKeditor->Height = '400';
//$oFCKeditor->Config['SkinPath'] = 'include/html/editor/skins/office2003/' ;
if(!isset($_POST)){
//load template
$template_file = ''.UserFilesPath.'/'.$_SESSION['username'].'/modules/marketing/templates/01.html';
if(file_exists($template_file)){
$body = file_get_contents($template_file);
}
}else{
$body = $_POST['body'];
}
$oFCKeditor->Value = stripslashes($body) ;
echo $oFCKeditor->Create();
?>
|