Home  >  Article  >  Backend Development  >  How to import FCKeditor into PHP+SMARTY, fckeditorsmarty_PHP tutorial

How to import FCKeditor into PHP+SMARTY, fckeditorsmarty_PHP tutorial

WBOY
WBOYOriginal
2016-07-13 10:09:45781browse

How to import FCKeditor into PHP+SMARTY, fckeditorsmarty

The example in this article describes the implementation method of importing 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 variable of this input content, 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:

Copy code 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:

Copy code 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:
Copy code The code is as follows:


<{$content}>


The default Default contains all the functions of FCKeditor. Personally, I feel that some functions are not useful 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 copy the code

as follows: $oFCKeditor->ToolbarSet = 'Default'
to:
Copy the code The code is as follows:$oFCKeditor->ToolbarSet = 'www'
That's it. Finally, we put all the files in the FCKeditor directory Directories starting with an underscore "_" are deleted 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/943419.html

truehttp: //www.bkjia.com/PHPjc/943419.htmlTechArticleHow to import FCKeditor into PHP+SMARTY, fckeditorsmarty This article describes how to import FCKeditor into PHP+SMARTY. . Share it with everyone for your reference. The specific analysis is as follows:...
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn