public function FlexiformFormEntityBase::getParamSettings in Flexiform 7
Get a Parameter's entity settings from the Entity Manager.
1 call to FlexiformFormEntityBase::getParamSettings()
- FlexifromFormEntityNewReply::getEntity in includes/
form_entity/ reply.form_entity.inc - Get the entity for the form.
File
- includes/
form_entity/ base.form_entity.inc, line 71 - Contains class for a basic entity getter.
Class
- FlexiformFormEntityBase
- Default Form Entity Class for Managing a form Entity.
Code
public function getParamSettings($param_name) {
return $this->manager
->getEntitySettings($this->settings['parameters'][$param_name]);
}