Bug 16011: $VERSION - Remove the $VERSION init
[koha.git] / C4 / External / Amazon.pm
1 package C4::External::Amazon;
2 # Copyright (C) 2006 LibLime
3 # <jmf at liblime dot com>
4 #
5 # This file is part of Koha.
6 #
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.
11 #
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.
16 #
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>.
19
20
21 use strict;
22 use warnings;
23
24 use vars qw(@ISA @EXPORT);
25
26 BEGIN {
27     require Exporter;
28     @ISA = qw(Exporter);
29     @EXPORT = qw(
30         get_amazon_tld
31     );
32 }
33
34
35 sub get_amazon_tld {
36     my %tld = (
37         CA => '.ca',
38         DE => '.de',
39         FR => '.fr',
40         JP => '.jp',
41         UK => '.co.uk',
42         US => '.com',
43     );
44
45     my $locale = C4::Context->preference('AmazonLocale');
46     my $tld = $tld{ $locale } || '.com'; # default top level domain is .com
47     return $tld;
48 }
49
50
51 =head1 NAME
52
53 C4::External::Amazon - Functions for retrieving Amazon.com content in Koha
54
55 =head2 FUNCTIONS
56
57 This module provides facilities for retrieving Amazon.com content in Koha
58
59 =over
60
61 =item get_amazon_tld()
62
63 Get Amazon Top Level Domain depending on Amazon local preference: AmazonLocal.
64 For example, if AmazonLocal is 'UK', returns '.co.uk'.
65
66 =back
67
68 =cut
69
70 1;
71 __END__
72
73 =head1 NOTES
74
75 =cut
76
77 =head1 AUTHOR
78
79 Joshua Ferraro <jmf@liblime.com>
80
81 =cut