You are here

public function reference_table_formatter_base_type::__construct in Reference Table Formatter 7

Standard plugin constructor.

Parameters

$field: A field definition for this plugin.

$instance: A field instance.

$settings: A settings array from the field API.

File

./reference_table_formatter_base_type.inc, line 26
A base class for the "reference type" plugin.

Class

reference_table_formatter_base_type
Class reference_table_formatter_base_type

Code

public function __construct($field, $instance, $settings) {
  $this->field = $field;
  $this->instance = $instance;
  $this->settings = $settings;
}