You are here

function hook_ief_table_view_mode_fields_alter in Inline Entity Form Table View Mode 8

Same name and namespace in other branches
  1. 7 ief_table_view_mode.api.php \hook_ief_table_view_mode_fields_alter()

Alter the fields already altered by ief table view mode.

This hook is triggered if the view mode is activated.

Parameters

array $fields: The array altered by ief table view mode.

array $original_fields: The original $fields variable.

array $context: The original $context variable.

See also

hook_inline_entity_form_table_fields_alter().

1 invocation of hook_ief_table_view_mode_fields_alter()
ief_table_view_mode_inline_entity_form_table_fields_alter in ./ief_table_view_mode.module
Implements hook_inline_entity_form_table_fields_alter().

File

./ief_table_view_mode.api.php, line 22
Hooks provided by the IEF Table View Mode.

Code

function hook_ief_table_view_mode_fields_alter($fields, $original_fields, $context) {

  // ...
}