You are here

IngredientFieldItemList.php in Recipe 8.2

File

modules/ingredient/src/Plugin/Field/FieldType/IngredientFieldItemList.php
View source
<?php

namespace Drupal\ingredient\Plugin\Field\FieldType;

use Drupal\Core\Field\EntityReferenceFieldItemList;
use Drupal\Core\Form\FormStateInterface;

/**
 * Represents a configurable entity ingredient field.
 */
class IngredientFieldItemList extends EntityReferenceFieldItemList {

  /**
   * {@inheritdoc}
   */
  public function defaultValuesForm(array &$form, FormStateInterface $form_state) {
  }

}

Classes

Namesort descending Description
IngredientFieldItemList Represents a configurable entity ingredient field.