|
|
| |
File: c:/www/apache/doc2//form/form_flow_layout_node.inc
PHPLib Form Rewrite 11.02.2001 -
form_flow_layout_node
form_flow_layout_node
Node of the layout tree in the form flow layout class.
|
private class form_flow_layout_node
Node of the layout tree in the form flow layout class.
| Authors | Ulf Wendel <ulf.wendel@phpdoc.de> |
| Version | $Id: form_flow_layout_node.inc,v 1.1 2001/01/14 20:33:52 uw Exp $ |
|
| |
|
|
|
Public Field Summary |
| string |
$parentParent node ID. |
| array |
$childrenList of children. |
| string |
$nextID of the next node. |
| string |
$typeNode data: element type - element, group. |
| string |
$valueNode data: element value - element name or group label. |
|
Public Method Details |
form_flow_layout_node |
|
public void form_flow_layout_node( string $type, string $value, [ mixed $parent ] )
|
| |
Creates a new node
|
| Parameter |
|
| string |
$type |
|
|
type: element or group. |
|
|
| string |
$value |
|
|
value: element name or group label |
|
|
| mixed |
$parent |
= >>NULL<< |
|
node ID |
|
| Returns |
void |
|
|
Public Field Details |
$parent |
|
public string $parent
>>NULL<<
Parent node ID.
|
|
$children |
|
public array $children
>>array()<<
List of children.
|
|
$next |
|
public string $next
>>NULL<<
ID of the next node.
The next node entry helps us to traverse the structure.
|
|
$type |
|
public string $type
>>""<<
Node data: element type - element, group.
|
|
$value |
|
public string $value
>>""<<
Node data: element value - element name or group label.
|
|
|
|
|
|
| PHPDoc 1.0beta |