1436 |
raphael |
1 |
<?php
|
|
|
2 |
/**
|
|
|
3 |
* @author Raphaël Droz <raphael@tela-botanica.org>
|
|
|
4 |
* @author Aurélien PERONNET <aurelien@tela-botanica.org>
|
|
|
5 |
* @copyright Copyright (c) 2013, Tela Botanica (accueil@tela-botanica.org)
|
|
|
6 |
* @license Licence CECILL http://www.cecill.info/licences/Licence_CeCILL_V2-fr.txt
|
|
|
7 |
* @license Licence GNU-GPL http://www.gnu.org/licenses/gpl.html
|
|
|
8 |
* @see http://www.tela-botanica.org/wikini/eflore/wakka.php?wiki=ApiIdentiplante01Images
|
|
|
9 |
*/
|
|
|
10 |
class MotClePictoflora {
|
|
|
11 |
|
|
|
12 |
// cf: images/VotesImage.php
|
|
|
13 |
static function updateStats($db, $id_image) {
|
|
|
14 |
$id_image = intval($id_image);
|
|
|
15 |
if(!$id_image) throw new Exception("Ne peut mettre à jour les statistiques de vote",
|
|
|
16 |
RestServeur::HTTP_CODE_ERREUR);
|
|
|
17 |
|
|
|
18 |
// on utilise toujours cette table de stats (ListeImages) pour les mots-clef "actif".
|
|
|
19 |
$db->requeter(sprintf('UPDATE del_image_stat SET nb_tags = (select COUNT(id_tag) FROM del_image_tag WHERE ce_image = %1$d AND actif = 1) WHERE ce_image = %1$d', $id_image));
|
|
|
20 |
}
|
|
|
21 |
|
|
|
22 |
//TODO: déplacer les fonctions ci dessus et dessous dans une classe
|
|
|
23 |
// utilitaire
|
|
|
24 |
static function normaliserMotCle($str, $charset='utf-8') {
|
|
|
25 |
$str = htmlentities($str, ENT_NOQUOTES, $charset);
|
|
|
26 |
|
|
|
27 |
$str = preg_replace('#&([A-za-z])(?:acute|cedil|circ|grave|orn|ring|slash|th|tilde|uml);#', '\1', $str);
|
|
|
28 |
$str = preg_replace('#&([A-za-z]{2})(?:lig);#', '\1', $str); // pour les ligatures e.g. 'œ'
|
|
|
29 |
$str = preg_replace('#&[^;]+;#', '', $str); // supprime les autres caractères
|
|
|
30 |
// supprime les espaces, tirets et simple-quotes en underscores
|
|
|
31 |
return str_replace(array(" ", "-", "'"),
|
|
|
32 |
array('_', '_', '_'),
|
|
|
33 |
$str);
|
|
|
34 |
|
|
|
35 |
return mb_strtolower($str);
|
|
|
36 |
}
|
|
|
37 |
}
|