function system_action_delete_orphans_post in Drupal 6
Same name and namespace in other branches
- 7 modules/system/system.admin.inc \system_action_delete_orphans_post()
Post-deletion operations for deleting action orphans.
Parameters
$orphaned: An array of orphaned actions.
File
- modules/
system/ system.module, line 1641 - Configuration system that lets administrators modify the workings of the site.
Code
function system_action_delete_orphans_post($orphaned) {
foreach ($orphaned as $callback) {
drupal_set_message(t("Deleted orphaned action (%action).", array(
'%action' => $callback,
)));
}
}