function TextCckTest::getFieldTypeProvider
Same name in this branch
- 8.9.x core/modules/text/tests/src/Unit/Migrate/TextCckTest.php \Drupal\Tests\text\Unit\Migrate\TextCckTest::getFieldTypeProvider()
Data provider for testGetFieldType().
File
-
core/
modules/ text/ tests/ src/ Unit/ Plugin/ migrate/ cckfield/ TextCckTest.php, line 124
Class
- TextCckTest
- @coversDefaultClass \Drupal\text\Plugin\migrate\cckfield\TextField @group text @group legacy
Namespace
Drupal\Tests\text\Unit\Plugin\migrate\cckfieldCode
public function getFieldTypeProvider() {
return [
[
'string_long',
'text_textfield',
[
'text_processing' => FALSE,
],
],
[
'string',
'text_textfield',
[
'text_processing' => FALSE,
'max_length' => 128,
],
],
[
'string_long',
'text_textfield',
[
'text_processing' => FALSE,
'max_length' => 4096,
],
],
[
'text_long',
'text_textfield',
[
'text_processing' => TRUE,
],
],
[
'text',
'text_textfield',
[
'text_processing' => TRUE,
'max_length' => 128,
],
],
[
'text_long',
'text_textfield',
[
'text_processing' => TRUE,
'max_length' => 4096,
],
],
[
'list_string',
'optionwidgets_buttons',
],
[
'list_string',
'optionwidgets_select',
],
[
'boolean',
'optionwidgets_onoff',
],
[
'text_long',
'text_textarea',
[
'text_processing' => TRUE,
],
],
[
'string_long',
'text_textarea',
[
'text_processing' => FALSE,
],
],
[
NULL,
'undefined',
],
];
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.