kivitendo/SL/Template/PlainText.pm @ 79b7fc43
0fba3edd | Moritz Bunkus | package SL::Template::PlainText;
|
||
439e45e4 | Moritz Bunkus | use parent qw(SL::Template::LaTeX);
|
||
0fba3edd | Moritz Bunkus | |||
use strict;
|
||||
sub new {
|
||||
my $type = shift;
|
||||
return $type->SUPER::new(@_);
|
||||
}
|
||||
sub format_string {
|
||||
my ($self, $variable) = @_;
|
||||
return $variable;
|
||||
}
|
||||
sub get_mime_type {
|
||||
return "text/plain";
|
||||
}
|
||||
sub parse {
|
||||
}
|
||||
1;
|