Drupal.org explicitly licenses as GPLv2 and frowns upon including a LICENSE
[mkdru-moved-to-drupal.org.git] / mkdru.admin.inc
1 <?php
2 /**
3  * @file
4  * Module config.
5  */
6 function mkdru_admin_settings() {
7   $form['pz2_js_path']=array(
8     '#type' => 'textfield',
9     '#title' => t('Path to Pazpar2 client library'),
10     '#description' => t('Absolute path to the directory containing pz2.js within the current domain. Do not include leading slash.'),
11     '#default_value' => variable_get('pz2_js_path', 'pazpar2/js'),
12     '#required' => TRUE
13   );
14   return system_settings_form($form);
15 }