From c2f0b10ffc72cc3f547d00421f3dc2aee00a2748 Mon Sep 17 00:00:00 2001 From: Jason MacWilliams Date: Thu, 14 Jun 2012 15:43:51 -0300 Subject: [PATCH] updated configurations to save display mode as well and config options, also report a successful save to the user --- ObjectDetails.inc | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/ObjectDetails.inc b/ObjectDetails.inc index 9ee2d88b..38409615 100644 --- a/ObjectDetails.inc +++ b/ObjectDetails.inc @@ -207,8 +207,10 @@ function fedora_repository_object_details_XSLT_config() { * The user supplied values for the form. */ function fedora_repository_object_details_XSLT_config_submit($form, &$form_state) { + variable_set('islandora_object_details_display_table', 'xslt'); variable_set('islandora_object_details_xslt_sheet', $form_state['values']['xslt']); variable_set('islandora_object_details_xslt_datastream', $form_state['values']['dsid']); + drupal_set_message('Object Details view has been set to XSLT and your configuration has been saved'); } /** @@ -268,5 +270,7 @@ function fedora_repository_object_details_table_config() { * The user supplied values for the form. */ function fedora_repository_object_details_table_config_submit($form, &$form_state) { + variable_set('islandora_object_details_display_table', 'table'); variable_set('islandora_object_details_table_datastream', $form_state['values']['dsid']); + drupal_set_message('Object Details view has been set to Table and your configuration has been saved'); }