bf807b08134d1794328faae6c247ddef659e3ed1
[koha.git] / Koha / CoverImages.pm
1 package Koha::CoverImages;
2
3 # This file is part of Koha.
4 #
5 # Koha is free software; you can redistribute it and/or modify it
6 # under the terms of the GNU General Public License as published by
7 # the Free Software Foundation; either version 3 of the License, or
8 # (at your option) any later version.
9 #
10 # Koha is distributed in the hope that it will be useful, but
11 # WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 # GNU General Public License for more details.
14 #
15 # You should have received a copy of the GNU General Public License
16 # along with Koha; if not, see <http://www.gnu.org/licenses>.
17
18 use Modern::Perl;
19
20
21 use Koha::Database;
22
23 use Koha::CoverImage;
24
25 use base qw(Koha::Objects);
26
27 =head1 NAME
28
29 Koha::Cities - Koha CoverImage Object set class
30
31 =head1 API
32
33 =head2 Class Methods
34
35 =cut
36
37 =head3 no_image
38
39 Returns the gif to be used when there is no image.
40 Its mimetype is image/gif.
41
42 =cut
43
44 sub no_image {
45     my $no_image = pack( "H*",
46             '47494638396101000100800000FFFFFF'
47           . '00000021F90401000000002C00000000'
48           . '010001000002024401003B' );
49     return Koha::CoverImage->new(
50         {
51             mimetype  => 'image/gif',
52             imagefile => $no_image,
53             thumbnail => $no_image,
54         }
55     );
56 }
57
58 =head3 _type
59
60 =cut
61
62 sub _type {
63     return 'CoverImage';
64 }
65
66 sub object_class {
67     return 'Koha::CoverImage';
68 }
69
70 1;