|
|
|
@ -1,7 +1,5 @@
|
|
|
|
|
<?php |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
* @file |
|
|
|
|
* formClass class |
|
|
|
@ -370,6 +368,22 @@ class formClass {
|
|
|
|
|
'#default_value' => variable_get('fedora_control_group_control_during_ingest', FALSE), |
|
|
|
|
); |
|
|
|
|
|
|
|
|
|
//FITS functionality |
|
|
|
|
$form['advanced']['enable_fits'] = array( |
|
|
|
|
'#type' => 'checkbox', |
|
|
|
|
'#title' => t('Enable FITS support?'), |
|
|
|
|
'#description' => t('Whether or not we should create a FITS datastream upon object ingest.'), |
|
|
|
|
'#default_value' => variable_get('enable_fits', TRUE), |
|
|
|
|
); |
|
|
|
|
|
|
|
|
|
//FITS Path |
|
|
|
|
$form['advanced']['fits_path'] = array( |
|
|
|
|
'#type' => 'textfield', |
|
|
|
|
'#title' => t('Path to FITS executable'), |
|
|
|
|
'#description' => t("Path to FITS program on your server. It must be accessible by Drupal (i.e. apache user)."), |
|
|
|
|
'#default_value' => variable_get('fits_path','/usr/local/bin/fits.sh'), |
|
|
|
|
); |
|
|
|
|
|
|
|
|
|
//Export functionality |
|
|
|
|
$form['advanced']['module']['export_area'] = array( |
|
|
|
|
'#type' => 'textfield', |
|
|
|
|