function _hosting_site_form_check in Hosting 6.2
Same name and namespace in other branches
- 7.4 site/hosting_site.module \_hosting_site_form_check()
- 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 - Implementation of hook_menu()
File
- site/
hosting_site.module, line 102
Code
function _hosting_site_form_check() {
$platform = NULL;
if (isset($_GET['platform'])) {
$platform = $_GET['platform'];
}
$result = hosting_site_available_options($_POST, $platform);
drupal_json($result);
exit;
}