You are here

function gathercontent_mapping_delete_form in GatherContent 7.3

Delete mapping form.

@inheritdoc

1 string reference to 'gathercontent_mapping_delete_form'
gathercontent_menu in ./gathercontent.module
Implements hook_menu().

File

forms/gathercontent.mapping-delete.inc, line 17
Multistep mapping form.

Code

function gathercontent_mapping_delete_form($form, &$form_state, $id) {
  $form = array();
  $form['id'] = array(
    '#type' => 'value',
    '#value' => $id,
  );
  return confirm_form($form, t('Are you sure you want to delete this item?'), 'admin/config/gathercontent/mapping', t('This action cannot be undone.'), t('Delete'), t('Cancel'));
}