#ckeditor
if(!file_exists(XOOPS_ROOT_PATH."/modules/tadtools/fck.php")){
redirect_header("index.php",3, _MA_NEED_TADTOOLS);
}
include_once XOOPS_ROOT_PATH."/modules/tadtools/fck.php";
$fck=new CKEditor("tad_form","content",$content);
$fck->setWidth("100%");
$fck->setHeight(150);
$editor=$fck->render();
echo "<div class='col-sm-6'>"; echo "<div class=' form-group elem-content'>"; echo " <label for='content'>"._MA_TADFORM_CONTENT."</label> "; echo $editor; echo "</div>";