WP File Manager
Current Path:
/
home
/
argothem
/
www
/
organecyberpresse
/
plugins-dist
/
textwheel
/
inc
/
Name
Action
..
autoliens.php
Edit
lien.php
Edit
notes.php
Edit
ressource-mini.php
Edit
ressource.php
Edit
texte.php
Edit
textwheel.php
Edit
Editing: ressource.php
<?php /* * transforme un raccourci de ressource en un lien minimaliste * * */ define('_EXTRAIRE_RESSOURCES', ',' . '<"?(https?://|[^\s][\w -]+\.[\w -]+)[^<]*>' . ',UimsS'); /* pipeline pour typo */ function tw_post_typo($t) { if (strpos($t, '<') !== false) { $t = preg_replace_callback(_EXTRAIRE_RESSOURCES, 'tw_traiter_ressources', $t); } return $t; } /* pipeline pour propre */ function tw_pre_liens($t) { if (strpos($t, '<') !== false) { $t = preg_replace_callback(_EXTRAIRE_RESSOURCES, 'tw_traiter_ressources', $t); // echapper les autoliens eventuellement inseres (en une seule fois) if (strpos($t, '<html>') !== false) { $t = echappe_html($t); } } return $t; } function tw_traiter_ressources($r) { $html = null; include_spip('inc/lien'); $url = explode(' ', trim($r[0], '<>')); $url = $url[0]; # <http://url/absolue> if (preg_match(',^https?://,i', $url)) { $html = PtoBR(propre("<span class='ressource spip_out'><[->" . $url . ']></span>')); } # <url/relative> else { if (false !== strpos($url, '/')) { $html = PtoBR(propre("<span class='ressource spip_in'><[->" . $url . ']></span>')); } # <fichier.rtf> else { if ( preg_match(',\.([^.]+)$,', $url, $regs) and file_exists($f = _DIR_IMG . $regs[1] . '/' . $url) ) { $html = PtoBR(propre("<span class='ressource spip_in'><[" . $url . '->' . $f . ']></span>')); } else { $html = PtoBR(propre("<span class='ressource'><" . $url . '></span>')); } } } return '<html>' . $html . '</html>'; }