'textfield', '#title' => t('URL of autoquest-htmlmonitor'), '#default_value' => variable_get('autoquestURL', 'https://swe-tooling.informatik.uni-goettingen.de/autoquest-htmlmonitor/script/'), '#size' => 150, '#maxlength' => 250, '#description' => t('The exact URL of the autoquest-htmlmonitor.js. Example: https://swe-tooling.informatik.uni-goettingen.de/autoquest-htmlmonitor/script/'), '#required' => TRUE, ); return system_settings_form($form); } /** * Implements hook_menu(). */ function autoquest_menu() { $items = array(); $items['admin/config/content/autoquest'] = array( 'title' => 'AutoQUEST-htmlmonitor-4drupal', 'description' => 'Configuration for AutoQUEST-Htmlmonitor module', 'page callback' => 'drupal_get_form', 'page arguments' => array('autoquest_form'), 'access arguments' => array('access administration pages'), 'type' => MENU_NORMAL_ITEM, ); return $items; }