system_actions_delete_form($form, &$form_state, $action)Create the form for confirmation of deleting an action.
system_actions_delete_form_submit()
modules/system/system.admin.inc, line 3048
<?php
function system_actions_delete_form($form, &$form_state, $action) {
$form['aid'] = array(
'#type' => 'hidden',
'#value' => $action->aid,
);
return confirm_form($form,
t('Are you sure you want to delete the action %action?', array('%action' => $action->label)),
'admin/config/system/actions/manage',
t('This cannot be undone.'),
t('Delete'),
t('Cancel')
);
}
?>