public function EditorFileDialog::getBaseFormId in Editor File upload 8
Returns a string identifying the base form.
Return value
string|null The string identifying the base form or NULL if this is not a base form.
Overrides BaseFormIdInterface::getBaseFormId
File
- src/
Form/ EditorFileDialog.php, line 71
Class
- EditorFileDialog
- Provides a link dialog for text editors.
Namespace
Drupal\editor_file\FormCode
public function getBaseFormId() {
// Use the EditorLinkDialog form id to ease alteration.
return 'editor_link_dialog';
}