mirror of
https://github.com/YunoHost-Apps/spip_ynh.git
synced 2024-09-03 20:25:59 +02:00
42 lines
1.1 KiB
PHP
42 lines
1.1 KiB
PHP
<?php
|
|
|
|
/*
|
|
* transforme un raccourci de ressource en un lien minimaliste
|
|
*
|
|
*
|
|
*/
|
|
|
|
define('_EXTRAIRE_RESSOURCES', ',' . '<"?(https?://|[^\s][\w -]+\.[\w -]+)[^<]*>'.',UimsS');
|
|
|
|
|
|
function traiter_ressources($r) {
|
|
$html = null;
|
|
if ($ressource = charger_fonction('ressource', 'inc', true)) {
|
|
$html = $ressource($r[0]);
|
|
}
|
|
|
|
if (is_null($html)) {
|
|
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 {
|
|
preg_match(',\.([^.]+)$,', $url, $regs);
|
|
if (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>';
|
|
}
|
|
|
|
?>
|