system_action_delete_orphans_post

6 system.module system_action_delete_orphans_post($orphaned)
7 system.admin.inc system_action_delete_orphans_post($orphaned)
8 system.admin.inc system_action_delete_orphans_post($orphaned)

Post-deletion operations for deleting action orphans.

Parameters

$orphaned: An array of orphaned actions.

File

modules/system/system.admin.inc, line 3190
Admin page callbacks for the system module.

Code

function system_action_delete_orphans_post($orphaned) {
  foreach ($orphaned as $callback) {
    drupal_set_message(t("Deleted orphaned action (%action).", array('%action' => $callback)));
  }
}
Login or register to post comments