epic-s6ts
[kivitendo-erp.git] / SL / Template / PlainText.pm
1 package SL::Template::PlainText;
2
3 use parent qw(SL::Template::LaTeX);
4
5 use strict;
6
7 sub new {
8   my $type = shift;
9
10   return $type->SUPER::new(@_);
11 }
12
13 sub format_string {
14   my ($self, $variable) = @_;
15
16   return $variable;
17 }
18
19 sub get_mime_type {
20   return "text/plain";
21 }
22
23 sub parse {
24 }
25
26 1;