function test_theme_settings_form_system_theme_settings_alter
Same name in other branches
- 8.9.x core/modules/system/tests/themes/test_theme_settings/theme-settings.php \test_theme_settings_form_system_theme_settings_alter()
- 10 core/modules/system/tests/themes/test_theme_settings/theme-settings.php \test_theme_settings_form_system_theme_settings_alter()
- 11.x core/modules/system/tests/themes/test_theme_settings/theme-settings.php \test_theme_settings_form_system_theme_settings_alter()
Implements hook_form_system_theme_settings_alter().
File
-
core/
modules/ system/ tests/ themes/ test_theme_settings/ theme-settings.php, line 14
Code
function test_theme_settings_form_system_theme_settings_alter(&$form, FormStateInterface $form_state) {
$form['custom_logo'] = [
'#type' => 'managed_file',
'#title' => t('Secondary logo.'),
'#default_value' => theme_get_setting('custom_logo'),
'#progress_indicator' => 'bar',
'#progress_message' => t('Please wait...'),
'#upload_location' => 'public://test',
'#upload_validators' => [
'file_validate_extensions' => [
'gif png jpg jpeg',
],
],
];
$form['multi_file'] = [
'#type' => 'managed_file',
'#title' => t('Multiple file field with all file extensions'),
'#multiple' => TRUE,
'#default_value' => theme_get_setting('multi_file'),
'#upload_location' => 'public://test',
'#upload_validators' => [
'file_validate_extensions' => [],
],
];
$form['#submit'][] = 'test_theme_settings_form_system_theme_settings_submit';
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.