dolibarr/htdocs/about.php

128 lines
3.8 KiB
PHP
Raw Normal View History

2004-10-20 23:06:45 +02:00
<?php
2007-08-24 17:40:04 +02:00
/* Copyright (C) 2003-2004 Rodolphe Quiedeville <rodolphe@quiedeville.org>
* Copyright (C) 2003 Jean-Louis Bergamo <jlb@j1b.org>
2008-05-13 08:48:48 +02:00
* Copyright (C) 2004-2008 Laurent Destailleur <eldy@users.sourceforge.net>
2007-01-16 13:18:49 +01:00
* Copyright (C) 2007 Franky Van Liedekerke <franky.van.liedekerke@telenet.be>
2007-11-01 21:39:36 +01:00
* Copyright (C) 2005-2007 Regis Houssin <regis@dolibarr.fr>
2003-07-24 13:50:45 +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.
*/
2004-12-12 04:53:31 +01:00
2005-04-11 21:09:37 +02:00
/**
2007-11-27 07:56:45 +01:00
* \file htdocs/about.php
* \brief Fichier page a propos
2008-05-13 08:48:48 +02:00
* \version $Id$
2007-11-27 07:56:45 +01:00
*/
2004-12-12 04:53:31 +01:00
2003-09-11 22:18:51 +02:00
require("./pre.inc.php");
2003-07-24 13:50:45 +02:00
2007-01-16 13:18:49 +01:00
$langs->load("admin");
2005-04-11 21:09:37 +02:00
2003-07-24 13:50:45 +02:00
llxHeader();
2005-04-11 21:09:37 +02:00
print_fiche_titre("Dolibarr",'','setup');
2005-07-02 15:19:18 +02:00
print "<br>\n";
print $langs->trans("Version").':';
print '<ul>';
print '<li>'.DOL_VERSION.'</li>';
print '</ul>';
print "<br>\n";
print $langs->trans("DolibarrLicense").':';
print '<ul>';
print '<li>GNU/GPL</li>';
print '</ul>';
2005-04-11 21:09:37 +02:00
2006-06-23 22:18:18 +02:00
print "<br>\n";
2005-04-11 21:09:37 +02:00
2008-09-08 15:48:04 +02:00
print $langs->trans("Developpers").':';
2005-04-11 21:09:37 +02:00
print '<ul>';
2008-09-08 15:48:04 +02:00
print '<li><a target="blank" href="http://rodolphe.quiedeville.org">Rodolphe Qui<75>deville</a> ('.$langs->trans("Author").')';
2005-04-11 21:09:37 +02:00
print '<li><a target="blank" href="http://www.ipsyn.net">Jean-Louis Bergamo</a></li>';
2008-09-08 15:48:04 +02:00
print '<li><a target="blank" href="http://www.destailleur.fr/">Laurent Destailleur</a> ('.$langs->trans("DolibarrProjectLeader").')</li>';
2005-04-11 21:09:37 +02:00
print '<li>Eric Seigne</li>';
print '<li>Benoit Mortier</li>';
print '<li>R<>gis Houssin</li>';
2005-04-11 21:09:37 +02:00
print '</ul>';
2006-06-23 22:18:18 +02:00
print "<br>\n";
2005-04-11 21:09:37 +02:00
2006-06-23 22:18:18 +02:00
print $langs->trans("Informations").':';
2005-04-11 21:09:37 +02:00
print '<ul>';
print '<li>';
print '<a target="blank" href="http://www.dolibarr.org/">'.$langs->trans("OfficialWebSite").'</a>';
print '</li>';
// Si langue francaise, on affiche site web francophone
2006-06-23 22:18:18 +02:00
if (eregi('^fr_',$langs->getDefaultLang()))
{
print '<li>';
2007-11-30 13:26:49 +01:00
print '<a target="blank" href="http://www.dolibarr.fr/">'.$langs->trans("OfficialWebSiteFr").'</a>';
print '</li>';
2007-10-11 12:06:57 +02:00
print '<li>';
2008-09-08 15:48:04 +02:00
print '<a target="blank" href="http://wiki.dolibarr.org/">'.$langs->trans("OfficialWikiFr").'</a>';
2007-10-11 12:06:57 +02:00
print '</li>';
2006-06-23 22:18:18 +02:00
}
2005-04-11 21:09:37 +02:00
print '<li>';
2006-06-23 22:18:18 +02:00
print '<a target="blank" href="http://freshmeat.net/projects/dolibarr/">Freshmeat</a>';
print '</li>';
2005-04-11 21:09:37 +02:00
2006-06-23 22:18:18 +02:00
if (eregi('^fr_',$langs->getDefaultLang()))
{
print '<li>';
print 'Les t<>ches en cours de r<>alisation sur Dolibarr sont consultables dans le <a target="blank" href="http://savannah.nongnu.org/task/?group=dolibarr">gestionnaire de projet</a> sur Savannah.';
print '</li>';
print '<li>';
print 'Si vous trouvez un bogue dans Dolibarr, vous pouvez en informer les d<>veloppeurs sur le <a target="blank" href="http://savannah.nongnu.org/bugs/?group=dolibarr">syst<73>me de gestion des bogues</a> de Savannah.';
print '</li>';
print '<li>';
print 'Le code source de Dolibarr est consultable par l\'<a target="blank" href="http://savannah.nongnu.org/cgi-bin/viewcvs/dolibarr/dolibarr/">interface web du cvs</a>.';
print '</li>';
2006-06-23 22:18:18 +02:00
}
2005-04-11 21:09:37 +02:00
print '</ul>';
2006-06-23 22:18:18 +02:00
if (eregi('^fr_',$langs->getDefaultLang()))
{
2005-04-11 21:09:37 +02:00
print '<p>';
print 'Vente / Support';
print '<ul>';
print '<li>';
2008-05-13 08:48:48 +02:00
print 'Contactez Rodolphe Qui<75>deville sur <a target="blank" href="http://rodolphe.quiedeville.org">rodolphe.quiedeville.org</a>';
2005-04-11 21:09:37 +02:00
print '</li>';
print '</ul>';
2006-06-23 22:18:18 +02:00
}
2005-04-11 21:09:37 +02:00
2003-08-11 20:23:35 +02:00
llxFooter('$Date$ - $Revision$');
2003-07-24 13:50:45 +02:00
?>