Projekt

Allgemein

Profil

« Zurück | Weiter » 

Revision 3edbebcc

Von Moritz Bunkus vor mehr als 18 Jahren hinzugefügt

  • ID 3edbebcca44b30651a2474d6b5735ebbd7113b28
  • Vorgänger 08882e8c
  • Nachfolger acc2b53b

Funktion in Locale implementiert, um ein Datum in einem anderen Format auszugeben.

Unterschiede anzeigen:

SL/Form.pm
return ($yy, $mm, $dd);
}
sub reformat_date {
$main::lxdebug->enter_sub();
my ($self, $myconfig, $date, $output_format, $longformat) = @_;
$main::lxdebug->leave_sub() and return "" unless ($date);
my ($yy, $mm, $dd) = $self->parse_date($myconfig, $date);
$output_format =~ /d+/;
substr($output_format, $-[0], $+[0] - $-[0]) =
sprintf("%0" . (length($&)) . "d", $dd);
$output_format =~ /m+/;
substr($output_format, $-[0], $+[0] - $-[0]) =
sprintf("%0" . (length($&)) . "d", $mm);
$output_format =~ /y+/;
if (length($&) == 2) {
$yy -= $yy >= 2000 ? 2000 : 1900;
}
substr($output_format, $-[0], $+[0] - $-[0]) =
sprintf("%0" . (length($&)) . "d", $yy);
$main::lxdebug->leave_sub();
return $output_format;
}
1;

Auch abrufbar als: Unified diff