You are here

public function FlexiformElement::makeElementNamespace in Flexiform 7

Make namespace for the element.

3 calls to FlexiformElement::makeElementNamespace()
FlexiformElement::__construct in includes/flexiform.element.inc
Construct the class.
FlexiformRepeatableElement::makeElementNamespace in includes/flexiform.element_repeatable.inc
Make a namespace for the element.
flexiform_embed_entity_elements in includes/flexiform.flexiform.inc
Add elements for an entity to the form based on settings in the $elements array.
1 method overrides FlexiformElement::makeElementNamespace()
FlexiformRepeatableElement::makeElementNamespace in includes/flexiform.element_repeatable.inc
Make a namespace for the element.

File

includes/flexiform.element.inc, line 357
Controller class for flexiform elements.

Class

FlexiformElement
Base class for all FlexiformElements

Code

public function makeElementNamespace() {
  return $this->entity_namespace . ':' . $this->element_name;
}