Bug 12435 - Update MARC21 frameworks to Update No. 18 (April 2014)
[koha.git] / C4 / External / Amazon.pm
blob1e70f113529878bac353b511e98e85e8416e242e
1 package C4::External::Amazon;
2 # Copyright (C) 2006 LibLime
3 # <jmf at liblime dot com>
5 # This file is part of Koha.
7 # Koha is free software; you can redistribute it and/or modify it under the
8 # terms of the GNU General Public License as published by the Free Software
9 # Foundation; either version 2 of the License, or (at your option) any later
10 # version.
12 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
13 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
14 # A PARTICULAR PURPOSE. See the GNU General Public License for more details.
16 # You should have received a copy of the GNU General Public License along
17 # with Koha; if not, write to the Free Software Foundation, Inc.,
18 # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
21 use strict;
22 use warnings;
24 use vars qw($VERSION @ISA @EXPORT);
26 BEGIN {
27 require Exporter;
28 $VERSION = 3.07.00.049;
29 @ISA = qw(Exporter);
30 @EXPORT = qw(
31 get_amazon_tld
36 sub get_amazon_tld {
37 my %tld = (
38 CA => '.ca',
39 DE => '.de',
40 FR => '.fr',
41 JP => '.jp',
42 UK => '.co.uk',
43 US => '.com',
46 my $locale = C4::Context->preference('AmazonLocale');
47 my $tld = $tld{ $locale } || '.com'; # default top level domain is .com
48 return $tld;
52 =head1 NAME
54 C4::External::Amazon - Functions for retrieving Amazon.com content in Koha
56 =head2 FUNCTIONS
58 This module provides facilities for retrieving Amazon.com content in Koha
60 =over
62 =item get_amazon_tld()
64 Get Amazon Top Level Domain depending on Amazon local preference: AmazonLocal.
65 For example, if AmazonLocal is 'UK', returns '.co.uk'.
67 =back
69 =cut
72 __END__
74 =head1 NOTES
76 =cut
78 =head1 AUTHOR
80 Joshua Ferraro <jmf@liblime.com>
82 =cut