You are here

function hosting_ssl_form_alter in Hosting 7.4

Same name and namespace in other branches
  1. 6.2 web_server/ssl/hosting_ssl.module \hosting_ssl_form_alter()
  2. 7.3 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);
  }
}