»System« → »Vorlagen« → »Stilvorlage« entfernt
[kivitendo-erp.git] / SL / Presenter / Text.pm
index bcae2f9..af37323 100644 (file)
@@ -5,19 +5,14 @@ use strict;
 use parent qw(Exporter);
 
 use Exporter qw(import);
-our @EXPORT = qw(simple_format truncate);
+our @EXPORT = qw(format_man_days simple_format truncate);
 
 use Carp;
 
 sub truncate {
   my ($self, $text, %params) = @_;
 
-  $params{at}             ||= 50;
-  $params{at}               =  3 if 3 > $params{at};
-  $params{at}              -= 3;
-
-  return $text if length($text) < $params{at};
-  return substr($text, 0, $params{at}) . '...';
+  return Common::truncate($text, %params);
 }
 
 sub simple_format {
@@ -32,6 +27,21 @@ sub simple_format {
   return '<p>' . $text;
 }
 
+sub format_man_days {
+  my ($self, $value, %params) = @_;
+
+  return '---' if $params{skip_zero} && !$value;
+
+  return $self->escape($::locale->text('#1 h', $::form->format_amount(\%::myconfig, $value, 2))) if 8.0 > $value;
+
+  $value     /= 8.0;
+  my $output  = $::locale->text('#1 MD', int($value));
+  my $rest    = ($value - int($value)) * 8.0;
+  $output    .= ' ' . $::locale->text('#1 h', $::form->format_amount(\%::myconfig, $rest)) if $rest > 0.0;
+
+  return $self->escape($output);
+}
+
 1;
 __END__
 
@@ -53,15 +63,20 @@ SL::Presenter::Text - Presenter module for assorted text helpers
 
 =over 4
 
-=item C<truncate $text, [%params]>
+=item C<format_man_days $value, [%params]>
 
-Returns the C<$text> truncated after a certain number of
-characters.
+C<$value> is interpreted to mean a number of hours (for C<$value> < 8)
+/ man days (if >= 8). Returns a translated, human-readable version of
+it, e.g. C<2 PT 2 h> for the value C<18> and German.
+
+If the parameter C<skip_zero> is trueish then C<---> is returned
+instead of the normal formatting if C<$value> equals 0.
 
-The number of characters to truncate at is determined by the parameter
-C<at> which defaults to 50. If the text is longer than C<$params{at}>
-then it will be truncated and postfixed with '...'. Otherwise it will
-be returned unmodified.
+=item C<truncate $text, %params>
+
+Returns the C<$text> truncated after a certain number of
+characters. See L<Common/truncate> for the actual implementation and
+supported parameters.
 
 =item C<simple_format $text>