noalyss  Version-6.7.2
Public Member Functions | Static Public Member Functions
IHidden Class Reference
Inheritance diagram for IHidden:
HtmlInput

Public Member Functions

 input ($p_name=null, $p_value=null)
 show the html input of the widget

Static Public Member Functions

static test_me ()

Detailed Description

Definition at line 26 of file class_ihidden.php.


Member Function Documentation

IHidden::input ( p_name = null,
p_value = null 
)

show the html input of the widget

Definition at line 29 of file class_ihidden.php.

References $r, name, and value.

    {
        $this->name=($p_name==null)?$this->name:$p_name;
        $this->value=($p_value==null)?$this->value:$p_value;
                $this->id=($this->id=="")?$this->name:$this->id;

        $r='<INPUT TYPE="HIDDEN" id="'.$this->id.'" name="'.$this->name.'" value="'.$this->value.'">';
        return $r;

    }
static IHidden::test_me ( ) [static]

Definition at line 39 of file class_ihidden.php.

    {
    }

The documentation for this class was generated from the following file:
 All Data Structures Namespaces Files Functions Variables Enumerations