forked from extern/egroupware
* reworked api call for fckeditor
This commit is contained in:
parent
e186062d63
commit
6173df6f48
@ -583,14 +583,14 @@ class html
|
|||||||
* @param string $base_href=''
|
* @param string $base_href=''
|
||||||
* @return string the necessary html for the textarea
|
* @return string the necessary html for the textarea
|
||||||
*/
|
*/
|
||||||
function fckEditorQuick($_name, $_mode, $_content='', $_style='', $base_href='') {
|
function fckEditorQuick($_name, $_mode, $_content='', $_height='400px', $_width='100%') {
|
||||||
include_once(EGW_INCLUDE_ROOT."/phpgwapi/js/fckeditor/fckeditor.php");
|
include_once(EGW_INCLUDE_ROOT."/phpgwapi/js/fckeditor/fckeditor.php");
|
||||||
|
|
||||||
$oFCKeditor = new FCKeditor($_name) ;
|
$oFCKeditor = new FCKeditor($_name) ;
|
||||||
$oFCKeditor->BasePath = $GLOBALS['egw_info']['server']['webserver_url'].'/phpgwapi/js/fckeditor/' ;
|
$oFCKeditor->BasePath = $GLOBALS['egw_info']['server']['webserver_url'].'/phpgwapi/js/fckeditor/' ;
|
||||||
$oFCKeditor->Value = $_content;
|
$oFCKeditor->Value = $_content;
|
||||||
$oFCKeditor->Width = '100%' ;
|
$oFCKeditor->Width = $_width ;
|
||||||
$oFCKeditor->Height = '400px' ;
|
$oFCKeditor->Height = $_height ;
|
||||||
switch($_mode) {
|
switch($_mode) {
|
||||||
case 'ascii':
|
case 'ascii':
|
||||||
return "<textarea name=\"$_name\" style=\"width:100%; height:400px; border:0px;\">$_content</textarea>";
|
return "<textarea name=\"$_name\" style=\"width:100%; height:400px; border:0px;\">$_content</textarea>";
|
||||||
|
Loading…
Reference in New Issue
Block a user