function system_actions_remove_orphans

7.x system.admin.inc system_actions_remove_orphans()
6.x system.module system_actions_remove_orphans()

Remove actions that are in the database but not supported by any enabled module.

1 string reference to 'system_actions_remove_orphans'
system_menu in drupal-7.x/modules/system/system.module
Implements hook_menu().

File

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

Code

function system_actions_remove_orphans() {
  actions_synchronize(TRUE);
  drupal_goto('admin/config/system/actions/manage');
}