You are here

function fft_config_form in Field Formatter Template 7

Implements hook_form().

1 string reference to 'fft_config_form'
fft_menu in ./fft.module
Implements hook_menu().

File

./fft.module, line 25
Field formatter template.

Code

function fft_config_form($form, &$form_state) {
  $form['fft_store_dir'] = array(
    '#type' => 'textfield',
    '#title' => t('Formmater template directory'),
    '#default_value' => fft_store_dir(),
    '#description' => t('Configure directory store field formatter template.'),
  );
  return system_settings_form($form);
}