From b508dfdaf72ac19be2ed9d668af3ed128b6e6635 Mon Sep 17 00:00:00 2001 From: Tomas Cohen Arazi Date: Fri, 22 Mar 2024 13:06:29 +0000 Subject: [PATCH] Bug 35536: (follow-up) Add missing koha_object(s)_class definitions Signed-off-by: Tomas Cohen Arazi --- Koha/Schema/Result/PluginData.pm | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/Koha/Schema/Result/PluginData.pm b/Koha/Schema/Result/PluginData.pm index f40a2f6f4a7..1df0f8e0143 100644 --- a/Koha/Schema/Result/PluginData.pm +++ b/Koha/Schema/Result/PluginData.pm @@ -70,5 +70,11 @@ __PACKAGE__->set_primary_key("plugin_class", "plugin_key"); # DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:g4MbnMszG6BGSG0vHxWQig -# You can replace this text with custom content, and it will be preserved on regeneration +sub koha_objects_class { + 'Koha::Plugins::Datas'; +} +sub koha_object_class { + 'Koha::Plugins::Data'; +} + 1; -- 2.44.0