You are here

interface IntColumnHandlerInterface in Dynamic Entity Reference 8.2

The interface for IntColumnHandler.

Hierarchy

Expanded class hierarchy of IntColumnHandlerInterface

All classes that implement IntColumnHandlerInterface

1 file declares its use of IntColumnHandlerInterface
FieldStorageSubscriber.php in src/EventSubscriber/FieldStorageSubscriber.php

File

src/Storage/IntColumnHandlerInterface.php, line 8

Namespace

Drupal\dynamic_entity_reference\Storage
View source
interface IntColumnHandlerInterface {

  /**
   * Creates the _int columns and the triggers for them.
   *
   * @param string $table
   *   The non-prefix table to operate on.
   * @param array $columns
   *   The DER target_id columns.
   * @param array $index_columns
   *   Table columns that should be added to the index that is created for the
   *   new _int column.
   *
   * @return array
   *   The list of new target_id_int columns.
   */
  public function create($table, array $columns, array $index_columns = []);

}

Members

Namesort descending Modifiers Type Description Overrides
IntColumnHandlerInterface::create public function Creates the _int columns and the triggers for them. 2