Step.php
Go to the documentation of this file.
1<?php
11
17class Step extends Fieldset
18{
27 public function __toString()
28 {
29 $renderedElements = '';
30 foreach ($this->elementsAndHtml as $element) {
31 $renderedElements .= $element;
32 }
33
34 return $renderedElements;
35 }
36}
37
38/* vim:set ft=php sw=4 sts=4 fdm=marker et : */
The fieldset class holds HTML-fieldset specific attributes and methods.
Definition Fieldset.php:51
Steps break up forms into separate consecutive parts.
Definition Step.php:18
__toString()
renders step container to HTML
Definition Step.php:27
Classes for HTML input-elements.
Definition Address.php:9