2007-04-30 10:35:47 +02:00
|
|
|
|
<?php
|
2008-01-08 19:35:13 +01:00
|
|
|
|
/* Copyright (C) 2007 Patrick Raguin <patrick.raguin@gmail.com>
|
|
|
|
|
|
* Copyright (C) 2007-2008 Laurent Destailleur <eldy@users.sourceforge.net>
|
2007-04-30 10:35:47 +02:00
|
|
|
|
*
|
|
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
|
|
* (at your option) any later version.
|
|
|
|
|
|
*
|
|
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
|
|
*
|
|
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
|
|
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2008-09-01 23:51:38 +02:00
|
|
|
|
* \file htdocs/admin/menus/index.php
|
|
|
|
|
|
* \ingroup core
|
|
|
|
|
|
* \brief Index page for menu editor
|
|
|
|
|
|
* \version $Id$
|
|
|
|
|
|
*/
|
2008-01-09 00:23:14 +01:00
|
|
|
|
|
2007-05-07 18:44:27 +02:00
|
|
|
|
require("./pre.inc.php");
|
2008-01-11 11:25:26 +01:00
|
|
|
|
require_once(DOL_DOCUMENT_ROOT."/html.formadmin.class.php");
|
2008-09-01 23:51:38 +02:00
|
|
|
|
require_once(DOL_DOCUMENT_ROOT."/lib/treeview.lib.php");
|
2007-12-14 10:54:24 +01:00
|
|
|
|
|
|
|
|
|
|
$langs->load("other");
|
2008-01-08 19:35:13 +01:00
|
|
|
|
$langs->load("admin");
|
2007-12-14 10:54:24 +01:00
|
|
|
|
|
2007-06-06 00:30:46 +02:00
|
|
|
|
if (! $user->admin)
|
2007-04-30 10:35:47 +02:00
|
|
|
|
accessforbidden();
|
2007-06-08 00:52:47 +02:00
|
|
|
|
|
|
|
|
|
|
$dirtop = "../../includes/menus/barre_top";
|
|
|
|
|
|
$dirleft = "../../includes/menus/barre_left";
|
2007-04-30 10:35:47 +02:00
|
|
|
|
|
2008-01-08 19:35:13 +01:00
|
|
|
|
$mesg=$_GET["mesg"];
|
|
|
|
|
|
|
2008-01-09 00:23:14 +01:00
|
|
|
|
$menu_handler_top=eregi_replace('\.php','',$conf->global->MAIN_MENU_BARRETOP);
|
|
|
|
|
|
$menu_handler_left=eregi_replace('\.php','',$conf->global->MAIN_MENU_BARRELEFT);
|
2008-01-12 15:25:15 +01:00
|
|
|
|
$menu_handler_top=eregi_replace('_backoffice','',$menu_handler_top);
|
|
|
|
|
|
$menu_handler_top=eregi_replace('_frontoffice','',$menu_handler_top);
|
|
|
|
|
|
$menu_handler_left=eregi_replace('_backoffice','',$menu_handler_left);
|
|
|
|
|
|
$menu_handler_left=eregi_replace('_frontoffice','',$menu_handler_left);
|
2007-05-07 19:35:51 +02:00
|
|
|
|
|
|
|
|
|
|
$menu_handler=$menu_handler_left;
|
|
|
|
|
|
|
2008-04-03 02:46:03 +02:00
|
|
|
|
if ($_REQUEST["handler_origine"]) $menu_handler=$_REQUEST["handler_origine"];
|
|
|
|
|
|
if ($_REQUEST["menu_handler"]) $menu_handler=$_REQUEST["menu_handler"];
|
2007-06-08 00:52:47 +02:00
|
|
|
|
|
|
|
|
|
|
|
2007-05-07 19:35:51 +02:00
|
|
|
|
/*
|
|
|
|
|
|
* Actions
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
2008-01-27 16:11:41 +01:00
|
|
|
|
if (isset($_GET["action"]) && ($_GET["action"] == 'up'))
|
2007-04-30 10:35:47 +02:00
|
|
|
|
{
|
2008-01-12 17:14:14 +01:00
|
|
|
|
$sql = "SELECT m.rowid, m.position FROM ".MAIN_DB_PREFIX."menu as m";
|
2007-05-07 18:44:27 +02:00
|
|
|
|
$sql.= " WHERE m.rowid = ".$_GET["menuId"];
|
2007-04-30 10:35:47 +02:00
|
|
|
|
$result = $db->query($sql);
|
|
|
|
|
|
|
2008-01-12 17:14:14 +01:00
|
|
|
|
$num = $db->num_rows($result);
|
2007-04-30 10:35:47 +02:00
|
|
|
|
$i = 0;
|
|
|
|
|
|
|
|
|
|
|
|
while($i < $num)
|
|
|
|
|
|
{
|
|
|
|
|
|
$obj = $db->fetch_object($result);
|
|
|
|
|
|
$precedent['rowid'] = $obj->rowid;
|
2008-01-12 17:14:14 +01:00
|
|
|
|
$precedent['order'] = $obj->position;
|
2007-04-30 10:35:47 +02:00
|
|
|
|
$i++;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2007-05-07 18:44:27 +02:00
|
|
|
|
// Menu top
|
2008-01-12 17:14:14 +01:00
|
|
|
|
$sql = "SELECT m.rowid, m.position FROM ".MAIN_DB_PREFIX."menu as m";
|
|
|
|
|
|
$sql.= " WHERE m.position = ".($precedent['order'] - 1)." AND m.type = 'top'";
|
2007-05-07 19:35:51 +02:00
|
|
|
|
$sql.= " AND menu_handler='".$menu_handler_top."'";
|
2007-04-30 10:35:47 +02:00
|
|
|
|
$result = $db->query($sql);
|
|
|
|
|
|
|
2008-01-12 17:14:14 +01:00
|
|
|
|
$num = $db->num_rows($result);
|
2007-04-30 10:35:47 +02:00
|
|
|
|
$i = 0;
|
|
|
|
|
|
|
|
|
|
|
|
while($i < $num)
|
|
|
|
|
|
{
|
|
|
|
|
|
$obj = $db->fetch_object($result);
|
|
|
|
|
|
$suivant['rowid'] = $obj->rowid;
|
2008-01-12 17:14:14 +01:00
|
|
|
|
$suivant['order'] = $obj->position;
|
2007-04-30 10:35:47 +02:00
|
|
|
|
$i++;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2007-05-07 18:44:27 +02:00
|
|
|
|
$sql = "UPDATE ".MAIN_DB_PREFIX."menu as m";
|
2008-01-12 17:14:14 +01:00
|
|
|
|
$sql.= " SET m.position = ".$suivant['order'];
|
2007-05-07 18:44:27 +02:00
|
|
|
|
$sql.= " WHERE m.rowid = ".$precedent['rowid'].""; // Monte celui select
|
2007-04-30 10:35:47 +02:00
|
|
|
|
$db->query($sql);
|
2007-05-07 18:44:27 +02:00
|
|
|
|
$sql = "UPDATE ".MAIN_DB_PREFIX."menu as m";
|
2008-01-12 17:14:14 +01:00
|
|
|
|
$sql.= " SET m.position = ".$precedent['order'];
|
2007-05-07 18:44:27 +02:00
|
|
|
|
$sql.= " WHERE m.rowid = ".$suivant['rowid'].""; // Descend celui du dessus
|
2007-04-30 10:35:47 +02:00
|
|
|
|
$db->query($sql);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
if (isset($_GET["action"]) && $_GET["action"] == 'down')
|
|
|
|
|
|
{
|
|
|
|
|
|
|
2008-01-12 17:14:14 +01:00
|
|
|
|
$sql = "SELECT m.rowid, m.position FROM ".MAIN_DB_PREFIX."menu as m WHERE m.rowid = ".$_GET["menuId"];
|
2007-04-30 10:35:47 +02:00
|
|
|
|
$result = $db->query($sql);
|
|
|
|
|
|
|
2008-01-12 17:14:14 +01:00
|
|
|
|
$num = $db->num_rows($result);
|
2007-04-30 10:35:47 +02:00
|
|
|
|
$i = 0;
|
|
|
|
|
|
|
|
|
|
|
|
while($i < $num)
|
|
|
|
|
|
{
|
|
|
|
|
|
$obj = $db->fetch_object($result);
|
|
|
|
|
|
$precedent['rowid'] = $obj->rowid;
|
2008-01-12 17:14:14 +01:00
|
|
|
|
$precedent['order'] = $obj->position;
|
2007-04-30 10:35:47 +02:00
|
|
|
|
$i++;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2008-01-12 17:14:14 +01:00
|
|
|
|
$sql = "SELECT m.rowid, m.position";
|
2007-05-07 18:44:27 +02:00
|
|
|
|
$sql.= " FROM ".MAIN_DB_PREFIX."menu as m";
|
2008-01-12 17:14:14 +01:00
|
|
|
|
$sql.= " WHERE m.position = ".($precedent['order'] + 1)." AND type='top'";
|
2007-04-30 10:35:47 +02:00
|
|
|
|
$result = $db->query($sql);
|
|
|
|
|
|
|
2008-01-12 17:14:14 +01:00
|
|
|
|
$num = $db->num_rows($result);
|
2007-04-30 10:35:47 +02:00
|
|
|
|
$i = 0;
|
|
|
|
|
|
|
|
|
|
|
|
while($i < $num)
|
|
|
|
|
|
{
|
|
|
|
|
|
$obj = $db->fetch_object($result);
|
|
|
|
|
|
$suivant['rowid'] = $obj->rowid;
|
2008-01-12 17:14:14 +01:00
|
|
|
|
$suivant['order'] = $obj->position;
|
2007-04-30 10:35:47 +02:00
|
|
|
|
$i++;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2008-01-12 17:14:14 +01:00
|
|
|
|
$sql = "UPDATE ".MAIN_DB_PREFIX."menu as m SET m.position = ".$suivant['order']." WHERE m.rowid = ".$precedent['rowid'].""; // Monte celui select
|
2007-04-30 10:35:47 +02:00
|
|
|
|
$db->query($sql);
|
2008-01-12 17:14:14 +01:00
|
|
|
|
$sql = "UPDATE ".MAIN_DB_PREFIX."menu as m SET m.position = ".$precedent['order']." WHERE m.rowid = ".$suivant['rowid'].""; // Descend celui du dessus
|
2007-04-30 10:35:47 +02:00
|
|
|
|
$db->query($sql);
|
|
|
|
|
|
}
|
2007-05-07 18:44:27 +02:00
|
|
|
|
|
|
|
|
|
|
if ($_POST["action"] == 'confirm_delete' && $_POST["confirm"] == 'yes')
|
|
|
|
|
|
{
|
2008-01-08 19:35:13 +01:00
|
|
|
|
$db->begin();
|
|
|
|
|
|
|
2007-04-30 10:35:47 +02:00
|
|
|
|
$sql = "SELECT c.rowid, c.fk_constraint FROM ".MAIN_DB_PREFIX."menu_const as c WHERE c.fk_menu = ".$_GET['menuId'];
|
|
|
|
|
|
$res = $db->query($sql);
|
|
|
|
|
|
if ($res)
|
|
|
|
|
|
{
|
|
|
|
|
|
while ($obj = $db->fetch_object ($res))
|
|
|
|
|
|
{
|
|
|
|
|
|
$sql = "DELETE FROM ".MAIN_DB_PREFIX."menu_const WHERE rowid = ".$obj->rowid;
|
|
|
|
|
|
$db->query($sql);
|
|
|
|
|
|
|
|
|
|
|
|
$sql = "SELECT count(rowid) as countId FROM ".MAIN_DB_PREFIX."menu_const WHERE fk_constraint = ".$obj->fk_constraint;
|
|
|
|
|
|
$result = $db->query($sql);
|
|
|
|
|
|
$objc = $db->fetch_object($result);
|
|
|
|
|
|
|
|
|
|
|
|
if($objc->countId == 0)
|
|
|
|
|
|
{
|
|
|
|
|
|
$sql = "DELETE FROM ".MAIN_DB_PREFIX."menu_constraint WHERE rowid = ".$obj->fk_constraint;
|
|
|
|
|
|
$db->query($sql);
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
2007-06-06 00:30:46 +02:00
|
|
|
|
|
2007-04-30 10:35:47 +02:00
|
|
|
|
$sql = "DELETE FROM ".MAIN_DB_PREFIX."menu WHERE rowid = ".$_GET['menuId'];
|
2008-01-12 15:52:53 +01:00
|
|
|
|
$resql=$db->query($sql);
|
|
|
|
|
|
if ($resql)
|
2007-04-30 10:35:47 +02:00
|
|
|
|
{
|
2008-01-08 19:35:13 +01:00
|
|
|
|
$db->commit();
|
|
|
|
|
|
|
|
|
|
|
|
Header("Location: ".DOL_URL_ROOT.'/admin/menus/index.php?mesg='.urlencode($langs->trans("MenuDeleted")));
|
2007-04-30 10:35:47 +02:00
|
|
|
|
exit ;
|
|
|
|
|
|
}
|
|
|
|
|
|
else
|
|
|
|
|
|
{
|
2008-01-08 19:35:13 +01:00
|
|
|
|
$db->rollback();
|
|
|
|
|
|
|
2007-04-30 10:35:47 +02:00
|
|
|
|
$reload = 0;
|
|
|
|
|
|
$_GET["action"]='';
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2007-06-06 00:30:46 +02:00
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
|
* Affichage page
|
|
|
|
|
|
*/
|
2007-06-08 00:52:47 +02:00
|
|
|
|
$html=new Form($db);
|
2008-01-11 11:25:26 +01:00
|
|
|
|
$htmladmin=new FormAdmin($db);
|
2007-06-06 00:30:46 +02:00
|
|
|
|
|
|
|
|
|
|
llxHeader();
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
print_fiche_titre($langs->trans("Menus"),'','setup');
|
|
|
|
|
|
|
|
|
|
|
|
print $langs->trans("MenusEditorDesc")."<br>\n";
|
|
|
|
|
|
print "<br>\n";
|
|
|
|
|
|
|
2008-01-08 19:35:13 +01:00
|
|
|
|
if ($mesg) print '<div class="ok">'.$mesg.'.</div><br>';
|
|
|
|
|
|
|
|
|
|
|
|
|
2007-06-06 00:30:46 +02:00
|
|
|
|
$h = 0;
|
|
|
|
|
|
|
|
|
|
|
|
$head[$h][0] = DOL_URL_ROOT."/admin/menus.php";
|
|
|
|
|
|
$head[$h][1] = $langs->trans("MenuHandlers");
|
|
|
|
|
|
$head[$h][2] = 'handler';
|
|
|
|
|
|
$h++;
|
|
|
|
|
|
|
|
|
|
|
|
$head[$h][0] = DOL_URL_ROOT."/admin/menus/index.php";
|
|
|
|
|
|
$head[$h][1] = $langs->trans("MenuAdmin");
|
|
|
|
|
|
$head[$h][2] = 'editor';
|
|
|
|
|
|
$h++;
|
|
|
|
|
|
|
|
|
|
|
|
dolibarr_fiche_head($head, 'editor', $langs->trans("Menus"));
|
|
|
|
|
|
|
2008-01-08 19:35:13 +01:00
|
|
|
|
// Confirmation de la suppression menu
|
2007-04-30 10:35:47 +02:00
|
|
|
|
if ($_GET["action"] == 'delete')
|
|
|
|
|
|
{
|
|
|
|
|
|
$sql = "SELECT m.titre FROM ".MAIN_DB_PREFIX."menu as m WHERE m.rowid = ".$_GET['menuId'];
|
|
|
|
|
|
$result = $db->query($sql);
|
|
|
|
|
|
$obj = $db->fetch_object($result);
|
|
|
|
|
|
|
|
|
|
|
|
$html = new Form($db);
|
2007-06-08 00:52:47 +02:00
|
|
|
|
$html->form_confirm("index.php?menu_handler=".$menu_handler."&menuId=".$_GET['menuId'],$langs->trans("DeleteMenu"),$langs->trans("ConfirmDeleteMenu",$obj->titre),"confirm_delete");
|
2008-01-27 18:12:56 +01:00
|
|
|
|
print "<br>\n";
|
2007-04-30 10:35:47 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
2007-07-08 18:24:06 +02:00
|
|
|
|
|
2008-05-23 17:28:03 +02:00
|
|
|
|
print '<form name="newmenu" class="nocellnopadd" action="'.$_SERVER["PHP_SELF"].'">';
|
2007-06-08 00:52:47 +02:00
|
|
|
|
print '<input type="hidden" action="change_menu_handler">';
|
|
|
|
|
|
print $langs->trans("MenuHandler").': ';
|
2008-01-11 11:25:26 +01:00
|
|
|
|
print $htmladmin->select_menu_families($menu_handler,'menu_handler',$dirleft);
|
2007-06-08 00:52:47 +02:00
|
|
|
|
print ' <input type="submit" class="button" value="'.$langs->trans("Refresh").'">';
|
|
|
|
|
|
print '</form>';
|
2007-04-30 10:35:47 +02:00
|
|
|
|
|
2007-06-08 00:52:47 +02:00
|
|
|
|
print '<br>';
|
2007-04-30 10:35:47 +02:00
|
|
|
|
|
|
|
|
|
|
print '<table class="border" width="100%">';
|
2007-05-07 19:35:51 +02:00
|
|
|
|
|
2007-04-30 10:35:47 +02:00
|
|
|
|
print '<tr class="liste_titre">';
|
2007-06-06 00:30:46 +02:00
|
|
|
|
print '<td>'.$langs->trans("TreeMenuPersonalized").'</td>';
|
2007-04-30 10:35:47 +02:00
|
|
|
|
print '</tr>';
|
2007-05-07 19:35:51 +02:00
|
|
|
|
|
2007-04-30 10:35:47 +02:00
|
|
|
|
print '<tr>';
|
|
|
|
|
|
print '<td>';
|
2007-06-06 00:30:46 +02:00
|
|
|
|
|
2008-01-27 18:12:56 +01:00
|
|
|
|
// ARBORESCENCE
|
2007-04-30 10:35:47 +02:00
|
|
|
|
|
|
|
|
|
|
$rangLast = 0;
|
|
|
|
|
|
$idLast = -1;
|
2008-01-06 16:24:23 +01:00
|
|
|
|
if ($conf->use_javascript_ajax)
|
2007-04-30 10:35:47 +02:00
|
|
|
|
{
|
2008-09-01 23:51:38 +02:00
|
|
|
|
tree_addjs();
|
2008-01-08 19:35:13 +01:00
|
|
|
|
|
|
|
|
|
|
/*-------------------- MAIN -----------------------
|
|
|
|
|
|
tableau des <EFBFBD>l<EFBFBD>ments de l'arbre:
|
|
|
|
|
|
c'est un tableau <EFBFBD> 2 dimensions.
|
|
|
|
|
|
Une ligne repr<EFBFBD>sente un <EFBFBD>l<EFBFBD>ment : data[$x]
|
|
|
|
|
|
chaque ligne est d<EFBFBD>compos<EFBFBD>e en 3 donn<EFBFBD>es:
|
|
|
|
|
|
- l'index de l'<EFBFBD>l<EFBFBD>ment
|
|
|
|
|
|
- l'index de l'<EFBFBD>l<EFBFBD>ment parent
|
|
|
|
|
|
- la cha<EFBFBD>ne <EFBFBD> afficher
|
|
|
|
|
|
ie: data[]= array (index, index parent, chaine )
|
|
|
|
|
|
*/
|
|
|
|
|
|
//il faut d'abord d<>clarer un <20>l<EFBFBD>ment racine de l'arbre
|
|
|
|
|
|
|
|
|
|
|
|
$data[] = array(0,-1,"racine");
|
|
|
|
|
|
|
|
|
|
|
|
//puis tous les <20>l<EFBFBD>ments enfants
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
$sql = "SELECT m.rowid, m.fk_menu, m.titre, m.langs";
|
|
|
|
|
|
$sql.= " FROM ".MAIN_DB_PREFIX."menu as m";
|
|
|
|
|
|
$sql.= " WHERE menu_handler='".$menu_handler."'";
|
2008-01-12 17:14:14 +01:00
|
|
|
|
$sql.= " ORDER BY m.position, m.rowid";
|
2008-01-08 19:35:13 +01:00
|
|
|
|
$res = $db->query($sql);
|
|
|
|
|
|
|
|
|
|
|
|
if ($res)
|
|
|
|
|
|
{
|
|
|
|
|
|
$num = $db->num_rows($res);
|
|
|
|
|
|
|
|
|
|
|
|
$i = 1;
|
|
|
|
|
|
while ($menu = $db->fetch_array ($res))
|
|
|
|
|
|
{
|
|
|
|
|
|
$langs->load($menu['langs']);
|
|
|
|
|
|
$titre = $langs->trans($menu['titre']);
|
|
|
|
|
|
$data[] = array($menu['rowid'],$menu['fk_menu'],$titre);
|
|
|
|
|
|
$i++;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2008-09-01 23:51:38 +02:00
|
|
|
|
// Appelle de la fonction r<>cursive (ammorce)
|
|
|
|
|
|
// avec recherche depuis la racine.
|
|
|
|
|
|
// array($menu['rowid'],$menu['fk_menu'],$titre);
|
|
|
|
|
|
tree_recur($data,0,0);
|
2008-01-08 19:35:13 +01:00
|
|
|
|
|
|
|
|
|
|
print '</td>';
|
|
|
|
|
|
|
|
|
|
|
|
print '</tr>';
|
|
|
|
|
|
|
|
|
|
|
|
print '</table>';
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
print '</div>';
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
|
* Boutons actions
|
|
|
|
|
|
*/
|
|
|
|
|
|
print '<div class="tabsAction">';
|
2008-01-09 00:23:14 +01:00
|
|
|
|
print '<a class="butAction" href="'.DOL_URL_ROOT.'/admin/menus/edit.php?menuId=0&action=create&menu_handler='.urlencode($menu_handler).'">'.$langs->trans("NewMenu").'</a>';
|
2008-01-08 19:35:13 +01:00
|
|
|
|
print '</div>';
|
|
|
|
|
|
}
|
|
|
|
|
|
else
|
|
|
|
|
|
{
|
|
|
|
|
|
$langs->load("errors");
|
|
|
|
|
|
print '<div class="error">'.$langs->trans("ErrorFeatureNeedJavascript").'</div>';
|
2007-04-30 10:35:47 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
2008-01-08 19:35:13 +01:00
|
|
|
|
$db->close();
|
|
|
|
|
|
|
2008-01-08 19:48:12 +01:00
|
|
|
|
print '<br>';
|
|
|
|
|
|
|
2008-01-08 19:35:13 +01:00
|
|
|
|
llxFooter('$Date$ - $Revision$');
|
2007-04-30 10:35:47 +02:00
|
|
|
|
?>
|
2007-05-07 18:44:27 +02:00
|
|
|
|
|