Bugzilla – Attachment 179986 Details for
Bug 39488
Update Koha::Object(s) to allow for polymorphic classing
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 39488: Add template for required polymorphic class methods
Bug-39488-Add-template-for-required-polymorphic-cl.patch (text/plain), 1.38 KB, created by
Martin Renvoize (ashimema)
on 2025-03-31 12:15:12 UTC
(
hide
)
Description:
Bug 39488: Add template for required polymorphic class methods
Filename:
MIME Type:
Creator:
Martin Renvoize (ashimema)
Created:
2025-03-31 12:15:12 UTC
Size:
1.38 KB
patch
obsolete
>From d94c5714a03c0de73bd96038197e6cb414fd8572 Mon Sep 17 00:00:00 2001 >From: Martin Renvoize <martin.renvoize@openfifth.co.uk> >Date: Mon, 31 Mar 2025 12:09:55 +0200 >Subject: [PATCH] Bug 39488: Add template for required polymorphic class > methods > >--- > Koha/Objects.pm | 29 +++++++++++++++++++++++++++++ > 1 file changed, 29 insertions(+) > >diff --git a/Koha/Objects.pm b/Koha/Objects.pm >index 21b16d020bf..2774ce711f2 100644 >--- a/Koha/Objects.pm >+++ b/Koha/Objects.pm >@@ -598,6 +598,35 @@ For example, for holds, _type should return 'Reserve'. > > sub _type { } > >+=head3 _polymorphic_field >+ >+ sub _polymorphic_field { >+ return 'transport'; >+ } >+The _polymorphic_field method must be set for all child classes that implement >+their own polymorphic children. >+ >+It should return the field name that distinguishes the classes. >+ >+=cut >+ >+=head3 _polymorphic_map >+ >+ sub _polymorphic_map { >+ return { >+ sftp => 'Koha::File::Transport::SFTP', >+ ftp => 'Koha::File::Transport::FTP', >+ }; >+ } >+ >+The _polymorphic_map method must be implemented by all child classes that implement >+their own polymorphic children. >+ >+It should return a simple hashmap mapping for field value to class name for the >+polymorphic class using the value from the _polymorphic_field defined above. >+ >+=cut >+ > =head3 object_class > > This method must be set for all child classes. >-- >2.49.0
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
|
Splinter Review
Attachments on
bug 39488
:
179985
| 179986 |
179987
|
180189