The example in this article describes how to import FCKeditor into PHP SMARTY. Share it with everyone for your reference. The specific analysis is as follows:
When extracting Fckeditor, use the following method. PHP uses $_POST['p_info'] to get the value of FCKeditor.
Supplement:
1. The path of basepath here must be the same as the path of include above. Otherwise, the file will not be found
In addition, for the input content variable, if you want to save it in the database tutorial, its variable name will be the name of the object you created. For example, the above is "p_info".
2. There are examples of PHP tutorial calls in FCKeditor/_samples/, such as simples01.php and sampleposteddata.php. The latter file is a PHP program that outputs variable names. Through this program, you can get the text input box The variable name of the content.
3. Configuration FCKeditor's toolbar function buttons can be easily customized. You can customize a function button corresponding to a unique name in FCKeditor's configuration file FCKeditor/fck_config.js according to your needs.
Three toolbar styles have been set by default in fck_config.js: Default (including all functions), Accessibility and Basic.
Let us first take a look at the customized format of the toolbar style:
The code is as follows:
config.ToolbarSets["ToolBarSetName"] = [ // Toolbar name
['Item 1','Item 2','-','Item 3','Item n'], // First line of Toolbar
['Item 4','-','Item 5','Item 6','Item n'] // Second line of Toolbar
];
The function of '-' here is to create a dividing bar.
The example code is as follows:
The code is as follows:
$BasePath = "../include/FCKeditor/" ;
include( $BasePath . "fckeditor.php" );
$fck = new FCKeditor ( 'p_info' ) ;//Create object
$fck -> BasePath = $BasePath ;//The location of Fckeditor
$fck -> ToolbarSet = 'News' ;//News is the name of the customized Fckeditor toolbar
$fck -> Width = '700' ;//Length
$fck -> Height = '350' ;//Height
$fck -> Config [ 'AutoDetectLanguage' ] = false ;//Language automatic detection
$fck -> Config [ 'DefaultLanguage' ]= 'zh-cn' ;//Language
$content = $fck -> CreateHtml ();//Create Fckeditor script file
$smarty -> assign ( 'content' , $content );
$smarty -> display ( "fck.tpl" );
?>
Where it needs to be displayed in the smarty file:
The code is as follows:
<{$content}>
|
The default Default contains all the functions of FCKeditor. Personally, I feel that some functions are not used, and full loading will affect the display speed, so I simplified it and only loaded some commonly used functions:
Open the FCKeditor/fck_config.js file:
To use, just put
The code is as follows:
$oFCKeditor->ToolbarSet = 'Default'
Change to:
The code is as follows:
$oFCKeditor->ToolbarSet = 'www'
That's it. Finally, we delete all directories starting with underscore "_" in the FCKeditor directory to save space, such as _test._samples.
I hope this article will be helpful to everyone’s PHP programming design.
http://www.bkjia.com/PHPjc/971933.htmlwww.bkjia.comtruehttp: //www.bkjia.com/PHPjc/971933.htmlTechArticleHow to import FCKeditor into PHP SMARTY This article mainly introduces how to import FCKeditor into PHP SMARTY, involving The skills of integrating FCKeditor and SMARTY are very practical and need...