Private Method Details |
start |
private void start( &$form )
|
|
Use this to insert the form caption manually
$form->renderStart();
and/or to override the method.
No additional comments.
|
Parameter |
|
|
&$form |
|
|
No additional comments. |
|
Returns |
void |
|
end |
private void end( &$form )
|
|
Use this to insert the form ending manually
and/or to override the method.
No additional comments.
|
Parameter |
|
|
&$form |
|
|
No additional comments. |
|
Returns |
void |
|
startControl |
private void startControl( &$form, &$control )
|
|
Use this to insert the control prefix (e.g. label) manually
and/or to override the method.
$form->renderStartControl($form->controls["name"]);
No additional comments.
|
Parameter |
|
|
&$form |
|
|
No additional comments. |
|
&$control |
|
|
No additional comments. |
|
Returns |
void |
|
endControl |
private void endControl( &$form, &$control )
|
|
Use this to insert the control ending manually
and/or to override the method.
$form->renderEndControl($form->controls["name"]);
No additional comments.
|
Parameter |
|
|
&$form |
|
|
No additional comments. |
|
&$control |
|
|
No additional comments. |
|
Returns |
void |
|
startNoLabel |
private void startNoLabel( &$form, &$control )
|
|
Use this to insert the 'labeless' starting manually
and/or to override the method.
No additional comments.
|
Parameter |
|
|
&$form |
|
|
No additional comments. |
|
&$control |
|
|
No additional comments. |
|
Returns |
void |
|
endNoLabel |
private void endNoLabel( &$form, &$control )
|
|
Use this to insert the 'labeless' ending manually
and/or to override the method.
No additional comments.
|
Parameter |
|
|
&$form |
|
|
No additional comments. |
|
&$control |
|
|
No additional comments. |
|
Returns |
void |
|