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