summaryrefslogtreecommitdiff
path: root/LedgerSMB/Template/TXT.pm
blob: 2d902a394ac39c682c592d2c42cac8603109580d (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. use LedgerSMB::Template::TTI18N;
  26. sub get_template {
  27. my $name = shift;
  28. return "${name}.txt";
  29. }
  30. sub preprocess {
  31. my $rawvars = shift;
  32. return $rawvars;
  33. }
  34. sub process {
  35. my $parent = shift;
  36. my $cleanvars = shift;
  37. my $template;
  38. my $output;
  39. if ($parent->{outputfile}) {
  40. $output = "$parent->{outputfile}.txt";
  41. } else {
  42. $output = \$parent->{output};
  43. }
  44. $template = Template->new({
  45. INCLUDE_PATH => $parent->{include_path},
  46. START_TAG => quotemeta('<?lsmb'),
  47. END_TAG => quotemeta('?>'),
  48. DELIMITER => ';',
  49. DEBUG => ($parent->{debug})? 'dirs': undef,
  50. DEBUG_FORMAT => '',
  51. }) || throw Error::Simple Template->error();
  52. if (not $template->process(
  53. get_template($parent->{template}),
  54. {%$cleanvars, %$LedgerSMB::Template::TTI18N::ttfuncs,
  55. 'escape' => \&preprocess},
  56. $output, binmode => ':utf8')) {
  57. throw Error::Simple $template->error();
  58. }
  59. $parent->{mimetype} = 'text/plain';
  60. }
  61. sub postprocess {
  62. my $parent = shift;
  63. $parent->{rendered} = "$parent->{outputfile}.txt" if $parent->{outputfile};
  64. return $parent->{rendered};
  65. }
  66. 1;