public function FlexiformFormEntityBase::getParam in Flexiform 7
Get a Parameter From the Entity Manager.
Return value
An entity object.
11 calls to FlexiformFormEntityBase::getParam()
- FlexiformFormEntityCommerceOrderUser::getEntity in includes/
form_entity/ commerce_order_user.form_entity.inc - Get the entity for the form.
- FlexiformFormEntityEntityReference::getEntity in includes/
form_entity/ entityreference.form_entity.inc - Get the entity for the form.
- 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.
- FlexiformFormEntityNewCommerceLineItem::getEntity in includes/
form_entity/ commerce_line_item.form_entity.inc - Get the entity for the form.
File
- includes/
form_entity/ base.form_entity.inc, line 64 - Contains class for a basic entity getter.
Class
- FlexiformFormEntityBase
- Default Form Entity Class for Managing a form Entity.
Code
public function getParam($param_name) {
return $this->manager
->getEntity($this->settings['parameters'][$param_name]);
}