function llamas_alertes_auteur($flux){ $alertes = $flux['data']; // If there is a llama in front of this author if (tester_llama($flux['args']['id_auteur'])) { // We add a warning $alertes[] = "Watch out! There's a llama!"; } // We return the table of warnings return $alertes; }