function system_action_delete_orphans_post

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 3222
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)));
  }
}

© 2001–2016 by the original authors
Licensed under the GNU General Public License, version 2 and later.
Drupal is a registered trademark of Dries Buytaert.
https://api.drupal.org/api/drupal/modules!system!system.admin.inc/function/system_action_delete_orphans_post/7.x