You are here

function freelinking_file_file_settings in Freelinking 6.3

Same name and namespace in other branches
  1. 7.3 plugins/freelinking_file.inc \freelinking_file_file_settings()
1 string reference to 'freelinking_file_file_settings'
freelinking_file.inc in plugins/freelinking_file.inc

File

plugins/freelinking_file.inc, line 64

Code

function freelinking_file_file_settings() {
  $path = file_directory_path();
  $form['freelinking_file_file_path'] = array(
    '#title' => t('File Basepath'),
    '#type' => 'textfield',
    '#default_value' => variable_get('freelinking_file_file_path', $path),
    '#description' => t('Set the base path for files. Files should usually begin with !path', array(
      '!path' => $path,
    )),
  );
  return $form;
}