Skip to content
Snippets Groups Projects
Commit 958056da authored by catch's avatar catch
Browse files

Issue #2115291 by plopesc, agentrickard: Field types must use as provider its...

Issue #2115291 by plopesc, agentrickard: Field types must use as provider its own module instead of Core when are defined in hook_field_info_alter().
parent 2f4b95ba
Branches
Tags
2 merge requests!7452Issue #1797438. HTML5 validation is preventing form submit and not fully...,!789Issue #3210310: Adjust Database API to remove deprecated Drupal 9 code in Drupal 10
......@@ -41,6 +41,7 @@ function email_field_info_alter(&$info) {
else {
$info['email']['default_formatter'] = 'email_mailto';
}
$info['email']['provider'] = 'email';
}
/**
......
......@@ -90,6 +90,9 @@ function testEmailField() {
))
->save();
// Rebuild field info to check if email field still working.
field_sync_field_status();
// Display creation form.
$this->drupalGet('entity_test/add');
$this->assertFieldByName("{$field_name}[0][value]", '', 'Widget found.');
......@@ -106,13 +109,14 @@ function testEmailField() {
preg_match('|entity_test/manage/(\d+)|', $this->url, $match);
$id = $match[1];
$this->assertText(t('entity_test @id has been created.', array('@id' => $id)));
$this->assertRaw($value);
// Verify that a mailto link is displayed.
$entity = entity_load('entity_test', $id);
$display = entity_get_display($entity->entityType(), $entity->bundle(), 'full');
$entity->content = field_attach_view($entity, $display);
$this->drupalSetContent(drupal_render($entity->content));
$this->assertLinkByHref('mailto:test@example.com');
if ($this->assertRaw($value)) {
// Verify that a mailto link is displayed.
$entity = entity_load('entity_test', $id);
$display = entity_get_display($entity->entityType(), $entity->bundle(), 'full');
$entity->content = field_attach_view($entity, $display);
$this->drupalSetContent(drupal_render($entity->content));
$this->assertLinkByHref('mailto:test@example.com');
}
}
}
......@@ -25,6 +25,7 @@ function entity_reference_field_info_alter(&$info) {
$info['entity_reference']['default_widget'] = 'entity_reference_autocomplete';
$info['entity_reference']['default_formatter'] = 'entity_reference_label';
$info['entity_reference']['list_class'] = '\Drupal\entity_reference\Plugin\Field\FieldType\ConfigurableEntityReferenceFieldItemList';
$info['entity_reference']['provider'] = 'entity_reference';
}
/**
......
......@@ -69,6 +69,9 @@ function testEntityReferenceDefaultValue() {
));
$this->instance->save();
// Rebuild field info to check if entity_reference field still working.
field_sync_field_status();
// Set created node as default_value.
$instance_edit = array(
'default_value_input[' . $this->field->name . '][0][target_id]' => $referenced_node->getTitle() . ' (' .$referenced_node->id() . ')',
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment