You are here

function rotating_banner_slide_delete_confirm in Rotating Banner 7

Same name and namespace in other branches
  1. 7.2 rotating_banner.admin.inc \rotating_banner_slide_delete_confirm()
1 string reference to 'rotating_banner_slide_delete_confirm'
rotating_banner_menu in ./rotating_banner.module
Implement hook_menu();

File

./rotating_banner.admin.inc, line 226

Code

function rotating_banner_slide_delete_confirm($form, &$form_state, $slide) {
  return confirm_form(array(
    '#slide' => $slide,
  ), t('Are you sure you want to delete this slide?'), 'admin/structure/block/manage/rotating_banner/' . $slide->rbid . '/configure', t('This action cannot be undone.'), t('Delete'), t('Cancel'));
}