CODE STYLE Formating gulliver/system/class.htmlArea.php

Change format files in gulliver/system/class.htmlArea.php
This commit is contained in:
norahmollo
2012-10-17 19:46:50 +00:00
parent 5ae1df4427
commit 02e5359ff8

View File

@@ -1,44 +1,48 @@
<?php <?php
/**
* class.htmlArea.php /**
* @package gulliver.system * class.htmlArea.php
* *
* ProcessMaker Open Source Edition * @package gulliver.system
* Copyright (C) 2004 - 2011 Colosa Inc. *
* * ProcessMaker Open Source Edition
* This program is free software: you can redistribute it and/or modify * Copyright (C) 2004 - 2011 Colosa Inc.
* it under the terms of the GNU Affero General Public License as *
* published by the Free Software Foundation, either version 3 of the * This program is free software: you can redistribute it and/or modify
* License, or (at your option) any later version. * it under the terms of the GNU Affero General Public License as
* * published by the Free Software Foundation, either version 3 of the
* This program is distributed in the hope that it will be useful, * License, or (at your option) any later version.
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * This program is distributed in the hope that it will be useful,
* GNU Affero General Public License for more details. * but WITHOUT ANY WARRANTY; without even the implied warranty of
* * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* You should have received a copy of the GNU Affero General Public License * GNU Affero General Public License for more details.
* along with this program. If not, see <http://www.gnu.org/licenses/>. *
* * You should have received a copy of the GNU Affero General Public License
* For more information, contact Colosa Inc, 2566 Le Jeune Rd., * along with this program. If not, see <http://www.gnu.org/licenses/>.
* Coral Gables, FL, 33134, USA, or email info@colosa.com. *
* * For more information, contact Colosa Inc, 2566 Le Jeune Rd.,
*/ * Coral Gables, FL, 33134, USA, or email info@colosa.com.
*
/** */
* @package gulliver.system
**/ /**
*
class XmlForm_Field_HTML extends XmlForm_Field_Textarea * @package gulliver.system
{ *
/* //'default','office2003','silver' */
var $skin = 'default';
//'Default','Basic' class XmlForm_Field_HTML extends XmlForm_Field_Textarea
var $toolbarSet = 'Default'; {
var $width = '90%'; /* //'default','office2003','silver'
var $height = '200' ; var $skin = 'default';
var $cols = 40; //'Default','Basic'
var $rows = 6; var $toolbarSet = 'Default';
function render( $value , $owner=NULL ) { var $width = '90%';
var $height = '200' ;
var $cols = 40;
var $rows = 6;
function render( $value , $owner=NULL ) {
if ($this->mode==='edit') { if ($this->mode==='edit') {
if ($this->readOnly) if ($this->readOnly)
$html='<textarea id="form['.$this->name.']" name="form['.$this->name.']" cols="'.$this->cols.'" rows="'.$this->rows.'" style="'.$this->style.'" wrap="'.htmlentities($this->wrap,ENT_QUOTES,'UTF-8').'" class="FormTextArea" readOnly>'.$this->htmlentities( $value ,ENT_COMPAT,'utf-8').'</textarea>'; $html='<textarea id="form['.$this->name.']" name="form['.$this->name.']" cols="'.$this->cols.'" rows="'.$this->rows.'" style="'.$this->style.'" wrap="'.htmlentities($this->wrap,ENT_QUOTES,'UTF-8').'" class="FormTextArea" readOnly>'.$this->htmlentities( $value ,ENT_COMPAT,'utf-8').'</textarea>';
@@ -50,18 +54,20 @@ class XmlForm_Field_HTML extends XmlForm_Field_Textarea
$html='<textarea id="form['.$this->name.']" name="form['.$this->name.']" cols="'.$this->cols.'" rows="'.$this->rows.'" style="'.$this->style.'" wrap="'.htmlentities($this->wrap,ENT_QUOTES,'UTF-8').'" class="FormTextArea" >'.$this->htmlentities( $value ,ENT_COMPAT,'utf-8').'</textarea>'; $html='<textarea id="form['.$this->name.']" name="form['.$this->name.']" cols="'.$this->cols.'" rows="'.$this->rows.'" style="'.$this->style.'" wrap="'.htmlentities($this->wrap,ENT_QUOTES,'UTF-8').'" class="FormTextArea" >'.$this->htmlentities( $value ,ENT_COMPAT,'utf-8').'</textarea>';
} }
return $html; return $html;
}*/ }*/
/** /**
* attachEvents function is putting its events * attachEvents function is putting its events
* *
* @access public * @access public
* @param string $element * @param string $element
* @return string * @return string
* *
*/ */
function attachEvents($element) { function attachEvents ($element)
$html='var _editor_url = "";editor_generate("form['.$this->name.']");'; {
return $html; $html = 'var _editor_url = "";editor_generate("form[' . $this->name . ']");';
} return $html;
} }
}