You are here

ief_table_view_mode.api.php in Inline Entity Form Table View Mode 8

Same filename and directory in other branches
  1. 7 ief_table_view_mode.api.php

Hooks provided by the IEF Table View Mode.

File

ief_table_view_mode.api.php
View source
<?php

/**
 * @file
 * Hooks provided by the IEF Table View Mode.
 */

/**
 * Alter the fields already altered by ief table view mode.
 *
 * This hook is triggered if the view mode is activated.
 *
 * @param array $fields
 *  The array altered by ief table view mode.
 * @param array $original_fields
 *  The original $fields variable.
 * @param array $context
 *  The original $context variable.
 *
 * @see hook_inline_entity_form_table_fields_alter().
 */
function hook_ief_table_view_mode_fields_alter($fields, $original_fields, $context) {

  // ...
}

Functions

Namesort descending Description
hook_ief_table_view_mode_fields_alter Alter the fields already altered by ief table view mode.