public function EntityInlineEntityFormController::getSetting in Inline Entity Form 7
Returns a setting value.
Parameters
$name: The name of the setting value to return.
Return value
A setting value.
2 calls to EntityInlineEntityFormController::getSetting()
- EntityInlineEntityFormController::removeForm in includes/
entity.inline_entity_form.inc - Returns the remove form to be shown through the IEF widget.
- EntityInlineEntityFormController::removeFormSubmit in includes/
entity.inline_entity_form.inc - Handles the submission of a remove form. Decides what should happen to the entity after the removal confirmation.
File
- includes/
entity.inline_entity_form.inc, line 135 - Defines the base inline entity form controller.
Class
- EntityInlineEntityFormController
- @file Defines the base inline entity form controller.
Code
public function getSetting($name) {
return $this->settings[$name];
}