dolibarr/htdocs/admin/system/about.php

223 lines
7.2 KiB
PHP
Raw Normal View History

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>
2013-03-14 23:01:48 +01:00
* Copyright (C) 2004-2013 Laurent Destailleur <eldy@users.sourceforge.net>
2010-04-24 19:29:10 +02:00
* Copyright (C) 2007 Franky Van Liedekerke <franky.van.liedekerke@telenet.be>
2018-10-27 14:43:12 +02:00
* Copyright (C) 2005-2007 Regis Houssin <regis.houssin@inodbox.com>
2010-04-24 19:29:10 +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 3 of the License, or
2010-04-24 19:29:10 +02:00
* (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
2019-09-23 21:55:30 +02:00
* along with this program. If not, see <https://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
*/
require '../../main.inc.php';
require_once DOL_DOCUMENT_ROOT.'/core/lib/admin.lib.php';
2017-02-22 02:32:35 +01:00
require_once DOL_DOCUMENT_ROOT.'/core/lib/files.lib.php';
2010-04-24 19:29:10 +02:00
2018-09-07 14:58:22 +02:00
// Load translation files required by the page
$langs->loadLangs(array("help", "members", "other", "admin"));
2010-04-24 19:29:10 +02:00
2020-09-16 19:39:50 +02:00
$action = GETPOST('action', 'aZ09');
2021-02-26 22:04:03 +01:00
if (!$user->admin) {
accessforbidden();
}
$sfurl = '';
$version = '0.0';
/*
* Actions
*/
2017-02-22 02:32:35 +01:00
// None
2010-04-24 19:29:10 +02:00
/*
* View
*/
llxHeader();
print load_fiche_titre($langs->trans("ExternalResources"), '', 'title_setup');
2010-04-24 19:29:10 +02:00
print '<div style="padding-left: 30px;">'.img_picto_common('', 'dolibarr_box.png', 'height="120"').'</div>';
2010-04-24 19:29:10 +02:00
print '<div class="fichecenter"><div class="fichehalfleft">';
print $langs->trans("DolibarrLicense").' : ';
print '<ul><li>';
2019-09-23 21:55:30 +02:00
print '<a href="https://www.gnu.org/copyleft/gpl.html">GNU-GPL v3+</a></li>';
print '</li></ul>';
2010-04-24 19:29:10 +02:00
//print "<br>\n";
2010-04-24 19:29:10 +02:00
print $langs->trans("Developpers").':';
print '<ul>';
2016-09-26 01:04:48 +02:00
print '<li>'.$langs->trans("SourcesRepository").': <a href="https://www.github.com/Dolibarr/dolibarr" target="_blank" rel="external">https://www.github.com/Dolibarr/dolibarr</a></li>';
print '<li>'.$langs->trans("SeeWikiForAllTeam").': <a href="https://wiki.dolibarr.org/index.php/Dolibarr_Project" target="_blank" rel="external">https://wiki.dolibarr.org/index.php/Dolibarr_Project</a></li>';
2010-04-24 19:29:10 +02:00
print '</ul>';
//print "<br>\n";
2010-04-24 19:29:10 +02:00
print $langs->trans("OtherInformations").':';
print '<ul>';
print '<li>';
2016-09-26 01:04:48 +02:00
print '<a target="_blank" href="https://www.dolibarr.org/" rel="external">'.$langs->trans("OfficialWebSite").'</a>';
2010-04-24 19:29:10 +02:00
print '</li>';
2015-09-01 10:08:03 +02:00
// Show local site
2020-11-04 16:07:59 +01:00
/*
if (preg_match('/^fr_/i', $langs->getDefaultLang()))
2010-04-24 19:29:10 +02:00
{
print '<li>';
print '<a target="_blank" href="https://www.dolibarr.fr/" rel="external">'.$langs->trans("OfficialWebSiteLocal", $langs->transnoentitiesnoconv("France")).'</a>';
2015-09-01 10:08:03 +02:00
print '</li>';
}
if (preg_match('/^el_/i', $langs->getDefaultLang()))
2015-09-01 10:08:03 +02:00
{
print '<li>';
print '<a target="_blank" href="https://www.dolibarr.gr/" rel="external">'.$langs->trans("OfficialWebSiteLocal", $langs->transnoentitiesnoconv("Greece")).'</a>';
2015-09-01 10:08:03 +02:00
print '</li>';
}
if (preg_match('/^es_/i', $langs->getDefaultLang()))
2015-09-01 10:08:03 +02:00
{
print '<li>';
print '<a target="_blank" href="https://www.dolibarr.es/" rel="external">'.$langs->trans("OfficialWebSiteLocal", $langs->transnoentitiesnoconv("Spain")).'</a>';
2015-09-01 10:08:03 +02:00
print '</li>';
}
if (preg_match('/^it_/i', $langs->getDefaultLang()))
2015-09-01 10:08:03 +02:00
{
print '<li>';
print '<a target="_blank" href="https://www.dolibarr.it/" rel="external">'.$langs->trans("OfficialWebSiteLocal", $langs->transnoentitiesnoconv("Italy")).'</a>';
2015-09-01 10:08:03 +02:00
print '</li>';
}
if (preg_match('/^de_/i', $langs->getDefaultLang()))
2015-09-01 10:08:03 +02:00
{
print '<li>';
print '<a target="_blank" href="https://www.dolibarr.de/" rel="external">'.$langs->trans("OfficialWebSiteLocal", $langs->transnoentitiesnoconv("Germany")).'</a>';
2010-04-24 19:29:10 +02:00
print '</li>';
2020-11-04 16:07:59 +01:00
}*/
2010-04-24 19:29:10 +02:00
print '<li>';
2016-09-26 01:04:48 +02:00
print '<a target="_blank" href="https://wiki.dolibarr.org/" rel="external">'.$langs->trans("OfficialWiki").'</a>';
2010-04-24 19:29:10 +02:00
print '</li>';
2012-03-10 13:52:08 +01:00
print '</ul>';
print $langs->trans("Demo").':';
print '<ul>';
2010-04-24 19:29:10 +02:00
print '<li>';
2016-09-26 01:04:48 +02:00
print '<a target="_blank" href="https://www.dolibarr.org/onlinedemo/" rel="external">'.$langs->trans("OfficialDemo").'</a>';
2010-04-24 19:29:10 +02:00
print '</li>';
2012-03-10 13:52:08 +01:00
print '</ul>';
print $langs->trans("ModulesMarketPlaces").':';
print '<ul>';
print '<li>';
2016-09-26 01:04:48 +02:00
print '<a target="_blank" href="https://www.dolistore.com" rel="external">'.$langs->trans("OfficialMarketPlace").'</a>';
print '</li>';
2010-04-24 19:29:10 +02:00
print '</ul>';
print '</div><div class="fichehalfright">';
2012-06-15 01:09:25 +02:00
print $langs->trans("HelpCenter").':';
2010-04-24 19:29:10 +02:00
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" data-ajax="false">'.$langs->trans("HelpCenter").'</a>';
2010-04-24 19:29:10 +02:00
print '</li>';
print '</ul>';
2012-06-15 01:09:25 +02:00
print $langs->trans("Foundation").':';
2010-04-24 19:29:10 +02:00
print '<ul>';
$url = 'https://wiki.dolibarr.org/index.php/Subscribe';
2021-02-26 22:04:03 +01:00
if (preg_match('/^fr_/i', $langs->getDefaultLang())) {
$url = 'https://wiki.dolibarr.org/index.php/Adh%C3%A9rer';
}
if (preg_match('/^es_/i', $langs->getDefaultLang())) {
$url = 'https://wiki.dolibarr.org/index.php/Subscribirse';
}
print '<li><a href="'.$url.'" target="_blank" rel="external">'.$langs->trans("SubscribeToFoundation").'</a></li>';
2017-02-22 02:19:50 +01:00
print '</ul>';
print $langs->trans("SocialNetworks").':';
print '<ul>';
2013-11-16 15:40:46 +01:00
2016-09-26 01:04:48 +02:00
print '<li><a href="https://facebook.com/dolibarr" target="_blank" rel="external">FaceBook</a></li>';
print '<li><a href="https://twitter.com/dolibarr" target="_blank" rel="external">Twitter</a></li>';
2013-11-16 15:40:46 +01:00
print '</ul>';
2014-05-24 17:00:49 +02:00
print $langs->trans("OtherResources").':';
print '<ul>';
$url = 'https://saas.dolibarr.org'; $title = $langs->trans("OfficialWebHostingService");
2021-02-26 22:04:03 +01:00
if (preg_match('/^fr_/i', $langs->getDefaultLang())) {
$url = 'https://wiki.dolibarr.org/index.php/Solutions_Cloud_pour_Dolibarr_ERP_CRM';
}
if (preg_match('/^es_/i', $langs->getDefaultLang())) {
$url = 'https://wiki.dolibarr.org/index.php/Soluciones_en_la_Nube';
}
print '<li>';
print '<a target="_blank" href="'.$url.'" rel="external">'.$title.'</a>';
print '</li>';
$url = 'https://partners.dolibarr.org'; $title = $langs->trans("ReferencedPreferredPartners");
2014-05-24 17:00:49 +02:00
print '<li>';
print '<a target="_blank" href="'.$url.'" rel="external">'.$title.'</a>';
2014-05-24 17:00:49 +02:00
print '</li>';
2010-04-24 19:29:10 +02:00
print '</ul>';
print '</div>';
print '</div>';
print '<div class="clearboth"></div>';
$showpromotemessage = 1;
2021-02-26 22:04:03 +01:00
if ($showpromotemessage) {
$tmp = versiondolibarrarray();
2021-02-26 22:04:03 +01:00
if (is_numeric($tmp[2])) { // Not alpha, beta or rc
print '<br>';
print '<br>';
2021-02-26 22:04:03 +01:00
if ((empty($tmp[2]) && (strpos($tmp[1], '0') === 0)) || (strpos($tmp[2], '0') === 0)) {
print $langs->trans("TitleExampleForMajorRelease").':<br>';
print '<textarea style="width:80%; min-height: 60px">';
print $langs->trans("ExampleOfNewsMessageForMajorRelease", DOL_VERSION, DOL_VERSION);
print '</textarea>';
} else {
print $langs->trans("TitleExampleForMaintenanceRelease").':<br>';
print '<textarea style="width:80%; min-height: 60px">';
print $langs->trans("ExampleOfNewsMessageForMaintenanceRelease", DOL_VERSION, DOL_VERSION);
print '</textarea>';
}
}
}
2018-07-28 14:29:28 +02:00
// End of page
llxFooter();
2012-03-10 13:52:08 +01:00
$db->close();