<?php
global $editorConfig;
$editorConfig=array();
//$cmsPath="/contentbuilder/";
$cmsPath=dirname(__FILE__);
$cmsPath=str_replace("\\","/",$cmsPath);
$cmsPath = str_replace($_SERVER["DOCUMENT_ROOT"], "", $cmsPath) ."/";
define("ROOTFOLDER", $_SERVER["DOCUMENT_ROOT"] . $cmsPath . $cbDirUploads);
define("SITEROOT", "http://" . $_SERVER["HTTP_HOST"] . $cmsPath . $cbDirUploads);
/* List of symbolic names for editors */
define ("HTML_PLAIN",0);
define ("BBCODE" ,1);
define ("TEXT_PLAIN",2);
define ("DHTML_MS" ,3);
define ("HTMLAREA" ,4);
$editorConfig[DHTML_MS]["edit_url"] = $pluginLocation."/editor_v2/editor.php";
$editorConfig[DHTML_MS]["edit_tpl"] = "add2dhtml.template";
$editorConfig[HTML_PLAIN]["edit_tpl"] = "add2html.template";
$editorConfig[TEXT_PLAIN]["edit_tpl"] = "add2.template";
$editorConfig[HTMLAREA]["edit_tpl"] = "add2_htmlarea.template";
$editorConfig[BBCODE]["edit_tpl"] = "add2phpbbedit.template";
?>