function hosting_site_action_info_alter in Hosting 7.4
Same name and namespace in other branches
- 7.3 site/hosting_site.module \hosting_site_action_info_alter()
Implements hook_action_info_alter().
File
- site/
hosting_site.module, line 815 - Contains hook implementations for Hosting site module.
Code
function hosting_site_action_info_alter(&$actions) {
if (variable_get('hosting_require_disable_before_delete', TRUE)) {
unset($actions['hosting_site_delete_action']);
}
}