Bug 13969: Replace calls to $sth->fetchrow* with a call to $dbh->selectrow* and Clean...
[koha.git] / C4 / ItemType.pm
1 package C4::ItemType;
2
3 # Copyright Liblime 2009
4 # Parts Copyright Tamil 2011
5 #
6 # This file is part of Koha.
7 #
8 # Koha is free software; you can redistribute it and/or modify it
9 # under the terms of the GNU General Public License as published by
10 # the Free Software Foundation; either version 3 of the License, or
11 # (at your option) any later version.
12 #
13 # Koha is distributed in the hope that it will be useful, but
14 # WITHOUT ANY WARRANTY; without even the implied warranty of
15 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 # GNU General Public License for more details.
17 #
18 # You should have received a copy of the GNU General Public License
19 # along with Koha; if not, see <http://www.gnu.org/licenses>.
20
21 use strict;
22 use warnings;
23 use C4::Context;
24 use Encode qw( encode );
25
26 our $AUTOLOAD;
27
28
29
30
31 =head1 NAME
32
33 C4::ItemType - objects from the itemtypes table
34
35 =head1 SYNOPSIS
36
37     use C4::ItemType;
38     my @itemtypes = C4::ItemType->all;
39     print join("\n", map { $_->description } @itemtypes), "\n";
40
41 =head1 DESCRIPTION
42
43 Objects of this class represent a row in the C<itemtypes> table.
44
45 Currently, the bare minimum for using this as a read-only data source has
46 been implemented.  The API was designed to make it easy to transition to
47 an ORM later on.
48
49 =head1 API
50
51 =head2 Class Methods
52
53 =cut
54
55 =head3 C4::ItemType->new(\%opts)
56
57 Given a hashref, a new (in-memory) C4::ItemType object will be instantiated.
58 The database is not touched.
59
60 =cut
61
62 sub new {
63     my ($class, $opts) = @_;
64     bless $opts => $class;
65 }
66
67
68
69
70 =head3 C4::ItemType->all
71
72 This returns all the itemtypes as objects.  By default they're ordered by
73 C<description>.
74
75 =cut
76
77 sub all {
78     my ($class) = @_;
79     my $dbh = C4::Context->dbh;
80
81     my @itypes;
82     for ( @{$dbh->selectall_arrayref(
83         "SELECT * FROM itemtypes ORDER BY description", { Slice => {} })} )
84     {
85         push @itypes, $class->new($_);
86     }
87     return @itypes;
88 }
89
90
91
92
93 =head3 C4::ItemType->get
94
95 Return the itemtype indicated by the itemtype given as argument, as
96 an object.
97
98 =cut
99
100 sub get {
101     my ($class, $itemtype) = @_;
102
103     return unless defined $itemtype;
104
105     my $dbh = C4::Context->dbh;
106
107     my $data = $dbh->selectrow_hashref(
108         "SELECT * FROM itemtypes WHERE itemtype = ?", undef, $itemtype
109     );
110     return $class->new($data);
111 }
112
113
114
115
116 =head2 Object Methods
117
118 These are read-only accessors for attributes of a C4::ItemType object.
119
120 =head3 $itemtype->itemtype
121
122 =cut
123
124 =head3 $itemtype->description
125
126 =cut
127
128 =head3 $itemtype->renewalsallowed
129
130 =cut
131
132 =head3 $itemtype->rentalcharge
133
134 =cut
135
136 =head3 $itemtype->notforloan
137
138 =cut
139
140 =head3 $itemtype->imageurl
141
142 =cut
143
144 =head3 $itemtype->checkinmsg
145
146 =cut
147
148 =head3 $itemtype->summary
149
150 =cut
151
152 sub AUTOLOAD {
153     my $self = shift;
154     my $attr = $AUTOLOAD;
155     $attr =~ s/.*://;
156     if (exists $self->{$attr}) {
157         return $self->{$attr};
158     } else {
159         return undef;
160     }
161 }
162
163 sub DESTROY { }
164
165
166
167 # ack itemtypes | grep '\.pm' | awk '{ print $1 }' | sed 's/:.*$//' | sort | uniq | sed -e 's,/,::,g' -e 's/\.pm//' -e 's/^/L<C4::/' -e 's/$/>,/'
168
169 =head1 SEE ALSO
170
171 The following modules make reference to the C<itemtypes> table.
172
173 L<C4::Biblio>,
174 L<C4::Circulation>,
175 L<C4::Context>,
176 L<C4::Items>,
177 L<C4::Koha>,
178 L<C4::Labels>,
179 L<C4::Overdues>,
180 L<C4::Reserves>,
181 L<C4::Search>,
182 L<C4::VirtualShelves::Page>,
183 L<C4::VirtualShelves>,
184 L<C4::XSLT>
185
186
187
188 =head1 AUTHOR
189
190 John Beppu <john.beppu@liblime.com>
191
192 =cut
193
194 1;