From: Bill Erickson Date: Mon, 2 Apr 2012 21:15:25 +0000 (-0400) Subject: Add ui.hide_copy_editor_fields to baseline seed data X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=7920d760358dd0201a7ca2234710f68a602775f4;p=evergreen%2Fpines.git Add ui.hide_copy_editor_fields to baseline seed data Without it, the "Hide Fields" option in the copy editor will not function. Signed-off-by: Bill Erickson Signed-off-by: Jason Etheridge --- diff --git a/Open-ILS/src/sql/Pg/950.data.seed-values.sql b/Open-ILS/src/sql/Pg/950.data.seed-values.sql index 2d3c8ec59b..39d90b7026 100644 --- a/Open-ILS/src/sql/Pg/950.data.seed-values.sql +++ b/Open-ILS/src/sql/Pg/950.data.seed-values.sql @@ -11553,3 +11553,26 @@ INSERT INTO config.global_flag (name, enabled, label) 'label' ) ); + +INSERT INTO config.org_unit_setting_type ( name, label, description, datatype, grp ) + VALUES ( + 'ui.hide_copy_editor_fields', + oils_i18n_gettext( + 'ui.hide_copy_editor_fields', + 'GUI: Hide these fields within the Item Attribute Editor', + 'coust', + 'label' + ), + oils_i18n_gettext( + 'ui.hide_copy_editor_fields', + 'This setting may be best maintained with the dedicated configuration' + || ' interface within the Item Attribute Editor. However, here it' + || ' shows up as comma separated list of field identifiers to hide.', + 'coust', + 'description' + ), + 'array', + 'gui' + ); + +