function action_admin_remove_orphans

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

1 string reference to 'action_admin_remove_orphans'
action_menu in drupal/core/modules/action/action.module
Implements hook_menu().

File

drupal/core/modules/action/action.admin.inc, line 293
Admin page callbacks for the Action module.

Code

function action_admin_remove_orphans() {
  action_synchronize(TRUE);
  drupal_goto('admin/config/system/actions/manage');
}