| $langSysCAContent : |
php
include("../../classes/resource/fckeditor/fckeditor.php") ;
$oFCKeditor = new FCKeditor('content') ;
$oFCKeditor->BasePath = '../classes/resource/fckeditor/' ;
$oFCKeditor->ToolbarSet = 'Simple';
$oFCKeditor->Width = 510 ;
$oFCKeditor->Height = 300 ;
$oFCKeditor->Value = $this->_tpl_vars['act_row']['ca_content'];
$oFCKeditor->Create() ;
/php
|