function homebox_features_revert in Homebox 7.2
Same name and namespace in other branches
- 6.3 homebox.features.inc \homebox_features_revert()
- 6.2 homebox.features.inc \homebox_features_revert()
- 7.3 homebox.features.inc \homebox_features_revert()
Implements hook_features_revert().
File
- ./
homebox.features.inc, line 83 - Features support.
Code
function homebox_features_revert($module = NULL) {
// Get homebox pages from feature
if (module_hook($module, 'homebox')) {
$pages = module_invoke($module, 'homebox');
foreach ($pages as $name => $settings) {
homebox_delete_page($name);
}
}
}