Difference between revisions of "MultiLang Fields Bazaar Package"

From EPrints Documentation
Jump to: navigation, search
Line 1: Line 1:
 
[[Category:EPrints 3 Plugins]]
 
[[Category:EPrints 3 Plugins]]
  
The MultiLang plugins introduces multiple language support in EPrints fields. The specific plugin replaces '''title''' and '''abstract''' fields with their multilanguage version ('''ml_title''' and '''ml_abstract''' respectively). The wiki-page explaining how one can add custom multilang-fields in EPrints -which basically explains how this plugin was created- is [[Adding multilang fields]].  
+
The MultiLang plugins introduces multiple language support in EPrints fields. The specific plugin replaces the '''title''' and '''abstract''' fields with their multilingual version ('''ml_title''' and '''ml_abstract''' respectively). The wiki-page that explains how one can add custom multilang-fields in EPrints -which basically explains how this plugin was created- is [[Adding multilang fields]].  
  
 
== Installation Prerequisites ==
 
== Installation Prerequisites ==
None
+
None.
  
 
== Installation ==
 
== Installation ==
  
Install through the EPrints Bazaar
+
Install through the EPrints Bazaar.
  
 
== How to use the plugin ==
 
== How to use the plugin ==

Revision as of 12:36, 6 June 2016


The MultiLang plugins introduces multiple language support in EPrints fields. The specific plugin replaces the title and abstract fields with their multilingual version (ml_title and ml_abstract respectively). The wiki-page that explains how one can add custom multilang-fields in EPrints -which basically explains how this plugin was created- is Adding multilang fields.

Installation Prerequisites

None.

Installation

Install through the EPrints Bazaar.

How to use the plugin

Once the plugin has been installed, the user needs to edit the workflow to contain the multilingual fields' versions instead of the default ones. This procedure is explained in MultiLang Fields Bazaar Package#How_the_plugin_works section.


Editing the workflow

In order for the plugin to be usable, the default field versions need to be commented out and the new multilingual ones need to be added. So, ~eprints/archives/reponame/cfg/workflows/eprint/default.xml has to be edited as follows:

<!--    
    <component><field ref="title" required="yes" input_lookup_url="{$config{rel_cgipath}}/users/lookup/title_duplicates" input_lookup_params="id={eprintid}&amp;dataset=eprint&amp;field=title" /></component>
    <component><field ref="abstract"/></component>
-->

    <component><field ref="ml_title" required="yes" input_lookup_url="{$config{rel_cgipath}}/users/lookup/<component><field ref="abstract"/></component> -->" input_lookup_params="id={eprintid}&amp;dataset=eprint&amp;field=ml_title"/></component>  
    <component><field ref="ml_abstract"/></component>

As can be seen, the default lookup script is replaced by the plugin's lookup script which supports our new ml_fields (ml_title_duplicates).