4 |
david |
1 |
<?php
|
|
|
2 |
|
|
|
3 |
if (!defined("_ECRIRE_INC_VERSION")) return; #securite
|
|
|
4 |
|
|
|
5 |
include_local(find_in_path("inc-login_public.php3"));
|
|
|
6 |
|
|
|
7 |
global $balise_LOGIN_PRIVE_collecte;
|
|
|
8 |
$balise_LOGIN_PRIVE_collecte = array('url');
|
|
|
9 |
|
|
|
10 |
# retourner:
|
|
|
11 |
# 1. l'url collectee ci-dessus (args0) ou donnee en filtre (filtre0)
|
|
|
12 |
# 2. l'eventuel parametre de la balise (args1) fournie par
|
|
|
13 |
# calculer_balise_dynamique, en l'occurence le #LOGIN courant si l'on
|
|
|
14 |
# programme une <boucle(AUTEURS)>[(#LOGIN_PRIVE{#LOGIN})]
|
|
|
15 |
|
|
|
16 |
function balise_LOGIN_PRIVE_stat ($args, $filtres) {
|
|
|
17 |
|
|
|
18 |
if (!$cible = $filtres[0])
|
|
|
19 |
$cible = $args[0];
|
|
|
20 |
|
|
|
21 |
$login = $args[1];
|
|
|
22 |
|
|
|
23 |
return array($cible, $login, $inscription);
|
|
|
24 |
}
|
|
|
25 |
|
|
|
26 |
function balise_LOGIN_PRIVE_dyn($cible, $login) {
|
|
|
27 |
return
|
|
|
28 |
login_explicite($login, $cible, 'redac');
|
|
|
29 |
}
|
|
|
30 |
|
|
|
31 |
?>
|