Revision b9894fd0
Von Sven Schöling vor etwa 13 Jahren hinzugefügt
SL/Template/Plugin/L.pm | ||
---|---|---|
4 | 4 |
use Template::Plugin; |
5 | 5 |
use List::MoreUtils qw(apply); |
6 | 6 |
use List::Util qw(max); |
7 |
use Scalar::Util qw(blessed); |
|
7 | 8 |
|
8 | 9 |
use strict; |
9 | 10 |
|
... | ... | |
273 | 274 |
|
274 | 275 |
$params{cal_align} ||= 'BR'; |
275 | 276 |
|
276 |
$self->input_tag($name, $value, |
|
277 |
my $str_value = blessed $value ? $value->to_lxoffice : $value; |
|
278 |
|
|
279 |
$self->input_tag($name, $str_value, |
|
277 | 280 |
id => $name_e, |
278 | 281 |
size => 11, |
279 | 282 |
title => _H($::myconfig{dateformat}), |
Auch abrufbar als: Unified diff
L.date_tag kann jetzt auch mit DateTime objekten umgehen