|
noalyss
Version-6.7.2
|
Public Member Functions | |
| __construct ($name='', $value='', $p_id="") | |
| display () | |
| print in html the readonly value of the widget | |
| input ($p_name=null, $p_value=null) | |
| show the html input of the widget | |
Static Public Member Functions | |
| static | test_me () |
Definition at line 26 of file class_itext.php.
| IText::__construct | ( | $ | name = '', |
| $ | value = '', |
||
| $ | p_id = "" |
||
| ) |
Reimplemented from HtmlInput.
Definition at line 28 of file class_itext.php.
References HtmlInput\$name, HtmlInput\$value, and style.
{
parent::__construct($name,$value,$p_id);
$this->style=' class="input_text" ';
}
| IText::display | ( | ) |
print in html the readonly value of the widget
Reimplemented in INum.
Definition at line 67 of file class_itext.php.
References HtmlInput\$extra, $r, css_size, extra, javascript, style, table, title, and value.
Referenced by input().
{
$t= ((isset($this->title)))?'title="'.$this->title.'" ':' ';
$extra=(isset($this->extra))?$this->extra:"";
$readonly=" readonly ";
$this->value=str_replace('"','',$this->value);
$this->style=' class="input_text_ro" ';
if ( ! isset ($this->css_size))
{
$r='<INPUT '.$this->style.' TYPE="TEXT" id="'.
$this->id.'"'.$t.
'NAME="'.$this->name.'" VALUE="'.$this->value.'" '.
'SIZE="'.$this->size.'" '.$this->javascript." $readonly $this->extra >";
} else {
$r='<INPUT '.$this->style.' TYPE="TEXT" id="'.
$this->id.'"'.$t.
'NAME="'.$this->name.'" VALUE="'.$this->value.'" '.
' style="width:'.$this->css_size.'" '.$this->javascript." $readonly $this->extra >";
}
/* add tag for column if inside a table */
if ( $this->table == 1 ) $r='<td>'.$r.'</td>';
return $r;
}
| IText::input | ( | $ | p_name = null, |
| $ | p_value = null |
||
| ) |
show the html input of the widget
Reimplemented in INum.
Definition at line 34 of file class_itext.php.
References HtmlInput\$extra, $r, css_size, display(), extra, javascript, name, readOnly, table, title, and value.
{
$this->name=($p_name==null)?$this->name:$p_name;
$this->value=($p_value==null)?$this->value:$p_value;
if ( $this->readOnly==true) return $this->display();
$this->id=($this->id=="")?$this->name:$this->id;
$t= ((isset($this->title)))?'title="'.$this->title.'" ':' ';
$extra=(isset($this->extra))?$this->extra:"";
$this->value=str_replace('"','',$this->value);
if ( ! isset ($this->css_size))
{
$r='<INPUT '.$this->style.' TYPE="TEXT" id="'.
$this->id.'"'.$t.
'NAME="'.$this->name.'" VALUE="'.$this->value.'" '.
'SIZE="'.$this->size.'" '.$this->javascript." $this->extra >";
/* add tag for column if inside a table */
} else {
$r='<INPUT '.$this->style.' TYPE="TEXT" id="'.
$this->id.'"'.$t.
'NAME="'.$this->name.'" VALUE="'.$this->value.'" '.
' style="width:'.$this->css_size.';" '.$this->javascript." $this->extra >";
}
if ( $this->table == 1 ) $r='<td>'.$r.'</td>';
return $r;
}
| static IText::test_me | ( | ) | [static] |
Definition at line 95 of file class_itext.php.
{
}