function clients_drupal_admin in Web Service Clients 6
Same name and namespace in other branches
- 6.2 connections/clients_drupal/clients_drupal.module \clients_drupal_admin()
- 7.3 connections/clients_drupal/clients_drupal.module \clients_drupal_admin()
- 7 backends/clients_drupal/clients_drupal.module \clients_drupal_admin()
- 7.2 connections/clients_drupal/clients_drupal.module \clients_drupal_admin()
Return value
array Form
1 string reference to 'clients_drupal_admin'
- clients_drupal_menu in backends/clients_drupal/ clients_drupal.module 
- Implementation of hook_menu()
File
- backends/clients_drupal/ clients_drupal.module, line 434 
- Drupal Services plugin for Clients module @author Django Beatty - adub
Code
function clients_drupal_admin() {
  $form = array();
  $options = clients_drupal_encryption_methods();
  $form['clients_drupal_encryption_method'] = array(
    '#type' => 'select',
    '#title' => t('Remote password encryption method'),
    '#default_value' => variable_get('clients_drupal_encryption_method', ''),
    '#options' => $options,
    '#required' => TRUE,
  );
  return system_settings_form($form);
}