You are here

function nodewords_custom_pages_confirm_delete in Nodewords: D6 Meta Tags 6

Same name and namespace in other branches
  1. 6.2 nodewords_custom_pages/nodewords_custom_pages.admin.inc \nodewords_custom_pages_confirm_delete()

Show the confirmation form for the page meta tags delete operation.

1 string reference to 'nodewords_custom_pages_confirm_delete'
nodewords_menu in ./nodewords.module
Implements hook_menu().

File

./nodewords.admin.inc, line 10
Administration interface for nodewords.module.

Code

function nodewords_custom_pages_confirm_delete(&$form_state, $page) {
  $form['pid'] = array(
    '#type' => 'value',
    '#value' => $page->pid,
  );
  return confirm_form($form, t('Are you sure you want to delete the meta tags for the page %name?', array(
    '%name' => $page->name,
  )), 'admin/content/nodewords/meta-tags/custom', NULL, t('Delete'));
}