function hosting_ssl_form_alter in Hosting 7.3
Same name and namespace in other branches
- 6.2 web_server/ssl/hosting_ssl.module \hosting_ssl_form_alter()
- 7.4 web_server/ssl/hosting_ssl.module \hosting_ssl_form_alter()
Implements hook_form_alter().
File
- web_server/
ssl/ hosting_ssl.module, line 95 - Hook implementations for the Hosting SSL module.
Code
function hosting_ssl_form_alter(&$form, &$form_state, $form_id) {
if ($form_id == 'site_node_form') {
hosting_ssl_site_form($form, $form_state, $form_id);
}
}