2010-04-24 19:29:10 +02:00
< ? php
/* Copyright ( C ) 2003 - 2004 Rodolphe Quiedeville < rodolphe @ quiedeville . org >
* Copyright ( C ) 2003 Jean - Louis Bergamo < jlb @ j1b . org >
* Copyright ( C ) 2004 - 2010 Laurent Destailleur < eldy @ users . sourceforge . net >
* Copyright ( C ) 2007 Franky Van Liedekerke < franky . van . liedekerke @ telenet . be >
* Copyright ( C ) 2005 - 2007 Regis Houssin < regis @ dolibarr . fr >
*
* 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
2011-08-01 00:21:57 +02:00
* along with this program . If not , see < http :// www . gnu . org / licenses />.
2010-04-24 19:29:10 +02:00
*/
/**
2010-04-24 19:38:57 +02:00
* \file htdocs / admin / system / about . php
2010-04-24 19:29:10 +02:00
* \brief About Dolibarr File page
*/
2010-04-24 19:38:57 +02:00
require ( " ../../main.inc.php " );
2010-04-24 19:29:10 +02:00
$langs -> load ( " admin " );
2011-02-17 09:03:43 +01:00
$langs -> load ( " help " );
2010-04-24 19:29:10 +02:00
/*
* View
*/
llxHeader ();
print_fiche_titre ( " Dolibarr " , '' , 'setup' );
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>' ;
print " <br> \n " ;
print $langs -> trans ( " Developpers " ) . ':' ;
print '<ul>' ;
print '<li>' . $langs -> trans ( " SeeWikiForAllTeam " ) . ': <a href="http://wiki.dolibarr.org/index.php/Dolibarr_Project" target="_blank">http://wiki.dolibarr.org/index.php/Dolibarr_Project</a></li>' ;
print '</ul>' ;
print " <br> \n " ;
print $langs -> trans ( " OtherInformations " ) . ':' ;
print '<ul>' ;
print '<li>' ;
print '<a target="blank" href="http://www.dolibarr.org/">' . $langs -> trans ( " OfficialWebSite " ) . '</a>' ;
print '</li>' ;
// If the French language, it displays French website
if ( preg_match ( '/^fr_/i' , $langs -> getDefaultLang ()))
{
print '<li>' ;
print '<a target="blank" href="http://www.dolibarr.fr/">' . $langs -> trans ( " OfficialWebSiteFr " ) . '</a>' ;
print '</li>' ;
}
print '<li>' ;
print '<a target="blank" href="http://wiki.dolibarr.org/">' . $langs -> trans ( " OfficialWiki " ) . '</a>' ;
print '</li>' ;
print '<li>' ;
print '<a target="blank" href="http://demo.dolibarr.org/public/demo">' . $langs -> trans ( " OfficialDemo " ) . '</a>' ;
print '</li>' ;
2010-09-01 01:36:52 +02:00
print '<li>' ;
print '<a target="blank" href="http://www.dolistore.com">' . $langs -> trans ( " OfficialMarketPlace " ) . '</a>' ;
print '</li>' ;
2010-04-24 19:29:10 +02:00
if ( preg_match ( '/^fr_/i' , $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 projets</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è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>' ;
}
print '</ul>' ;
print $langs -> trans ( " HelpCenter " );
print '<ul>' ;
print '<li>' ;
//print $langs->trans("SeeWikiPage",'http://wiki.dolibarr.org/index.php/List_of_OpenSource_Software_companies_and_freelancers');
print '<a target="_blank" href="' . DOL_URL_ROOT . '/support/index.php">' . $langs -> trans ( " HelpCenter " ) . '</a>' ;
print '</li>' ;
print '</ul>' ;
print '<br>' . $langs -> trans ( " MakeADonation " ) . ':<br>' ;
print '<ul>' ;
print ' < form action = " https://www.paypal.com/cgi-bin/webscr " method = " post " target = " _blank " >
< input type = " hidden " name = " cmd " value = " _s-xclick " >
< input type = " hidden " name = " hosted_button_id " value = " 6573525 " > ' ;
print '<input class="none" type="image" src="' . DOL_URL_ROOT . '/theme/common/paypal.png" border="0" name="submit" alt="Help Dolibarr making a donation">' ;
print '</form>' ;
print '</ul>' ;
2011-08-27 16:24:16 +02:00
llxFooter ();
2010-04-24 19:29:10 +02:00
?>