Frontend\Core\Engine\FormFieldNode::__construct PHP 메소드

__construct() 공개 메소드

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;
    }