This article describes the method of Joomla calling the system's own editor. Share it for your reference, as follows:
Call the editor with Joomla system:
Path: /libraries/joomla/html/
Class: JEditor
Function: void display( string $name, string $html, string $width, string $height, int $col, int $row, [boolean $buttons = true], [string $id = null], [string $asset = null], [object $author = null], [array $params = array()])
Parameter description:
string $name The name of the control, (will appear in the control's name)
string $html content of text area
string $width width of the area of the text
string $height height of the area of the text
int $col number of columns for textarea
int $row Number of rows to textarea
boolean$buttons is true editor button will be displayed
string $id the id value of the control. If the id value is not given, the name of the control will be displayed (it will appear in the id of the control)
string $asset
object $author
array $params Associated array editor parameters.
example:
In
$editor =& JFactory::getEditor();
In the template file
For more information about Joomla, readers who are interested in view the topic of this site:Symfony framework introduction tutorial》、《Yii framework introduction and common techniques summary》、《Summary of excellent development framework for php》、《Basic tutorial on getting started with smarty templates》、《Summary of common methods of ThinkPHP》、《PHP object-oriented programming tutorial》、《Summary of usage of php strings》、《PHP+mysql database operation tutorial"and"Summary of common database operation techniques for php》
I hope this article will be helpful to everyone's programming based on Joomla.