Bug 21403: Add Indian Amazon Affiliate option to AmazonLocale setting
This patch adds an "IN" option to the AmazonLocale setting, allowing Indian libraries to use their Amazon Affiliate ID in Koha's links to Amazon. To test, apply the patch and run updatedatabase. - Go to Administration -> System preferences -> Enhanced content. - Enable the OPACAmazonCoverImages preference. - Enter a dummy ID in the AmazonAssocTag preference. - Confirm that you can select "Indian" for the AmazonLocale preference. - Select "Indian" and save. - Open a record in the OPAC and confirm that the cover image links to Amazon.in and includes the ID you entered in AmazonAssocTag. - Do the same with a record in the staff client. Signed-off-by: Pierre-Marc Thibault <pierre-marc.thibault@inLibro.com> Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org> Signed-off-by: Nick Clemens <nick@bywatersolutions.com>
This commit is contained in:
parent
15670cd590
commit
d1bf2238c4
4 changed files with 4 additions and 1 deletions
1
C4/External/Amazon.pm
vendored
1
C4/External/Amazon.pm
vendored
|
@ -37,6 +37,7 @@ sub get_amazon_tld {
|
|||
CA => '.ca',
|
||||
DE => '.de',
|
||||
FR => '.fr',
|
||||
IN => '.in',
|
||||
JP => '.jp',
|
||||
UK => '.co.uk',
|
||||
US => '.com',
|
||||
|
|
|
@ -0,0 +1 @@
|
|||
UPDATE `systempreferences` SET options = 'US|CA|DE|FR|IN|JP|UK' WHERE variable = 'AmazonLocale';
|
|
@ -44,7 +44,7 @@ INSERT INTO systempreferences ( `variable`, `value`, `options`, `explanation`, `
|
|||
('AlternateHoldingsSeparator','',NULL,'The string to use to separate subfields in alternate holdings displays.','free'),
|
||||
('AmazonAssocTag','','','See: http://aws.amazon.com','free'),
|
||||
('AmazonCoverImages','0','','Display Cover Images in Staff Client from Amazon Web Services','YesNo'),
|
||||
('AmazonLocale','US','US|CA|DE|FR|JP|UK','Use to set the Locale of your Amazon.com Web Services','Choice'),
|
||||
('AmazonLocale','US','US|CA|DE|FR|IN|JP|UK','Use to set the Locale of your Amazon.com Web Services','Choice'),
|
||||
('AnonSuggestions','0',NULL,'Set to enable Anonymous suggestions to AnonymousPatron borrowernumber','YesNo'),
|
||||
('AnonymousPatron','0',NULL,'Set the identifier (borrowernumber) of the anonymous patron. Used for Suggestion and reading history privacy',''),
|
||||
('ArticleRequests', '0', NULL, 'Enables the article request feature', 'YesNo'),
|
||||
|
|
|
@ -25,6 +25,7 @@ Enhanced Content:
|
|||
CA: Canadian
|
||||
DE: German
|
||||
FR: French
|
||||
IN: Indian
|
||||
JP: Japanese
|
||||
UK: British
|
||||
- website.
|
||||
|
|
Loading…
Reference in a new issue