| Server IP : 195.130.67.5 / Your IP : 216.73.217.154 Web Server : Microsoft-IIS/10.0 System : Windows NT WEBSERVER1 10.0 build 17763 (Windows Server 2016) i586 User : IUSR ( 0) PHP Version : 7.4.19 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : C:/inetpub/wwwroot/business/modules/simpletest/tests/themes/test_theme/ |
Upload File : |
<?php
/**
* @file
* Theme setting callbacks for the test_theme theme.
*/
/**
* Implements hook_form_FORM_ID_alter().
*/
function test_theme_form_system_theme_settings_alter(&$form, &$form_state) {
$form['test_theme_checkbox'] = array(
'#type' => 'checkbox',
'#title' => 'Test theme checkbox',
'#default_value' => theme_get_setting('test_theme_checkbox'),
);
// Force the form to be cached so we can test that this file is properly
// loaded and the custom submit handler is properly called even on a cached
// form build.
$form_state['cache'] = TRUE;
$form['#submit'][] = 'test_theme_form_system_theme_settings_submit';
}
/**
* Form submission handler for the test theme settings form.
*
* @see test_theme_form_system_theme_settings_alter()
*/
function test_theme_form_system_theme_settings_submit($form, &$form_state) {
drupal_set_message('The test theme setting was saved.');
}