public function sep__protocol_formatter::settingsSummary

3.x sep__protocol_formatter.inc public sep__protocol_formatter::settingsSummary($view_mode)

Provides a summary of the formatter settings.

This function corresponds to the hook_field_formatter_settings_summary() function of the Drupal Field API.

On the 'Manage Display' page of the content type administration page, fields are allowed to provide a settings form. This settings form can be used to allow the site admin to define how the field should be formatted. The settings are then available for the formatter() function of this class. This function provides a text-based description of the settings for the site developer to see. It appears on the manage display page inline with the field. A field must always return a value in this function if the settings form gear button is to appear.

See the hook_field_formatter_settings_summary() function for more information.

Parameters

$field:

$instance:

$view_mode:

Return value

string A string that provides a very brief summary of the field settings to the user.

Overrides TripalFieldFormatter::settingsSummary

File

tripal_chado/includes/TripalFields/sep__protocol/sep__protocol_formatter.inc, line 129

Class

sep__protocol_formatter
@class Purpose:

Code

public function settingsSummary($view_mode) {
  return '';
}