* Copyright (C) 2003 Jean-Louis Bergamo * Copyright (C) 2004-2013 Laurent Destailleur * Copyright (C) 2007 Franky Van Liedekerke * Copyright (C) 2005-2007 Regis Houssin * * 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 * (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, see . */ /** * \file htdocs/admin/system/about.php * \brief About Dolibarr File page */ // Load Dolibarr environment require '../../main.inc.php'; require_once DOL_DOCUMENT_ROOT.'/core/lib/admin.lib.php'; require_once DOL_DOCUMENT_ROOT.'/core/lib/files.lib.php'; // Load translation files required by the page $langs->loadLangs(array("help", "members", "other", "admin")); $action = GETPOST('action', 'aZ09'); if (!$user->admin) { accessforbidden(); } $sfurl = ''; $version = '0.0'; /* * Actions */ // None /* * View */ llxHeader('', '', '', '', 0, 0, '', '', '', 'mod-admin page-system_about'); print load_fiche_titre($langs->trans("ExternalResources"), '', 'title_setup'); print '
'.img_picto_common('', 'dolibarr_box.png', 'height="120"').'
'; print '
'; print $langs->trans("DolibarrLicense").' : '; print ''; //print "
\n"; print $langs->trans("Developpers").':'; print ''; //print "
\n"; print $langs->trans("OtherInformations").':'; print ''; print $langs->trans("Demo").':'; print ''; print $langs->trans("ModulesMarketPlaces").':'; print ''; print '
'; print $langs->trans("HelpCenter").':'; print '
    '; print '
  • '; //print $langs->trans("SeeWikiPage",'http://wiki.dolibarr.org/index.php/List_of_OpenSource_Software_companies_and_freelancers'); print ''.$langs->trans("HelpCenter").''; print '
  • '; print '
'; print $langs->trans("Foundation").':'; print '
    '; $url = 'https://wiki.dolibarr.org/index.php/Subscribe'; 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 '
  • '.$langs->trans("SubscribeToFoundation").'
  • '; print '
'; print $langs->trans("SocialNetworks").':'; print ''; print $langs->trans("OtherResources").':'; print '
    '; $url = 'https://saas.dolibarr.org'; $title = $langs->trans("OfficialWebHostingService"); 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 '
  • '; print ''.$title.''; print '
  • '; $url = 'https://partners.dolibarr.org'; $title = $langs->trans("ReferencedPreferredPartners"); print '
  • '; print ''.$title.''; print '
  • '; print '
'; print '
'; print '
'; print '
'; $showpromotemessage = 1; if ($showpromotemessage) { $tmp = versiondolibarrarray(); if (is_numeric($tmp[2])) { // Not alpha, beta or rc print '
'; print '
'; if ((empty($tmp[2]) && (strpos($tmp[1], '0') === 0)) || (strpos($tmp[2], '0') === 0)) { print $langs->trans("TitleExampleForMajorRelease").':
'; print ''; } else { print $langs->trans("TitleExampleForMaintenanceRelease").':
'; print ''; } } } // End of page llxFooter(); $db->close();