Linux lhjmq-records 5.15.0-118-generic #128-Ubuntu SMP Fri Jul 5 09:28:59 UTC 2024 x86_64
Your IP : 3.135.185.207
<?php
function url_maketitle(&$data){
if($data['url_url'] != ''){ $output .= $data['url_url']; $addresssep = ', '; }
else{
$output .= '(Aucune information)';
}
return $output;
}
function url_makefulltitle(&$data){
if($data['url_title'] != ''){ $output .= $data['url_title']; $addresssep = ', '; }
if($data['url_url'] != ''){ $output .= $addresssep . $data['url_url']; $addresssep = ', '; }
else{
$output .= '(Aucune information)';
}
return $output;
}
function url_tag($urltype){
switch($urltype){
case URL_EMAIL: return 'Courriel : '; break;
case URL_WEBSITE: return 'Site Web : '; break;
case URL_OTHER: return 'Autre : '; break;
}
return '';
}
?>
|