You are here

function ocupload_delete_confirm in One Click Upload 7.2

Same name and namespace in other branches
  1. 7 ocupload.inc \ocupload_delete_confirm()

Confirm form delete teamplate.

1 string reference to 'ocupload_delete_confirm'
ocupload_menu in ./ocupload.module
Implements hook_menu().

File

./ocupload.inc, line 336
One Click Upload includes.

Code

function ocupload_delete_confirm($form, &$form_state, $template) {
  $form['tid'] = array(
    '#type' => 'value',
    '#value' => $template->tid,
  );
  return confirm_form($form, t('Do you really want to delete template') . ' ' . $template->tid . '?', 'admin/config/content/ocupload');
}