This repository has been archived on 2023-08-16. You can view files and clone it, but cannot push or open issues or pull requests.
Foodloop-Server/lib/Pear/LocalLoop/Plugin/TemplateHelpers.pm
2021-03-20 23:26:52 +00:00

22 lines
467 B
Perl

package Pear::LocalLoop::Plugin::TemplateHelpers;
use Mojo::Base 'Mojolicious::Plugin';
sub register {
my ( $plugin, $app, $conf ) = @_;
$app->helper(
truncate_text => sub {
my ( $c, $string, $length ) = @_;
if ( length $string < $length ) {
return $string;
}
else {
return substr( $string, 0, $length - 3 ) . '...';
}
}
);
return 1;
}
1;