You are here

function statspro_settings_form in Statistics Pro 6

Same name and namespace in other branches
  1. 6.2 statspro_settings.inc \statspro_settings_form()

Form generating function for search_engine_referers settings

1 string reference to 'statspro_settings_form'
statspro_overview in ./statspro.reports.inc
Callback function for overview page

File

./statspro.module, line 160
Main module of Statistcs pro module

Code

function statspro_settings_form() {
  $form = array();
  $form['statspro_period'] = array(
    '#type' => 'select',
    '#title' => t('Time period'),
    '#default_value' => variable_get('statspro_period', 'today'),
    '#options' => statspro_get_period_items(),
  );
  return system_settings_form($form);
}