420 |
florian |
1 |
<?php
|
|
|
2 |
//On recupere le template et on execute les actions wikini
|
|
|
3 |
$template = file_get_contents('tools/templates/themes/'.$this->config['favorite_theme'].'/squelettes/'.$this->config['favorite_squelette'].'.tpl.html');
|
|
|
4 |
$template_decoupe = explode("{WIKINI_PAGE}", $template);
|
|
|
5 |
if ($act=preg_match_all ("/".'(\\{\\{)'.'(.*?)'.'(\\}\\})'."/is", $template_decoupe[1], $matches)) {
|
|
|
6 |
$i = 0; $j = 0;
|
|
|
7 |
foreach($matches as $valeur) {
|
|
|
8 |
foreach($valeur as $val) {
|
|
|
9 |
if ($matches[2][$j]!='') {
|
|
|
10 |
$action= $matches[2][$j];
|
|
|
11 |
$template_decoupe[1]=str_replace('{{'.$action.'}}', $this->Format('{{'.$action.'}}'), $template_decoupe[1]);
|
|
|
12 |
}
|
|
|
13 |
$j++;
|
|
|
14 |
}
|
|
|
15 |
$i++;
|
|
|
16 |
}
|
|
|
17 |
}
|
|
|
18 |
|
|
|
19 |
//on utilise la bibliotheque pear template it pour gerer les variables dans la template
|
|
|
20 |
require_once 'tools/templates/api/IT.php';
|
|
|
21 |
$tpl = new HTML_Template_IT('tools/templates/themes/'.$this->config['favorite_theme'].'/squelettes');
|
|
|
22 |
|
|
|
23 |
$tpl->setTemplate($template_decoupe[1], true, true);
|
|
|
24 |
|
|
|
25 |
//action pour le footer de wikini
|
|
|
26 |
$wikini_barre_bas =
|
|
|
27 |
'<div class="footer">'."\n";
|
|
|
28 |
//echo $this->FormOpen("", "RechercheTexte", "get");
|
|
|
29 |
$wikini_barre_bas .=
|
|
|
30 |
$this->FormOpen("", "RechercheTexte", "get")."\n";
|
|
|
31 |
if ( $this->HasAccess("write") ) {
|
|
|
32 |
$wikini_barre_bas .= "<a href=\"".$this->href("edit")."\" title=\"Cliquez pour éditer cette page.\">Éditer cette page</a> ::\n";
|
|
|
33 |
}
|
|
|
34 |
if ( $this->GetPageTime() ) {
|
|
|
35 |
$wikini_barre_bas .= "<a href=\"".$this->href("revisions")."\" title=\"Cliquez pour voir les dernières modifications sur cette page.\">".$this->GetPageTime()."</a> ::\n";
|
|
|
36 |
}
|
|
|
37 |
// if this page exists
|
|
|
38 |
if ($this->page)
|
|
|
39 |
{
|
|
|
40 |
// if owner is current user
|
|
|
41 |
if ($this->UserIsOwner())
|
|
|
42 |
{
|
|
|
43 |
$wikini_barre_bas .=
|
|
|
44 |
"Propriétaire : vous :: \n".
|
|
|
45 |
"<a href=\"".$this->href("acls")."\" title=\"Cliquez pour éditer les permissions de cette page.\">Éditer permissions</a> :: \n".
|
|
|
46 |
"<a href=\"".$this->href("deletepage")."\">Supprimer</a> :: \n";
|
|
|
47 |
}
|
|
|
48 |
else
|
|
|
49 |
{
|
|
|
50 |
if ($owner = $this->GetPageOwner())
|
|
|
51 |
{
|
|
|
52 |
$wikini_barre_bas .= "Propriétaire : ".$this->Format($owner);
|
|
|
53 |
}
|
|
|
54 |
else
|
|
|
55 |
{
|
|
|
56 |
$wikini_barre_bas .= "Pas de propriétaire ";
|
|
|
57 |
$wikini_barre_bas .= ($this->GetUser() ? "(<a href=\"".$this->href("claim")."\">Appropriation</a>)" : "");
|
|
|
58 |
}
|
|
|
59 |
$wikini_barre_bas .= " :: \n";
|
|
|
60 |
}
|
|
|
61 |
}
|
|
|
62 |
$wikini_barre_bas .=
|
|
|
63 |
'<a href="'.$this->href("referrers").'" title="Cliquez pour voir les URLs faisant référence à cette page.">'."\n".
|
|
|
64 |
'Références</a> ::'."\n".
|
|
|
65 |
'Recherche : <input name="phrase" size="15" class="searchbox" />'."\n".
|
|
|
66 |
$this->FormClose()."\n".
|
|
|
67 |
'</div>'."\n";
|
|
|
68 |
|
|
|
69 |
$tpl->setVariable('WIKINI_BARRE_BAS', $wikini_barre_bas);
|
|
|
70 |
$tpl->setVariable('WIKINI_VERSION', $this->GetWikiNiVersion());
|
|
|
71 |
|
|
|
72 |
$plugin_output_new = $tpl->show();
|
|
|
73 |
?>
|