summaryrefslogtreecommitdiff
path: root/LedgerSMB/Template/TXT.pm
blob: 40d6edb52dedcf41f7f103ae38fb8faf0ec2c710 (plain)
  1. =head1 NAME
  2. LedgerSMB::Template::TXT Template support module for LedgerSMB
  3. =head1 METHODS
  4. =over
  5. =item get_template ($name)
  6. Returns the appropriate template filename for this format.
  7. =item preprocess ($vars)
  8. Returns $vars.
  9. =item process ($parent, $cleanvars)
  10. Processes the template for text.
  11. =item postprocess ($parent)
  12. Returns the output filename.
  13. =back
  14. =head1 Copyright (C) 2007, The LedgerSMB core team.
  15. This work contains copyrighted information from a number of sources all used
  16. with permission.
  17. It is released under the GNU General Public License Version 2 or, at your
  18. option, any later version. See COPYRIGHT file for details. For a full list
  19. including contact information of contributors, maintainers, and copyright
  20. holders, see the CONTRIBUTORS file.
  21. =cut
  22. package LedgerSMB::Template::TXT;
  23. use Error qw(:try);
  24. use Template;
  25. sub get_template {
  26. my $name = shift;
  27. return "${name}.txt";
  28. }
  29. sub preprocess {
  30. my $rawvars = shift;
  31. return $rawvars;
  32. }
  33. sub process {
  34. my $parent = shift;
  35. my $cleanvars = shift;
  36. my $template;
  37. $template = Template->new({
  38. INCLUDE_PATH => $parent->{include_path},
  39. START_TAG => quotemeta('<?lsmb'),
  40. END_TAG => quotemeta('?>'),
  41. DELIMITER => ';',
  42. }) || throw Error::Simple Template->error();
  43. if (not $template->process(
  44. get_template($parent->{template}),
  45. $cleanvars, "$parent->{outputfile}.txt", binmode => ':utf8')) {
  46. throw Error::Simple $template->error();
  47. }
  48. $parent->{mimetype} = 'text/plain';
  49. }
  50. sub postprocess {
  51. my $parent = shift;
  52. $parent->{rendered} = "$parent->{outputfile}.txt";
  53. return "$parent->{outputfile}.txt";
  54. }
  55. 1;