Browse Source

Attempting to add config to admin form

pull/636/head
ajs6f 9 years ago
parent
commit
71342fc41f
  1. 15
      includes/admin.form.inc

15
includes/admin.form.inc

@ -48,6 +48,21 @@ function islandora_repository_admin(array $form, array &$form_state) {
), ),
), ),
), ),
'sparql_endpoint_externalized' => array(
'#type' => 'checkbox',
'#title' => t('Use an external SPARQL Query endpoint'),
'#description' => t('If an external query endpoint is used, the repository must be configured to update it.'),
'#default_value' => variable_get('sparql_endpoint_externalized', FALSE),
),
'sparql_endpoint' => array(
'#type' => 'textfield',
'#title' => t('SPARQL Query Endpoint'),
'#default_value' => variable_get('sparql_endpoint', ""),
'#description' => t("An external SPARQL Query endpoint to use."),
'#required' => FALSE,
'#states' => array(
'invisible' => array(':input[name="sparql_endpoint_externalized"]' => array('checked' => FALSE))),
),
'islandora_repository_pid' => array( 'islandora_repository_pid' => array(
'#type' => 'textfield', '#type' => 'textfield',
'#title' => t('Root Collection PID'), '#title' => t('Root Collection PID'),

Loading…
Cancel
Save