WP File Manager
Current Path:
/
home
/
article
/
www
/
ecrire
/
urls
/
Name
Action
..
arbo.php
Edit
generer_url_forum.php
Edit
html.php
Edit
index.php
Edit
libres.php
Edit
page.php
Edit
propres.php
Edit
propres2.php
Edit
propres_qs.php
Edit
standard.php
Edit
Editing: generer_url_forum.php
<?php /***************************************************************************\ * SPIP, Systeme de publication pour l'internet * * * * Copyright (c) 2001-2014 * * Arnaud Martin, Antoine Pitrou, Philippe Riviere, Emmanuel Saint-James * * * * Ce programme est un logiciel libre distribue sous licence GNU/GPL. * * Pour plus de details voir le fichier COPYING.txt ou l'aide en ligne. * \***************************************************************************/ if (!defined('_ECRIRE_INC_VERSION')) return; /** * Duplicata de la fonction disponible dans _core_/forum/urls * pour permettre l'utilisation du plugin urls_etendues avec spip 2.0 * A retirer a la release 2.1 * * @param <type> $id_forum * @param <type> $args * @param <type> $ancre * @return <type> */ function urls_generer_url_forum_dist($id_forum, $args='', $ancre='') { if ($id_forum = intval($id_forum)) { include_spip('inc/forum'); list($type, $id,) = racine_forum($id_forum); if ($type) { if (!$ancre) $ancre = "forum$id_forum"; return generer_url_entite($id, $type, $args, $ancre, true); } } return ''; } ?>