function uc_notify_settings_form in Ubercart 5        
                          
                  
                        
1 string reference to 'uc_notify_settings_form'
  - uc_notify_menu in uc_notify/uc_notify.module
- Implementation of hook_menu().
File
 
   - uc_notify/uc_notify.module, line 186
- Handles configuration and execution of email notifications.
Code
function uc_notify_settings_form() {
  global $base_url;
  $form['uc_notify_store_help_page'] = array(
    '#type' => 'textfield',
    '#title' => t('Store help page'),
    '#description' => t('The Drupal page for the store help link.'),
    '#default_value' => variable_get('uc_notify_store_help_page', ''),
    '#size' => 32,
    '#field_prefix' => url(NULL, NULL, NULL, TRUE) . (variable_get('clean_url', 0) ? '' : '?q='),
  );
  return system_settings_form($form);
}