
| Current Path : /var/www/html/atstandard/ |
Linux ift1.ift-informatik.de 5.4.0-216-generic #236-Ubuntu SMP Fri Apr 11 19:53:21 UTC 2025 x86_64 |
| Current File : //var/www/html/atstandard/theme-settings.php |
<?php
/**
* @file
* Theme settings.
*/
/**
* Implementation of hook_form_system_theme_settings_alter()
*
* @param $form
* Nested array of form elements that comprise the form.
* @param $form_state
* A keyed array containing the current state of the form.
*/
/* -- Delete this line to enable.
function atstandard_form_system_theme_settings_alter(&$form, \Drupal\Core\Form\FormStateInterface $form_state, $form_id = NULL) {
// Work-around for a core bug affecting admin themes. See issue #943212.
if (isset($form_id)) {
return;
}
// $build_info = $form_state->getBuildInfo();
// $theme = $build_info['args'][0];
// $form['#validate'][] = 'atstandard_settings_form_validate';
// $form['#submit'][] = 'atstandard_settings_form_submit';
}
// */
/**
* Form validation handler for the theme settings form.
*/
/* -- Delete this line to enable.
function atstandard_settings_form_validate($form, &$form_state) {
}
// */
/**
* Form submit handler for the theme settings form.
*/
/* -- Delete this line to enable.
function atstandard_settings_form_submit($form, &$form_state) {
}
// */