function _hosting_site_form_check in Hosting 7.3
Same name and namespace in other branches
- 6.2 site/hosting_site.module \_hosting_site_form_check()
- 7.4 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 113 - 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;
}