Merge branch '7.x' of ssh://git.indexdata.com/home/git/pub/mkdru into 7.x
[mkdru-moved-to-drupal.org.git] / mkdru.admin.inc
1 <?php
2 function mkdru_admin_settings($form, &$form_state) {
3   $form['pz2_js_path']=array(
4     '#type' => 'textfield',
5     '#title' => t('Path to Pazpar2 client library'),
6     '#description' => t('Absolute path to the directory containing pz2.js within the current domain.'),
7     '#default_value' => variable_get('pz2_js_path', '/pazpar2/js'),
8     '#required' => TRUE
9   );
10   return system_settings_form($form);
11 }