| 1 |
<?php |
| 2 |
/** |
| 3 |
* Created on: 2024-05-26 |
| 4 |
* Updated on: 2022-02-10 |
| 5 |
*/ |
| 6 |
|
| 7 |
// Constante pour gérer certaines facettes |
| 8 |
define('wphal_delimiter', '_FacetSep_'); |
| 9 |
define('wphal_delimiter_join', '_JoinSep_'); |
| 10 |
|
| 11 |
// Constante pour l'API |
| 12 |
define('wphal_api', 'https://api.hal.science/search/hal/'); |
| 13 |
|
| 14 |
// Constante pour le référentiel des auteurs |
| 15 |
define('wphal_urlauthor', 'https://api.hal.science/ref/author/'); |
| 16 |
|
| 17 |
// Constante pour le CV d'un auteur ayant un IdHAL |
| 18 |
define('cvhal', 'https://cv.hal.science/'); |
| 19 |
|
| 20 |
// Constante pour la rédirection vers l'onglet Recherche de HAL |
| 21 |
define('halv3', 'https://hal.science/search/index/'); |
| 22 |
|
| 23 |
// Constante pour la rédirection vers la page d'accueil de HAL |
| 24 |
define('wphal_site', 'https://hal.science/'); |
| 25 |
|
| 26 |
// Constante pour le tri par date |
| 27 |
define('wphal_producedDateY', urlencode('producedDate_tdate desc')); |
| 28 |
|
| 29 |
// Constante de langue |
| 30 |
define('wphal_locale', get_locale()); |
| 31 |
|
| 32 |
// Constante de version du plugin |
| 33 |
define('wphal_version', '2.7,2'); |
| 34 |
|