system_action_delete_orphans_post($orphaned)Post-deletion operations for deleting action orphans.
$orphaned An array of orphaned actions.
modules/system/system.admin.inc, line 3083
<?php
function system_action_delete_orphans_post($orphaned) {
foreach ($orphaned as $callback) {
drupal_set_message(t("Deleted orphaned action (%action).", array('%action' => $callback)));
}
}
?>