function coder_settings_form_submit in Coder 6
Same name and namespace in other branches
- 5.2 coder.module \coder_settings_form_submit()
- 5 coder.module \coder_settings_form_submit()
- 6.2 coder.module \coder_settings_form_submit()
Callback function for settings page in Drupal 5.
1 string reference to 'coder_settings_form_submit'
- coder_admin_settings in ./
coder.module - Implementation of settings page for Drupal 5.
File
- ./
coder.module, line 538 - Developer Module that assists with code review and version upgrade that supports a plug-in extensible hook system so contributed modules can define additional review standards.
Code
function coder_settings_form_submit($form, &$form_state) {
$form_state['storage'] = $form_state['values'];
variable_set('coder_modules', _coder_settings_array($form_state, 'module'));
variable_set('coder_themes', _coder_settings_array($form_state, 'theme'));
}