From 7964f8edfbc8b94076fff349d155c1fb00077c66 Mon Sep 17 00:00:00 2001 From: Moritz Bunkus Date: Fri, 13 Feb 2015 11:37:08 +0100 Subject: [PATCH] DateTime-Helfer: neue Funktion now_local --- SL/Helper/DateTime.pm | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/SL/Helper/DateTime.pm b/SL/Helper/DateTime.pm index c79dad1b8..138a8f3f4 100644 --- a/SL/Helper/DateTime.pm +++ b/SL/Helper/DateTime.pm @@ -4,6 +4,11 @@ use strict; use SL::Util qw(_hashify); +sub new_local { + my ($class, %params) = @_; + return $class->new(hour => 0, minute => 0, second => 0, time_zone => $::locale->get_local_time_zone, %params); +} + sub now_local { return shift->now(time_zone => $::locale->get_local_time_zone); } @@ -86,6 +91,11 @@ SL::Helpers::DateTime - helper functions for L =over 4 +=item C + +Returns the time given in C<%params> with the time zone set to the +local time zone. + =item C Returns the current time with the time zone set to the local time zone. -- 2.20.1