You are here

function _hosting_site_form_check in Hosting 7.4

Same name and namespace in other branches
  1. 6.2 site/hosting_site.module \_hosting_site_form_check()
  2. 7.3 site/hosting_site.module \_hosting_site_form_check()
1 string reference to '_hosting_site_form_check'
hosting_site_menu in site/hosting_site.module
Implements hook_menu().

File

site/hosting_site.module, line 118
Contains hook implementations for Hosting site module.

Code

function _hosting_site_form_check() {
  $platform = NULL;
  if (isset($_GET['platform'])) {
    $platform = $_GET['platform'];
  }
  drupal_json_output(hosting_site_available_options($_POST, $platform));
  exit;
}