You are here

function bueditor_delete_form in BUEditor 7

Same name and namespace in other branches
  1. 6.2 admin/bueditor.admin.inc \bueditor_delete_form()
  2. 6 bueditor.admin.inc \bueditor_delete_form()

Editor delete form.

1 string reference to 'bueditor_delete_form'
bueditor_menu in ./bueditor.module
Implements hook_menu().

File

admin/bueditor.admin.inc, line 582

Code

function bueditor_delete_form($form, &$form_state, $editor) {
  return confirm_form(array(), t('Are you sure you want to delete the editor @name?', array(
    '@name' => $editor->name,
  )), 'admin/config/content/bueditor', t('All buttons and settings of this editor will be removed.') . ' ' . t('This action cannot be undone.'), t('Delete'), t('Cancel'));
}