function hosting_example_feature_disable_callback in Hosting 7.3
Same name and namespace in other branches
- 6.2 example/hosting_example.module \hosting_example_feature_disable_callback()
- 7.4 example/example_service/hosting_example.module \hosting_example_feature_disable_callback()
Callback function to execute on enabling this module's feature.
@see: hosting_example_hosting_feature().
2 string references to 'hosting_example_feature_disable_callback'
- hook_hosting_feature in ./
hosting.api.php - Register a hosting feature with Aegir.
- hosting_example_hosting_feature in example/
example_service/ hosting.feature.example.inc - Implements hook_hosting_feature().
File
- example/
example_service/ hosting_example.module, line 96 - Example of the Hosting Services API.
Code
function hosting_example_feature_disable_callback() {
drupal_set_message(t("The 'example' feature's <strong>disable</strong> callback was just called."));
}