MyXoops Forum

Forum - myXOOPS German Support

3 - 2 = ?  
Geben Sie das Ergebnis der Berechnung ein
Sie haben max. 10 Versuche.
 
* = Erforderlich

Re: Installation Frameworks 1.22 Xoops 2.0

Betreff: Re: Installation Frameworks 1.22 Xoops 2.0
von julchen am 11.12.2007 21:25:15

Hi - okay - also lass ich die Finger davon.
Ich habe aber den Editor noch nicht wieder installiert, da es damit diesen Fatal Error gab - muss ich das jetztschon wieder draufpacken ? oder kann man das erstmal mit der PHP regeln ?

das ist das was ich finden konnte:

Skaliertes Bild


also das hier :

<?php
/**
* Editor framework for XOOPS
*
* @copyright The XOOPS projecthttp://www.xoops.org/
* @licensehttp://www.fsf.org/copyleft/gpl.html GNU public license
* @author Taiwen Jiang (phppp or D.J.) <php_pp@hotmail.com>
* @since 1.00
* @version $Id$
* @package xoopseditor
*/
class XoopsFormEditor extends XoopsFormTextArea
{
var $editor;

/**
* Constructor
*
* @param string $caption Caption
* @param string $name "name" attribute
* @param string $value Initial text
* @param array $configs configures
* @param bool $noHtml use non-WYSIWYG eitor onfailure
* @param string $OnFailure editor to be used if current one failed
*/
function XoopsFormEditor($caption, $name, $editor_configs = null, $nohtml = false, $OnFailure = "")
{
$this->XoopsFormTextArea($caption, $editor_configs["name"]);
require_once XOOPS_ROOT_PATH."/class/xoopseditor/xoopseditor.php";
$editor_handler = XoopsEditorHandler::getInstance();
$this->editor =& $editor_handler->get($name, $editor_configs, $nohtml, $OnFailure);
}

function render()
{
return $this->editor->render();
}
}
?>

Aktuell aus dem Forum

Forum Thema Antworten Views Letzter Beitrag
Modulentwicklung New Xoops Xcreate Module 0 5337 26.11.2025 15:22
efkan Gehe zum letzten Beitrag
Modulentwicklung XOOPS Custom Field Module 1 1826 24.11.2025 11:21
Goffy Gehe zum letzten Beitrag