| @@ -1,32 +1,34 @@ | ||
| 1 | 1 | <?php |
| 2 | 2 | /** |
| 3 | - * Created on: 26/05/14 | |
| 4 | - * Updated on: 15/11/22 | |
| 3 | + * Created by PhpStorm. | |
| 4 | + * User: baptiste | |
| 5 | + * Date: 26/05/14 | |
| 6 | + * Time: 10:10 | |
| 5 | 7 | */ |
| 6 | 8 | |
| 7 | -// Constante pour gérer certaines facettes | |
| 8 | -define('wphal_delimiter', '_FacetSep_'); | |
| 9 | +// Constante pour gérer certaines facet | |
| 10 | +define('delimiter', '_FacetSep_'); | |
| 9 | 11 | |
| 10 | -// Constante pour l'API | |
| 11 | -define('wphal_api', 'https://api.archives-ouvertes.fr/search/hal/'); | |
| 12 | +// Constante pour l'api utilisé | |
| 13 | +define('api', 'http://api.archives-ouvertes.fr/search/hal/'); | |
| 12 | 14 | |
| 13 | -// Constante pour le référentiel des auteurs | |
| 14 | -define('wphal_urlauthor', 'https://api.archives-ouvertes.fr/ref/author/'); | |
| 15 | +// Constante pour le webservice des autheurs utilisé | |
| 16 | +define('urlauthor', 'http://api.archives-ouvertes.fr/ref/author/'); | |
| 15 | 17 | |
| 16 | -// Constante pour le CV d'un auteur ayant un IdHAL | |
| 17 | -define('cvhal', 'https://cv.archives-ouvertes.fr/'); | |
| 18 | +// Constante pour le CV HAL d'un auteur ayant un IdHAl | |
| 19 | +define('cvhal', 'http://cv.archives-ouvertes.fr/'); | |
| 18 | 20 | |
| 19 | -// Constante pour la rédirection vers l'onglet Recherche de HAL | |
| 21 | +// Constante pour la redirection vers le site halv3 onglet recherche | |
| 20 | 22 | define('halv3', 'https://hal.archives-ouvertes.fr/search/index/'); |
| 21 | 23 | |
| 22 | -// Constante pour la rédirection vers la page d'accueil de HAL | |
| 23 | -define('wphal_site', 'https://hal.archives-ouvertes.fr/'); | |
| 24 | +// Constante pour la redirection vers le site halv3 onglet accueil | |
| 25 | +define('site', 'https://hal.archives-ouvertes.fr/'); | |
| 24 | 26 | |
| 25 | 27 | // Constante pour le tri par date |
| 26 | -define('wphal_producedDateY', urlencode('producedDate_tdate desc')); | |
| 28 | +define('producedDateY', urlencode('producedDateY_i desc')); | |
| 27 | 29 | |
| 28 | 30 | // Constante de langue |
| 29 | -define('wphal_locale', get_locale()); | |
| 31 | +define('locale', get_locale()); | |
| 30 | 32 | |
| 31 | -// Constante de version du plugin | |
| 32 | -define('wphal_version', '2.4'); | |
| 33 | +// Constante de Version USERAGENT | |
| 34 | +define('version', '2.0'); | |