function apdqc_admin_settings_form in Asynchronous Prefetch Database Query Cache 7
Form builder; Configure apdqc settings.
See also
1 string reference to 'apdqc_admin_settings_form'
- apdqc_menu in ./
apdqc.module - Implements hook_menu().
File
- ./
apdqc.admin.inc, line 98 - Admin page callbacks for the apdqc module.
Code
function apdqc_admin_settings_form($form, $form_state) {
apdqc_admin_set_message_if_needed();
drupal_set_title(t('APDQC: Configuration'));
$form = apdqc_admin_get_settings();
return system_settings_form($form);
}