本文實例講述了Joomla調用系統自帶編輯器的方法。分享給大家供大家參考,具體如下:
調用Joomla系統帶的編輯器:
路徑: /libraries/joomla/html/editor.php
類:JEditor
函數: 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()])
參數說明:
string $name 控件的名稱, (會出現在控件的name裡)
string $html 文本區域的內容
string $width 該文本的面積的寬度
string $height 該文本的面積的高度
int $col 對textarea的列數
int $row 對textarea的行數
boolean $buttons 為true 時編輯器按鈕會顯示出來
string $id 控件的id值,如果不給id值,會顯示控件的名稱 (會出現在控件的id裡)
string $asset
object $author
array $params 關聯數組編輯器的參數。
例子:
在view.html.php中
$editor =& JFactory::getEditor();
在模板文件default.php中
復制代碼 代碼如下:echo $editor->display('控件name值','內容','寬','高','列數','行數',true, '控件id值');
更多關於joomla相關內容感興趣的讀者可查看本站專題:《Symfony框架入門教程》、《Yii框架入門及常用技巧總結》、《php優秀開發框架總結》、《smarty模板入門基礎教程》、《ThinkPHP常用方法總結》、《php面向對象程序設計入門教程》、《php字符串(string)用法總結》、《php+mysql數據庫操作入門教程》及《php常見數據庫操作技巧匯總》
希望本文所述對大家基於joomla程序設計有所幫助。