You are here

public static function ListElement::create in Drupal 10

Same name and namespace in other branches
  1. 8 core/modules/config_translation/src/FormElement/ListElement.php \Drupal\config_translation\FormElement\ListElement::create()
  2. 9 core/modules/config_translation/src/FormElement/ListElement.php \Drupal\config_translation\FormElement\ListElement::create()

Creates a form element instance from a schema definition.

Parameters

\Drupal\Core\TypedData\TypedDataInterface $schema: The configuration schema.

Return value

static

Overrides ElementInterface::create

File

core/modules/config_translation/src/FormElement/ListElement.php, line 41

Class

ListElement
Defines the list element for the configuration translation interface.

Namespace

Drupal\config_translation\FormElement

Code

public static function create(TypedDataInterface $schema) {
  return new static($schema);
}