ListElement::create

public static ListElement::create(TypedDataInterface $schema)

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);
}
doc_Drupal
2016-10-29 09:23:31
Comments
Leave a Comment

Please login to continue.