You are here

public function FlexiformFormEntityBase::getParamType in Flexiform 7

Get the entity type of a parameter.

4 calls to FlexiformFormEntityBase::getParamType()
FlexiformFormEntityEntityReference::saveEntity in includes/form_entity/entityreference.form_entity.inc
Save the entity upon submission of the form.
FlexiformFormEntityFieldCollection::getEntity in includes/form_entity/field_collection.form_entity.inc
Get the entity for the form.
FlexifromFormEntityNewReply::getEntity in includes/form_entity/reply.form_entity.inc
Get the entity for the form.
FlexifromFormEntityNewReply::saveEntity in includes/form_entity/reply.form_entity.inc
Save the entity upon submission of the form.

File

includes/form_entity/base.form_entity.inc, line 78
Contains class for a basic entity getter.

Class

FlexiformFormEntityBase
Default Form Entity Class for Managing a form Entity.

Code

public function getParamType($param_name) {
  return $this->manager
    ->getEntityType($this->settings['parameters'][$param_name]);
}