Bug 15072: (followup) fix spaces and consistency
[koha.git] / C4 / ItemType.pm
blob27b5aeae39639fb85ba8e6fdd8878adcaba81e22
1 package C4::ItemType;
3 # Copyright Liblime 2009
4 # Parts Copyright Tamil 2011
6 # This file is part of Koha.
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.
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.
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>.
21 use strict;
22 use warnings;
23 use C4::Context;
24 use C4::Languages;
25 use Encode qw( encode );
27 our $AUTOLOAD;
32 =head1 NAME
34 C4::ItemType - objects from the itemtypes table
36 =head1 SYNOPSIS
38 use C4::ItemType;
39 my @itemtypes = C4::ItemType->all;
40 print join("\n", map { $_->description } @itemtypes), "\n";
42 =head1 DESCRIPTION
44 Objects of this class represent a row in the C<itemtypes> table.
46 Currently, the bare minimum for using this as a read-only data source has
47 been implemented. The API was designed to make it easy to transition to
48 an ORM later on.
50 =head1 API
52 =head2 Class Methods
54 =cut
56 =head3 C4::ItemType->new(\%opts)
58 Given a hashref, a new (in-memory) C4::ItemType object will be instantiated.
59 The database is not touched.
61 =cut
63 sub new {
64 my ($class, $opts) = @_;
65 bless $opts => $class;
71 =head3 C4::ItemType->all
73 This returns all the itemtypes as objects. By default they're ordered by
74 C<description>.
76 =cut
78 sub all {
79 my ($class) = @_;
80 my $dbh = C4::Context->dbh;
82 my $language = C4::Languages::getlanguage();
83 my @itypes;
84 for ( @{$dbh->selectall_arrayref(q|
85 SELECT *,
86 COALESCE( localization.translation, itemtypes.description ) AS translated_description
87 FROM itemtypes
88 LEFT JOIN localization ON itemtypes.itemtype = localization.code
89 AND localization.entity = 'itemtypes'
90 AND localization.lang = ?
91 ORDER BY description
92 |, { Slice => {} }, $language)} )
94 push @itypes, $class->new($_);
96 return @itypes;
102 =head3 C4::ItemType->get
104 Return the itemtype indicated by the itemtype given as argument, as
105 an object.
107 =cut
109 sub get {
110 my ($class, $itemtype) = @_;
112 return unless defined $itemtype;
114 my $dbh = C4::Context->dbh;
116 my $data = $dbh->selectrow_hashref(
117 "SELECT * FROM itemtypes WHERE itemtype = ?", undef, $itemtype
119 return $class->new($data);
125 =head2 Object Methods
127 These are read-only accessors for attributes of a C4::ItemType object.
129 =head3 $itemtype->itemtype
131 =cut
133 =head3 $itemtype->description
135 =cut
137 =head3 $itemtype->renewalsallowed
139 =cut
141 =head3 $itemtype->rentalcharge
143 =cut
145 =head3 $itemtype->notforloan
147 =cut
149 =head3 $itemtype->imageurl
151 =cut
153 =head3 $itemtype->checkinmsg
155 =cut
157 =head3 $itemtype->summary
159 =cut
161 sub AUTOLOAD {
162 my $self = shift;
163 my $attr = $AUTOLOAD;
164 $attr =~ s/.*://;
165 if (exists $self->{$attr}) {
166 return $self->{$attr};
167 } else {
168 return undef;
172 sub DESTROY { }
176 # ack itemtypes | grep '\.pm' | awk '{ print $1 }' | sed 's/:.*$//' | sort | uniq | sed -e 's,/,::,g' -e 's/\.pm//' -e 's/^/L<C4::/' -e 's/$/>,/'
178 =head1 SEE ALSO
180 The following modules make reference to the C<itemtypes> table.
182 L<C4::Biblio>,
183 L<C4::Circulation>,
184 L<C4::Context>,
185 L<C4::Items>,
186 L<C4::Koha>,
187 L<C4::Labels>,
188 L<C4::Overdues>,
189 L<C4::Reserves>,
190 L<C4::Search>,
191 L<C4::VirtualShelves::Page>,
192 L<C4::VirtualShelves>,
193 L<C4::XSLT>
197 =head1 AUTHOR
199 John Beppu <john.beppu@liblime.com>
201 =cut