function system_module_form_alter in Util 6.2
Same name and namespace in other branches
- 6.3 system_module.module \system_module_form_alter()
- 6 system_module.module \system_module_form_alter()
File
- ./
system_module.module, line 129 - Customize System Modules fieldsets
Code
function system_module_form_alter(&$form, $form_state, $form_id) {
switch ($form_id) {
case 'system_modules':
// A neat idea to allow access to the important module settings directly from the modules page,
// saves page loads from navigting to site configuration etc.
$form['#theme'] = 'system_modules_theme';
$form['description']['system_module']['#value'] = l($form['description']['system_module']['#value'], 'admin/settings/util/sysmods');
break;
}
}