Rev 420 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | RSS feed
<?php
//On recupere le template et on execute les actions wikini
$template = file_get_contents('tools/templates/themes/'.$this->config['favorite_theme'].'/squelettes/'.$this->config['favorite_squelette'].'.tpl.html');
$template_decoupe = explode("{WIKINI_PAGE}", $template);
if ($act=preg_match_all ("/".'(\\{\\{)'.'(.*?)'.'(\\}\\})'."/is", $template_decoupe[1], $matches)) {
$i = 0; $j = 0;
foreach($matches as $valeur) {
foreach($valeur as $val) {
if ($matches[2][$j]!='') {
$action= $matches[2][$j];
$template_decoupe[1]=str_replace('{{'.$action.'}}', $this->Format('{{'.$action.'}}'), $template_decoupe[1]);
}
$j++;
}
$i++;
}
}
//on utilise la bibliotheque pear template it pour gerer les variables dans la template
require_once 'tools/templates/api/IT.php';
$tpl = new HTML_Template_IT('tools/templates/themes/'.$this->config['favorite_theme'].'/squelettes');
$tpl->setTemplate($template_decoupe[1], true, true);
//action pour le footer de wikini
$wikini_barre_bas =
'<div class="footer">'."\n";
//echo $this->FormOpen("", "RechercheTexte", "get");
$wikini_barre_bas .=
$this->FormOpen("", "RechercheTexte", "get")."\n";
if ( $this->HasAccess("write") ) {
$wikini_barre_bas .= "<a href=\"".$this->href("edit")."\" title=\"Cliquez pour éditer cette page.\">Éditer cette page</a> ::\n";
}
if ( $this->GetPageTime() ) {
$wikini_barre_bas .= "<a href=\"".$this->href("revisions")."\" title=\"Cliquez pour voir les dernières modifications sur cette page.\">".$this->GetPageTime()."</a> ::\n";
}
// if this page exists
if ($this->page)
{
// if owner is current user
if ($this->UserIsOwner())
{
$wikini_barre_bas .=
"Propriétaire : vous :: \n".
"<a href=\"".$this->href("acls")."\" title=\"Cliquez pour éditer les permissions de cette page.\">Éditer permissions</a> :: \n".
"<a href=\"".$this->href("deletepage")."\">Supprimer</a> :: \n";
}
else
{
if ($owner = $this->GetPageOwner())
{
$wikini_barre_bas .= "Propriétaire : ".$this->Format($owner);
}
else
{
$wikini_barre_bas .= "Pas de propriétaire ";
$wikini_barre_bas .= ($this->GetUser() ? "(<a href=\"".$this->href("claim")."\">Appropriation</a>)" : "");
}
$wikini_barre_bas .= " :: \n";
}
}
$wikini_barre_bas .=
'<a href="'.$this->href("referrers").'" title="Cliquez pour voir les URLs faisant référence à cette page.">'."\n".
'Références</a> ::'."\n".
'Recherche : <input name="phrase" size="15" class="searchbox" />'."\n".
$this->FormClose()."\n".
'</div>'."\n";
$tpl->setVariable('WIKINI_BARRE_BAS', $wikini_barre_bas);
$tpl->setVariable('WIKINI_VERSION', $this->GetWikiNiVersion());
$plugin_output_new = $tpl->show();
?>