You are here

function services_ccc_settings in Services Client 7

1 string reference to 'services_ccc_settings'
services_ccc_menu in services_ccc/services_ccc.module
Implementation of hook_menu()

File

services_ccc/services_ccc.module, line 20

Code

function services_ccc_settings() {
  $form['services_ccc_connection_taxonomy'] = array(
    '#type' => 'textfield',
    '#title' => 'Field containing taxonomy terms',
    '#default_value' => variable_get('services_ccc_connection_taxonomy', NULL),
  );
  return system_settings_form($form);
}