|
Lines 28-43
use Koha::Plugins;
Link Here
|
| 28 |
|
28 |
|
| 29 |
=head1 NAME |
29 |
=head1 NAME |
| 30 |
|
30 |
|
| 31 |
Koha::Illrequest::TypeDisclaimer - Koha ILL TypeDisclaimer |
31 |
Koha::Illrequest::Workflow - Koha ILL Workflow parent class |
| 32 |
|
32 |
|
| 33 |
=head1 SYNOPSIS |
33 |
=head1 SYNOPSIS |
| 34 |
|
34 |
|
| 35 |
Object-oriented class that provides the ILL request type disclaimer |
35 |
Object-oriented parent class for ILL workflow stages |
| 36 |
|
36 |
|
| 37 |
=head1 DESCRIPTION |
37 |
=head1 DESCRIPTION |
| 38 |
|
38 |
|
| 39 |
This class provides the ability to verify if it should render type disclaimer |
39 |
This class contains methods do be used by ILL workflow stages |
| 40 |
and handle the template params accordingly |
|
|
| 41 |
|
40 |
|
| 42 |
=head1 API |
41 |
=head1 API |
| 43 |
|
42 |
|
|
Lines 45-54
and handle the template params accordingly
Link Here
|
| 45 |
|
44 |
|
| 46 |
=head3 new |
45 |
=head3 new |
| 47 |
|
46 |
|
| 48 |
my $type_disclaimer = Koha::Illrequest::Logger->new($metadata); |
47 |
my $availability = Koha::Illrequest::Workflow::Availability->new( $params, 'opac' ) |
| 49 |
|
48 |
|
| 50 |
Create a new Koha::Illrequest::TypeDisclaimer object. |
49 |
Create a new Koha::Illrequest::Workflow child class object. |
| 51 |
We also store the metadata to be used to retrieve the request type |
50 |
We store the metadata and ui_context |
| 52 |
|
51 |
|
| 53 |
=cut |
52 |
=cut |
| 54 |
|
53 |
|
| 55 |
- |
|
|