function system_action_delete_orphans_post

Post-deletion operations for deleting action orphans.

Parameters

$orphaned: An array of orphaned actions.

File

modules/system/system.admin.inc, line 3257

Code

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

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.