uawdijnntqw1x1x1
IP : 216.73.217.34
Hostname : webm019.cluster129.gra.hosting.ovh.net
Kernel : Linux webm019.cluster129.gra.hosting.ovh.net 6.18.42-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Wed Aug 5 15:59:48 CEST 2026 x86_64
Disable Function : _dyuweyrj4,_dyuweyrj4r,dl
OS : Linux
PATH:
/
home
/
checkyd
/
www
/
plugins-dist
/
textwheel
/
tests
/
..
/
wheels
/
spip
/
spip.php
/
/
<?php /** * Fonctions utiles pour les wheels SPIP * * @SPIP\Textwheel\Wheel\SPIP\Fonctions **/ if (!defined('_ECRIRE_INC_VERSION')) { return; } include_spip('inc/texte'); /** * Callback pour les <math></math> * Gestion du TeX * * @param string $t * @return string */ function replace_math($t) { if (!function_exists('traiter_math')) { include_spip('inc/math'); } $t = traiter_math($t, '', true); return $t; } /** * Callback pour la puce qui est définissable/surchargeable * * @return string * Code HTML d'une puce */ function replace_puce() { static $puce; if (!isset($puce)) { $puce = "\n<br />" . definir_puce() . " "; } return $puce; } /** * Callback pour les Abbr * * @example * ``` * [ABBR|abbrevation] * [ABBR|abbrevation{lang}] * ``` * @param array $m * @return string * Code HTML d'une abréviation */ function inserer_abbr($m) { $title = attribut_html($m[2]); $lang = (isset($m[3]) ? " lang=\"" . $m[3] . "\"" : ""); return "<abbr title=\"$title\"$lang>" . $m[1] . "</abbr>"; }
/home/checkyd/www/plugins-dist/textwheel/tests/../wheels/spip/spip.php