function hosting_site_add_by_platform in Hosting 7.3
Same name and namespace in other branches
- 6.2 site/hosting_site.module \hosting_site_add_by_platform()
- 7.4 site/hosting_site.module \hosting_site_add_by_platform()
Page callback for Site add by platform.
1 string reference to 'hosting_site_add_by_platform'
- hosting_site_menu in site/
hosting_site.module - Implements hook_menu().
File
- site/
hosting_site.module, line 474 - Contains hook implementations for Hosting site module.
Code
function hosting_site_add_by_platform($node) {
drupal_goto('node/add/site', array(
'query' => array(
'platform' => $node->nid,
),
));
}