Details |
Last modification |
View Log
| RSS feed
| Rev |
Author |
Line No. |
Line |
| 15 |
jpm |
1 |
<?
|
|
|
2 |
if (!defined("WIKINI_VERSION")) {
|
|
|
3 |
die ("accès direct interdit");
|
|
|
4 |
}
|
|
|
5 |
$user = $this->GetUser();
|
|
|
6 |
if (!$user) {
|
|
|
7 |
$plugin_output_new = preg_replace ('/^.*<\/body>/ms',
|
|
|
8 |
'</body>',
|
|
|
9 |
$plugin_output_new);
|
|
|
10 |
}
|
|
|
11 |
|
|
|
12 |
$plugin_output_new = preg_replace ('/<\/body>/',
|
|
|
13 |
'<div class="copyright">
|
|
|
14 |
S.A.R.L. La Pierre du Pont du Gard Authentique - N° SIRET: 339 291 015 00016 -
|
|
|
15 |
Fonctionne avec '.$wikini_site_url."\n".
|
|
|
16 |
'-'.$this->Link("Identification", "", "Administration")."\n".
|
|
|
17 |
'</div>
|
|
|
18 |
</body>',
|
|
|
19 |
$plugin_output_new);
|
|
|
20 |
|
|
|
21 |
?>
|