You are here

function lingotek_community_form in Lingotek Translation 6

1 call to lingotek_community_form()
lingotek_administrative_settings_form in ./lingotek.admin.inc

File

./lingotek.admin.inc, line 85

Code

function lingotek_community_form() {
  global $_version;
  $form['auth'] = array(
    '#type' => 'fieldset',
    '#title' => t('Community Setting'),
    '#description' => t('Lingotek Module Version 6.22.@revision', array(
      '@revision' => $_version,
    )),
  );
  $form['auth']['lingotek_community'] = array(
    '#type' => 'select',
    '#title' => t('Community'),
    '#description' => t('Use this community to sign and store translations in.'),
    '#options' => lingotek_get_communities(),
    '#default_value' => variable_get('lingotek_community', ''),
  );
  return $form;
}