function splashify_admin_what_form_submit in Splashify 7
Same name and namespace in other branches
- 6 admin/splashify.admin.what.inc \splashify_admin_what_form_submit()
Implements form submit handler.
1 string reference to 'splashify_admin_what_form_submit'
- splashify_admin_what_form in admin/
splashify.admin.what.inc - "What" settings tab.
File
- admin/
splashify.admin.what.inc, line 212 - The admin "What" tab.
Code
function splashify_admin_what_form_submit($form, &$form_state) {
// Clear out the title value if we aren't using the template option.
if ($form_state['values']['splashify_what_desktop_mode'] != 'template') {
variable_set('splashify_what_desktop_pagetitle', '');
}
}