[SPIP] v3.2.1-->v3.2.3
[lhc/web/www.git] / www / plugins-dist / sites / liens / implicite_site.php
1 <?php
2
3 /***************************************************************************\
4 * SPIP, Systeme de publication pour l'internet *
5 * *
6 * Copyright (c) 2001-2019 *
7 * Arnaud Martin, Antoine Pitrou, Philippe Riviere, Emmanuel Saint-James *
8 * *
9 * Ce programme est un logiciel libre distribue sous licence GNU/GPL. *
10 * Pour plus de details voir le fichier COPYING.txt ou l'aide en ligne. *
11 \***************************************************************************/
12
13 if (!defined("_ECRIRE_INC_VERSION")) {
14 return;
15 }
16
17 function liens_implicite_site_dist($texte, $id, $type, $args, $ancre, $connect = '') {
18 if (!$id = intval($id)) {
19 return false;
20 }
21 $url = sql_getfetsel('url_site', 'spip_syndic', "id_syndic=" . intval($id), '', '', '', '', $connect);
22
23 return $url;
24 }