You are here

function og_massadd_admin_settings in Organic Groups Mass Add 7

Same name and namespace in other branches
  1. 6 og_massadd.admin.inc \og_massadd_admin_settings()

Configure module.

1 string reference to 'og_massadd_admin_settings'
og_massadd_menu in ./og_massadd.module
Implements hook_menu().

File

./og_massadd.admin.inc, line 11
Administration callbacks for the og_massadd module

Code

function og_massadd_admin_settings() {
  $form['og_massadd_createunknowns'] = array(
    '#type' => 'checkbox',
    '#title' => t('Create unknown users.'),
    '#description' => t('If this is set, users not present in the Drupal user table will be created.'),
    '#default_value' => variable_get('og_massadd_createunknowns', FALSE),
  );

  /*
  $form['og_massadd_profilenode'] = array(
    '#type' => 'textfield',
    '#title' => t('Name of content_profile node type.'),
    '#description' => t('Enter the machine readable name of the content type you want og_massadd to use for content_profile creation, or leave empty for no profile creation.'),
    '#default_value' => variable_get('og_massadd_profilenode', reset(array_keys(content_profile_get_types('names')))),
    '#resizable' => FALSE,
  );
  */
  $field_instances = field_info_instances('user');
  if (isset($field_instances['user']) && !empty($field_instances['user'])) {
    foreach ($field_instances['user'] as $key => $field) {
      $options[$key] = $field['label'];
    }
    $form['og_massadd_profilefname'] = array(
      '#type' => 'select',
      '#options' => $options,
      '#title' => t('Field for user\'s first name.'),
      '#description' => t('Enter the machine readable name of the field that contains the user\'s first name or leave empty.'),
      '#default_value' => variable_get('og_massadd_profilefname', ''),
      '#resizable' => FALSE,
    );
    $form['og_massadd_profilelname'] = array(
      '#type' => 'select',
      '#options' => $options,
      '#title' => t('Field for user\'s last name.'),
      '#description' => t('Enter the machine readable name of the field that contains the user\'s last name or leave empty.'),
      '#default_value' => variable_get('og_massadd_profilelname', ''),
      '#resizable' => FALSE,
    );
  }
  return system_settings_form($form);
}