You are here

function sf_notifications_process_confirm_form in Salesforce Suite 7.2

1 string reference to 'sf_notifications_process_confirm_form'
sf_notifications_menu in sf_notifications/sf_notifications.module
Implements hook_menu.

File

sf_notifications/sf_notifications.admin.inc, line 142

Code

function sf_notifications_process_confirm_form($form, &$form_state) {
  $form = array();

  // Set some default form values
  $form = confirm_form($form, t('Are you sure you want to process the Salesforce notifications queue?'), SALESFORCE_PATH_NOTIFICATIONS_ADMIN . '/queue', NULL, t('Continue'), t('Cancel'));
  return $form;
}