|
Lines 19-32
use Modern::Perl;
Link Here
|
| 19 |
|
19 |
|
| 20 |
use C4::Koha qw( getitemtypeimagelocation ); |
20 |
use C4::Koha qw( getitemtypeimagelocation ); |
| 21 |
use C4::Languages; |
21 |
use C4::Languages; |
| 22 |
use Koha::Caches; |
|
|
| 23 |
use Koha::Database; |
22 |
use Koha::Database; |
| 24 |
use Koha::CirculationRules; |
23 |
use Koha::CirculationRules; |
| 25 |
|
24 |
|
| 26 |
use base qw(Koha::Object Koha::Object::Limit::Library); |
25 |
use base qw(Koha::Object Koha::Object::Limit::Library); |
| 27 |
|
26 |
|
| 28 |
my $cache = Koha::Caches->get_instance(); |
|
|
| 29 |
|
| 30 |
=head1 NAME |
27 |
=head1 NAME |
| 31 |
|
28 |
|
| 32 |
Koha::ItemType - Koha Item type Object class |
29 |
Koha::ItemType - Koha Item type Object class |
| 33 |
- |
|
|