system_action_delete_orphans_post

Versions
6 – 7
system_action_delete_orphans_post($orphaned)

Post-deletion operations for deleting action orphans.

Parameters

$orphaned An array of orphaned actions.

Code

modules/system/system.module, line 1598

<?php
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
 
 

All source code and documentation on this site is released under the terms of the GNU General Public License, version 2 and later. Drupal is a registered trademark of Dries Buytaert.