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

Public Member Functions

 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 ()

Detailed Description

Definition at line 26 of file class_ifile.php.


Member Function Documentation

print in html the readonly value of the widget

Definition at line 39 of file class_ifile.php.

Referenced by input().

    {

    }
IFile::input ( p_name = null,
p_value = null 
)

show the html input of the widget

Definition at line 29 of file class_ifile.php.

References $r, display(), name, readOnly, 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();
        $r='<INPUT class="inp" TYPE="file" name="'.$this->name.'" VALUE="'.$this->value.'">';
        return $r;

    }
static IFile::test_me ( ) [static]

Definition at line 43 of file class_ifile.php.

    {
    }

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