public function FormBuilderPropertyBase::__construct in Form Builder 7
Construct a new instance of this property class.
Parameters
string $property: Name of the property to be manipulated by this object.
array $params: Additional parameters passed to hook_form_builder_properties().
Overrides FormBuilderPropertyInterface::__construct
1 call to FormBuilderPropertyBase::__construct()
- FormBuilderWebformProperty::__construct in modules/
webform/ form_builder_webform.classes.inc - Construct a new instance of this property class.
1 method overrides FormBuilderPropertyBase::__construct()
- FormBuilderWebformProperty::__construct in modules/
webform/ form_builder_webform.classes.inc - Construct a new instance of this property class.
File
- ./
form_builder.classes.inc, line 969
Class
Code
public function __construct($property, $params, $form_type_name) {
$this->property = $property;
$this->params = $params;
$this->formTypeName = $form_type_name;
}