Bug 12176: Remove HTML from additem.pl
[koha.git] / C4 / External / Amazon.pm
blobb2d4bb440f6e30b9611ca13251e8f5010e2faa1d
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
8 # under the terms of the GNU General Public License as published by
9 # the Free Software Foundation; either version 3 of the License, or
10 # (at your option) any later version.
12 # Koha is distributed in the hope that it will be useful, but
13 # WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 # GNU General Public License for more details.
17 # You should have received a copy of the GNU General Public License
18 # along with Koha; if not, see <http://www.gnu.org/licenses>.
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