Frontend\Core\Engine\FormFieldNode::__construct PHP Method

__construct() public method

public __construct ( string $form, string $field, integer $lineno, string $tag )
$form string Name of the template var holding the form this field belongs to.
$field string Name of the field to render.
$lineno integer Line number in the template source file.
$tag string
    public function __construct($form, $field, $lineno, $tag)
    {
        parent::__construct(array(), array(), $lineno, $tag);
        $this->form = $form;
        $this->field = $field;
    }