mirror of
https://github.com/YunoHost-Apps/spip_ynh.git
synced 2024-09-03 20:25:59 +02:00
26 lines
424 B
PHP
26 lines
424 B
PHP
<?php
|
|
|
|
if (!defined('_ECRIRE_INC_VERSION')) return;
|
|
|
|
|
|
/**
|
|
* Retourne un court texte de comprehension
|
|
* aleatoirement parmi une liste.
|
|
*
|
|
* [(#VAL|ok_aleatoire)]
|
|
*
|
|
*
|
|
* @return string Texte.
|
|
**/
|
|
function filtre_ok_aleatoire_dist() {
|
|
$alea = array(
|
|
'compagnon:ok',
|
|
'compagnon:ok_jai_compris',
|
|
'compagnon:ok_bien',
|
|
'compagnon:ok_merci',
|
|
'compagnon:ok_parfait',
|
|
);
|
|
|
|
return _T($alea[array_rand($alea)]);
|
|
}
|
|
?>
|