Bug 23051: (follow-up) Add renewal feedback and move code to subroutines and test
[koha.git] / Koha / XSLT_Handler.pm
1 package Koha::XSLT_Handler;
2 # This is just a stub; will be removed later on
3 use Modern::Perl;
4 use base qw(Koha::XSLT::Base);
5 use constant XSLTH_ERR_1    => 'XSLTH_ERR_NO_FILE';
6 use constant XSLTH_ERR_2    => 'XSLTH_ERR_FILE_NOT_FOUND';
7 use constant XSLTH_ERR_3    => 'XSLTH_ERR_LOADING';
8 use constant XSLTH_ERR_4    => 'XSLTH_ERR_PARSING_CODE';
9 use constant XSLTH_ERR_5    => 'XSLTH_ERR_PARSING_DATA';
10 use constant XSLTH_ERR_6    => 'XSLTH_ERR_TRANSFORMING';
11 use constant XSLTH_ERR_7    => 'XSLTH_NO_STRING_PASSED';
12 1;