views_ui_delete1_confirm(&$form_state, $vid)views_ui_delete1_confirm($form, &$form_state, $vid)Page to delete a Views 1 view.
contributions/views/includes/convert.inc, line 145
<?php
function views_ui_delete1_confirm(&$form_state, $vid) {
$form_state['vid'] = $vid;
$form = array();
$cancel = 'admin/build/views/tools/convert';
if (!empty($_REQUEST['cancel'])) {
$cancel = $_REQUEST['cancel'];
}
return confirm_form($form,
t('Are you sure you want to delete the view %name?', array('%name' => $view->name)),
$cancel,
t('This action cannot be undone.'),
t('Delete'),
t('Cancel'));
}
?>