Fork me on GitHub

Rapport de message :*
 

Re: TinyMCE v4 pour XOOPS, le super éditeur !

Titre du sujet : Re: TinyMCE v4 pour XOOPS, le super éditeur !
par mistertiti sur 03/03/2014 15:15:55

ligne vide

ce qui est étonnant d'ailleurs car sur le site en WAMP c'est bien une ligne commentaire correspondant à
* @author Taiwen Jiang <phppp@users.sourceforge.net>

par contre lorsque j'edite le fichier avec notepad++ tout est collé et désordonné. et donc la ligne 21 correspond à la fin avec une ligne vide.
<?php  /* You may not change or alter any portion of this comment or credits of supporting developers from this source code or any supporting source code which is considered copyrighted (c) material of the original comment or credit authors.   This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.*/  /** *  TinyMCE adapter for XOOPS * * @copyright       The XOOPS Project http://sourceforge.net/projects/xoops/ * @license         http://www.fsf.org/copyleft/gpl.html& ... public license * @package         class * @subpackage      editor * @since           2.3.0 * @author          Taiwen Jiang <phppp@users.sourceforge.net> * @version         $Id: formtinymce.php 8066 2011-11-06 05:09:33Z beckmi $ */  xoops_load('XoopsEditor');  class XoopsFormTinymce4 extends XoopsEditor{    var $language;    var $width "100%";    var $height "500px";      var $editor;    /**     * Constructor     *     * @param    array   $configs  Editor Options     */      function __construct($configs)    {        $current_path __FILE__;        if ( DIRECTORY_SEPARATOR != "/" ) {            $current_path str_replacestrpos$current_path"\") ? "\" DIRECTORY_SEPARATOR"/"$current_path);        }          $this->rootPath "/class/xoopseditor/tinymce4";        parent::__construct($configs);        $this->configs["elements"] = $this->getName();        $this->configs["language"] = $this->getLanguage();        $this->configs["rootpath"] = $this->rootPath;        $this->configs["area_width"] = isset($this->configs["width"]) ? $this->configs["width"] : $this->width;        $this->configs["area_height"] = isset($this->configs["height"]) ? $this->configs["height"] : $this->height;        $this->configs["fonts"] = $this->getFonts();          require_once dirname(__FILE__) . "/tinymce.php";        $this->editor = new TinyMCE($this->configs);    }      /**     * Renders the Javascript function needed for client-side for validation     *     * I'VE USED THIS EXAMPLE TO WRITE VALIDATION CODE     * http://tinymce.moxiecode.com/punbb/vi ... ;    *     * @return    string     */      function renderValidationJS()    {        if ($this->isRequired() && $eltname $this->getName()) {            //$eltname = $this->getName();            $eltcaption = $this->getCaption();            $eltmsg = empty($eltcaption) ? sprintf( _FORM_ENTER, $eltname ) : sprintf( _FORM_ENTER, $eltcaption );            $eltmsg = str_replace('"', '"', stripslashes( $eltmsg ) );            $ret = "n";            $ret.= "if ( tinyMCE.get('{$eltname}').getContent() == "" || tinyMCE.get('{$eltname}').getContent() == null) ";            $ret.= "{ window.alert("{$eltmsg}"); tinyMCE.get('{$eltname}').focus(); return false; }";            return $ret;        }        return '';    }      /**     * get language     *     * @return    string     */      function getLanguage()    {        if ($this->language) {            return $this->language;        }        if (defined("_XOOPS_EDITOR_TINYMCE4_LANGUAGE")) {            $this->language = strtolower(constant("_XOOPS_EDITOR_TINYMCE4_LANGUAGE"));        } else {            $this->language = str_replace('_', '-', strtolower(_LANGCODE));            if(strtolower(_CHARSET) == "utf-8") {                $this->language .= "_utf8";            }        }        return $this->language;    }      function getFonts()    {        if (empty($this->config["fonts"]) && defined("_XOOPS_EDITOR_TINYMCE4_FONTS")) {             $this->config["fonts"] = constant("_XOOPS_EDITOR_TINYMCE4_FONTS");        }        return @$this->config["fonts"];    }      /**     * prepare HTML for output     *     * @return    sting HTML     */      function render()    {        $ret = $this->editor->render();        $ret .= parent::render();        return $ret;    }      /**     * Check if compatible     *     * @return     */      function isActive()    {        return is_readable(XOOPS_ROOT_PATH . $this->rootPath . "/tinymce.php");    }}  ?>

Propulsé avec XOOPS | Graphisme adapté par Tatane, Grosdunord, Montuy337513

55 Personne(s) en ligne (45 Personne(s) connectée(s) sur Forum) | Utilisateur(s): 0 | Invité(s): 55 | Plus ...