Source for file jFormsControlHtmlEditor.class.php

Documentation is available at jFormsControlHtmlEditor.class.php

  1. <?php
  2. /**
  3. @package     jelix
  4. @subpackage  forms
  5. @author      Laurent Jouanneau
  6. @copyright   2006-2010 Laurent Jouanneau
  7. @link        http://www.jelix.org
  8. @licence     http://www.gnu.org/licenses/lgpl.html GNU Lesser General Public Licence, see LICENCE file
  9. */
  10.  
  11. /**
  12.  *
  13.  * @package     jelix
  14.  * @subpackage  forms
  15.  * @since 1.1
  16.  */
  17. class jFormsControlHtmlEditor extends jFormsControl {
  18.     public $type='htmleditor';
  19.     public $rows=5;
  20.     public $cols=40;
  21.     public $config='default';
  22.     public $skin='default';
  23.     function __construct($ref){
  24.         $this->ref = $ref;
  25.         $this->datatype = new jDatatypeHtml(true,true);
  26.     }
  27.  
  28.     /**
  29.      * @since 1.2
  30.      */
  31.     public function isHtmlContent({
  32.         return true;
  33.     }
  34.  
  35. }

Documentation generated on Mon, 26 Oct 2015 21:54:11 +0100 by phpDocumentor 1.4.3