protected function EditorAdminTest::addEditorToNewFormat in Drupal 9
Same name and namespace in other branches
- 8 core/modules/editor/tests/src/Functional/EditorAdminTest.php \Drupal\Tests\editor\Functional\EditorAdminTest::addEditorToNewFormat()
- 10 core/modules/editor/tests/src/Functional/EditorAdminTest.php \Drupal\Tests\editor\Functional\EditorAdminTest::addEditorToNewFormat()
Adds an editor to a new format using the UI.
Parameters
string $format_id: The format id.
string $format_name: The format name.
2 calls to EditorAdminTest::addEditorToNewFormat()
- EditorAdminTest::testAddEditorToNewFormat in core/
modules/ editor/ tests/ src/ Functional/ EditorAdminTest.php - Tests adding a text editor to a new text format.
- EditorAdminTest::testDisableFormatWithEditor in core/
modules/ editor/ tests/ src/ Functional/ EditorAdminTest.php - Tests format disabling.
File
- core/
modules/ editor/ tests/ src/ Functional/ EditorAdminTest.php, line 181
Class
- EditorAdminTest
- Tests administration of text editors.
Namespace
Drupal\Tests\editor\FunctionalCode
protected function addEditorToNewFormat($format_id, $format_name) {
$this
->enableUnicornEditor();
$this
->drupalLogin($this->adminUser);
$this
->drupalGet('admin/config/content/formats/add');
// Configure the text format name.
$edit = [
'name' => $format_name,
'format' => $format_id,
];
$edit += $this
->selectUnicornEditor();
$this
->submitForm($edit, 'Save configuration');
}