function system_action_delete_orphans_post

Same name and namespace in other branches
  1. 6.x drupal-6.x/modules/system/system.module \system_action_delete_orphans_post()

Post-deletion operations for deleting action orphans.

Parameters

$orphaned: An array of orphaned actions.

Archivo

drupal-7.x/modules/system/system.admin.inc, line 3201
Admin page callbacks for the system module.

Código

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