You are here

protected function FlexiformElementField::fieldInvokeDefault in Flexiform 7

Invoke default field hooks on this element.

See also

_field_invoke_default()

1 call to FlexiformElementField::fieldInvokeDefault()
FlexiformElementField::formValidate in includes/element/field.element.inc
Validate this element.

File

includes/element/field.element.inc, line 500
Contains FlexiformElementField class.

Class

FlexiformElementField
Class for Field API elements.

Code

protected function fieldInvokeDefault($op, $entity, &$a = NULL, &$b = NULL, $options = array()) {
  $options['default'] = TRUE;
  return $this
    ->fieldInvoke($op, $entity, $a, $b, $options);
}