Bugzilla – Attachment 150391 Details for
Bug 33242
Allow passing things like add_days => 3 to KohaDates filter
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 33242: Allow passing add_{duration} options to KohaDates
Bug-33242-Allow-passing-addduration-options-to-Koh.patch (text/plain), 2.30 KB, created by
Kyle M Hall (khall)
on 2023-04-28 15:50:34 UTC
(
hide
)
Description:
Bug 33242: Allow passing add_{duration} options to KohaDates
Filename:
MIME Type:
Creator:
Kyle M Hall (khall)
Created:
2023-04-28 15:50:34 UTC
Size:
2.30 KB
patch
obsolete
>From 85320ccfb0dc4c1ac9ee60bbaca2750b1025bb05 Mon Sep 17 00:00:00 2001 >From: Marcel de Rooy <m.de.rooy@rijksmuseum.nl> >Date: Thu, 16 Mar 2023 09:53:20 +0100 >Subject: [PATCH] Bug 33242: Allow passing add_{duration} options to KohaDates > >For example, if I want to add a few days to the issuedate in a >TT template, I could do this: > [% checkout.issuedate | $KohaDates add_days => 3 %] > >This development allows you to pass add/subtract years, months, weeks, >days, hours, minutes and seconds. > >Test plan: >Pick a notice like CHECKOUT. >Add a line like: > [% checkout.date_due | $KohaDates with_hours => 1, add_minutes => 15 %] >Do a checkout. Verify that the notice generated contains a time that >shifted 15 minutes. >Undo your change. > >Signed-off-by: Marcel de Rooy <m.de.rooy@rijksmuseum.nl> >Signed-off-by: Nick Clemens <nick@bywatersolutions.com> > >Signed-off-by: Kyle M Hall <kyle@bywatersolutions.com> >--- > Koha/Template/Plugin/KohaDates.pm | 15 +++++++++++++++ > 1 file changed, 15 insertions(+) > >diff --git a/Koha/Template/Plugin/KohaDates.pm b/Koha/Template/Plugin/KohaDates.pm >index 783833f7df..a5a48b6c92 100644 >--- a/Koha/Template/Plugin/KohaDates.pm >+++ b/Koha/Template/Plugin/KohaDates.pm >@@ -32,12 +32,27 @@ sub filter { > $config->{with_hours} //= 0; > > my $dt = dt_from_string( $text, 'iso' ); >+ $dt->add( %$_ ) for _parse_config_for_durations($config); # Allow date add/subtract; see _parse_config_for_durations > > return $config->{as_due_date} ? > output_pref({ dt => $dt, as_due_date => 1, dateformat => $config->{dateformat} }) : > output_pref({ dt => $dt, dateonly => !$config->{with_hours}, dateformat => $config->{dateformat} }); > } > >+sub _parse_config_for_durations { >+# Supports passing things like add_years => 1 or subtract_years => 1 >+# Same for months, weeks, days, hours, minutes or seconds >+# Returns a list of hashrefs like { years => 1 }, { days => -1 } that can be passed to dt->add >+ my $config = shift; >+ my @results; >+ foreach my $entry ( keys %$config ) { >+ if( $entry =~ /^(add|subtract)_(years|months|weeks|days|hours|minutes|seconds)$/ ) { >+ push @results, { $2 => ( $1 eq 'add' ? 1 : -1 ) * $config->{$entry} }; >+ } >+ } >+ return @results; >+} >+ > sub output_preference { > my ( $self, @params ) = @_; > return output_pref( @params ); >-- >2.30.2
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 33242
:
148256
|
148257
|
148261
|
148262
|
148264
|
148265
|
150390
| 150391 |
150392