mediamosa_development_settings

Versions
mediamosa-21
mediamosa_development_settings()

Code

sites/all/modules/mediamosa_development/mediamosa_development.module, line 101

<?php
function mediamosa_development_settings() {
  $form = array();

  $form['development'] = array(
    '#type' => 'fieldset',
    '#title' => t('Database development settings'),
    '#collapsible' => TRUE,
  );
  $form['development']['mediamosa_development_mediamosa_17_rest_url'] = array(
    '#type' => 'textfield',
    '#title' => t('MediaMosa 1.x REST URL'),
    '#description' => t('If you want to compare output with MediaMosa 1.7.x, enter the REST url where the same REST call is run. However, it will use the same application login you select for the REST call; client applications must be same for both databases.'),
    '#default_value' => '',
  );

  $form = system_settings_form($form);

  return $form;
}
?>