function jscrollpane_settings_form in JScrollPane 6.2
Form constructor for the admin settings form.
See also
1 string reference to 'jscrollpane_settings_form'
- jscrollpane_menu in ./
jscrollpane.module - Implementation of hook_menu().
File
- includes/
jscrollpane.admin.inc, line 13 - Administration functions for the jScrollPane module.
Code
function jscrollpane_settings_form($form, &$form_state) {
$form['jscrollpane_class'] = array(
'#title' => t('Class'),
'#description' => t('The HTML class that is to be used to apply jScollPane.'),
'#type' => 'textfield',
'#required' => TRUE,
'#default_value' => variable_get('jscrollpane_class', 'scroll-pane'),
);
return system_settings_form($form);
}