You are here

function bueditor_confirm_delete_form in BUEditor 5

1 string reference to 'bueditor_confirm_delete_form'
bueditor_confirm_delete in ./bueditor.module
Confirm editor delete

File

./bueditor.module, line 355

Code

function bueditor_confirm_delete_form($name) {
  return confirm_form($form, t('Are you sure you want to delete the editor !name?', array(
    '!name' => theme('placeholder', $name),
  )), 'admin/settings/bueditor', t('All buttons and settings for this editor will be removed.') . ' ' . t('This action cannot be undone.'), t('Delete'), t('Cancel'));
}