You are here

function hosting_https_form_alter in Aegir HTTPS 7.3

Implements hook_form_alter().

File

./hosting_https.module, line 112
Hook implementations for the Hosting HTTPS module.

Code

function hosting_https_form_alter(&$form, &$form_state, $form_id) {
  if ($form_id == 'site_node_form') {
    hosting_https_site_form($form, $form_state, $form_id);
  }
}