function fac_delete_form in Fast Autocomplete 7
Fast AutoComplete delete json files form.
1 string reference to 'fac_delete_form'
- fac_menu in ./
fac.module - Implements hook_menu().
File
- inc/
fac.admin.inc, line 341 - This file contains the settings forms of the Fast Autocomplete module.
Code
function fac_delete_form(array $form, array $form_state) {
$form = array();
return confirm_form($form, t('Delete the Fast Autocomplete json files'), 'admin/config/search/fac', t('This action cannot be undone.'), t('Delete'), t('Cancel'));
}