Skip to content
Snippets Groups Projects
Commit 5fa8126d authored by Alex Pott's avatar Alex Pott
Browse files

Issue #2285311 by joelpittet, tomatkins, susannecoates: Theme's "Path to...

Issue #2285311 by joelpittet, tomatkins, susannecoates: Theme's "Path to custom logo" always validated even if "Use the default logo" is set
parent 628ffc0c
No related branches found
No related tags found
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
...@@ -379,6 +379,16 @@ public function validateForm(array &$form, FormStateInterface $form_state) { ...@@ -379,6 +379,16 @@ public function validateForm(array &$form, FormStateInterface $form_state) {
} }
} }
// When intending to use the default logo, unset the logo_path.
if ($form_state->getValue('default_logo')) {
$form_state->unsetValue('logo_path');
}
// When intending to use the default favicon, unset the favicon_path.
if ($form_state->getValue('default_favicon')) {
$form_state->unsetValue('favicon_path');
}
// If the user provided a path for a logo or favicon file, make sure a file // If the user provided a path for a logo or favicon file, make sure a file
// exists at that path. // exists at that path.
if ($form_state->getValue('logo_path')) { if ($form_state->getValue('logo_path')) {
......
...@@ -201,6 +201,18 @@ function testThemeSettings() { ...@@ -201,6 +201,18 @@ function testThemeSettings() {
$this->assertLink($theme_handler->getName('stable')); $this->assertLink($theme_handler->getName('stable'));
$this->drupalGet('admin/appearance/settings/stable'); $this->drupalGet('admin/appearance/settings/stable');
$this->assertResponse(200, 'The theme settings form URL for a hidden theme that is the admin theme is available.'); $this->assertResponse(200, 'The theme settings form URL for a hidden theme that is the admin theme is available.');
// Ensure default logo and favicons are not triggering custom path
// validation errors if their custom paths are set on the form.
$edit = [
'default_logo' => TRUE,
'logo_path' => 'public://whatever.png',
'default_favicon' => TRUE,
'favicon_path' => 'public://whatever.ico',
];
$this->drupalPostForm('admin/appearance/settings', $edit, 'Save configuration');
$this->assertNoText('The custom logo path is invalid.');
$this->assertNoText('The custom favicon path is invalid.');
} }
/** /**
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment