function views_ui_break_lock_confirm

3.x admin.inc views_ui_break_lock_confirm($form, &$form_state, $view)
2.x admin.inc views_ui_break_lock_confirm(&$form_state, $view)

Page to delete a view.

1 string reference to 'views_ui_break_lock_confirm'

File

includes/admin.inc, line 692
admin.inc Provides the Views' administrative interface.

Code

function views_ui_break_lock_confirm(&$form_state, $view) {
  $form_state['view'] = &$view;
  $form = array();

  if (empty($view->locked)) {
    return t('There is no lock on view %view to break.', array('%name' => $view->name));
  }

  $cancel = 'admin/build/views/edit/' . $view->name;
  if (!empty($_REQUEST['cancel'])) {
    $cancel = $_REQUEST['cancel'];
  }

  $account = user_load($view->locked->uid);
  return confirm_form($form, 
  t('Are you sure you want to break the lock on view %name?', 
  array('%name' => $view->name)), 
  $cancel, 
  t('By breaking this lock, any unsaved changes made by !user will be lost!', array('!user' => theme('username', $account))), 
  t('Break lock'), 
  t('Cancel'));
}