| $langSysSecContent |
php
include("../classes/resource/fckeditor/fckeditor.php") ;
$oFCKeditor = new FCKeditor('content') ;
$oFCKeditor->BasePath = '../classes/resource/fckeditor/' ;
$oFCKeditor->ToolbarSet = 'Simple';
$oFCKeditor->Width = 385 ;
$oFCKeditor->Height = 220 ;
$oFCKeditor->Value = $this->_tpl_vars['section_array']['section_content'];
$oFCKeditor->Create() ;
/php
|