function bueditor_delete_form in BUEditor 6.2
Same name and namespace in other branches
- 6 bueditor.admin.inc \bueditor_delete_form()
- 7 admin/bueditor.admin.inc \bueditor_delete_form()
Editor delete form.
1 string reference to 'bueditor_delete_form'
- bueditor_menu in ./
bueditor.module - Implementation of hook_menu().
File
- admin/
bueditor.admin.inc, line 498
Code
function bueditor_delete_form($form_state, $editor) {
return confirm_form(array(), t('Are you sure you want to delete the editor @name?', array(
'@name' => $editor->name,
)), 'admin/settings/bueditor', t('All buttons and settings of this editor will be removed.') . ' ' . t('This action cannot be undone.'), t('Delete'), t('Cancel'));
}