239 lines
9.2 KiB
PHP
239 lines
9.2 KiB
PHP
<?php
|
|
/* Copyright (C) 2008-2015 Laurent Destailleur <eldy@users.sourceforge.net>
|
|
* Copyright (C) 2008-2012 Regis Houssin <regis.houssin@inodbox.com>
|
|
* Copyright (C) 2012 Juanjo Menent <jmenent@2byte.es>
|
|
* add german links 2020 Udo Tamm <dev@dolibit.de>
|
|
*
|
|
* 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 <https://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
/**
|
|
* \file htdocs/support/index.php
|
|
* \ingroup support
|
|
* \brief Provide an Online Help support
|
|
*/
|
|
|
|
|
|
// Use its own include to not share the include of Dolibarr
|
|
// This is a standalone feature with no information from Dolibarr to show
|
|
// and no database access to do.
|
|
include_once 'inc.php';
|
|
|
|
$uri = preg_replace('/^http(s?):\/\//i', '', $dolibarr_main_url_root);
|
|
$pos = strstr($uri, '/'); // $pos contient alors url sans nom domaine
|
|
if ($pos == '/') {
|
|
$pos = ''; // si $pos vaut /, on le met a ''
|
|
}
|
|
if (!defined('DOL_URL_ROOT')) {
|
|
define('DOL_URL_ROOT', $pos); // URL racine relative
|
|
}
|
|
|
|
$langs->loadLangs(array("other", "help"));
|
|
|
|
|
|
/*
|
|
* View
|
|
*/
|
|
|
|
pHeader($langs->trans("DolibarrHelpCenter"), $_SERVER["PHP_SELF"]);
|
|
|
|
print '<br><span class="opacitymedium">'.$langs->trans("HelpCenterDesc1")."<br>\n";
|
|
print $langs->trans("HelpCenterDesc2")."</span><br>\n";
|
|
|
|
print '<br>';
|
|
|
|
$homeurl = DOL_URL_ROOT.'/';
|
|
if (GETPOST('dol_hide_toptmenu')) {
|
|
$homeurl .= (strpos($homeurl, '?') === false ? '?' : '&').'dol_hide_toptmenu=1';
|
|
}
|
|
if (GETPOST('dol_hide_leftmenu')) {
|
|
$homeurl .= (strpos($homeurl, '?') === false ? '?' : '&').'dol_hide_leftmenu=1';
|
|
}
|
|
if (GETPOST('dol_no_mouse_hover')) {
|
|
$homeurl .= (strpos($homeurl, '?') === false ? '?' : '&').'dol_no_mouse_hover=1';
|
|
}
|
|
if (GETPOST('dol_use_jmobile')) {
|
|
$homeurl .= (strpos($homeurl, '?') === false ? '?' : '&').'dol_use_jmobile=1';
|
|
}
|
|
// If a global var $dolibarr_main_url_root exists, install is done and complete, we can show the link to home page
|
|
if (!empty($dolibarr_main_url_root)) {
|
|
print $langs->trans("ToGoBackToDolibarr", $homeurl);
|
|
}
|
|
|
|
print '<br><br>';
|
|
|
|
$style1 = 'color: #333344; font-size: 16px; font-weight: bold';
|
|
$style2 = 'color: #5D4455; font-weight: bold;';
|
|
|
|
print "\n";
|
|
print '<div style="width: 100%; text-align: center"><div class="inline-block blocksupport">';
|
|
print "\n";
|
|
|
|
// Forum/wiki support
|
|
print '<table class="login tablesupport" width="100%" style="margin-top: 20px">';
|
|
print '<tr class="title tablesupport-title" valign="top">';
|
|
print '<td width="100%" align="left" valign="middle">';
|
|
|
|
print '<table summary="who"><tr><td>'.img_picto('', 'who.png', 'class="valignmiddle paddingright"', 1).'</td><td>';
|
|
|
|
print '<span style="'.$style1.'">'.$langs->trans("CommunitySupport").'</span>';
|
|
print '<span class="small">';
|
|
print '<br><span class="opacitymedium">'.$langs->trans("TypeOfSupport").':</span> ';
|
|
print '<span style="'.$style2.'">'.$langs->trans("TypeSupportCommunauty").'</span>';
|
|
print '<br><span class="opacitymedium">'.$langs->trans("TypeOfHelp").':</span> ';
|
|
print $langs->trans("TypeHelpDev");
|
|
print '<br><span class="opacitymedium">'.$langs->trans("Efficiency").':</span> ';
|
|
print img_picto_common('', 'redstar', 'class="valignmiddle"', 1).img_picto_common('', 'redstar', 'class="valignmiddle"', 1);
|
|
print '<br><span class="opacitymedium">'.$langs->trans("Price").':</span> ';
|
|
print img_picto_common('', 'star', 'class="valignmiddle"', 1).img_picto_common('', 'star', 'class="valignmiddle"', 1).img_picto_common('', 'star', 'class="valignmiddle"', 1).img_picto_common('', 'star', 'class="valignmiddle"', 1).img_picto_common('', 'star', 'class="valignmiddle"', 1);
|
|
print '</span>';
|
|
|
|
print '</td></tr></table>';
|
|
print '</td>';
|
|
print '</tr>';
|
|
|
|
print '<tr>';
|
|
print '<td align="center" valign="middle">';
|
|
|
|
print '<table class="nocellnopadd">';
|
|
print '<tr><td align="center">';
|
|
$urlwiki = 'https://wiki.dolibarr.org';
|
|
if (preg_match('/fr/i', $langs->defaultlang)) {
|
|
$urlwiki = 'https://wiki.dolibarr.org/index.php/Accueil';
|
|
}
|
|
if (preg_match('/es/i', $langs->defaultlang)) {
|
|
$urlwiki = 'https://wiki.dolibarr.org/index.php/Portada';
|
|
}
|
|
if (preg_match('/de/i', $langs->defaultlang)) {
|
|
$urlwiki = 'https://wiki.dolibarr.org/index.php/Hauptseite';
|
|
}
|
|
print '<div class="wordbreak">';
|
|
print '<br>'.$langs->trans("ForDocumentationSeeWiki", $urlwiki, $urlwiki);
|
|
print '<br>';
|
|
$urlforum = 'https://www.dolibarr.org/forum/';
|
|
$urlforumlocal = 'https://www.dolibarr.org/forum/';
|
|
if (preg_match('/fr/i', $langs->defaultlang)) {
|
|
$urlforumlocal = 'https://www.dolibarr.fr/forum/';
|
|
}
|
|
if (preg_match('/es/i', $langs->defaultlang)) {
|
|
$urlforumlocal = 'https://www.dolibarr.es/foro/';
|
|
}
|
|
if (preg_match('/it/i', $langs->defaultlang)) {
|
|
$urlforumlocal = 'http://www.dolibarr.it/forum/';
|
|
}
|
|
if (preg_match('/gr/i', $langs->defaultlang)) {
|
|
$urlforumlocal = 'https://www.dolibarr.gr/forum/';
|
|
}
|
|
if (preg_match('/de/i', $langs->defaultlang)) {
|
|
$urlforumlocal = 'https://www.dolibarr.de/forum/';
|
|
}
|
|
print '<br>'.$langs->trans("ForAnswersSeeForum", $urlforumlocal, $urlforumlocal).'<br>';
|
|
if ($urlforumlocal != $urlforum) {
|
|
print '<b><a href="'.$urlforum.'">'.$urlforum.'</a></b>';
|
|
}
|
|
print '</div>';
|
|
print '</td></tr></table>';
|
|
print '</td>';
|
|
print '</tr>';
|
|
print '</table>'."\n";
|
|
print "\n";
|
|
|
|
print '</div><div class="inline-block blocksupport">';
|
|
|
|
// EMail support
|
|
print '<table class="login tablesupport" width="100%" style="margin-top: 20px">';
|
|
print '<tr class="title tablesupport-title" valign="top">';
|
|
print '<td width="100%" align="left" valign="middle">';
|
|
|
|
print '<table summary="mail"><tr><td>'.img_picto('', 'mail.png', 'class="valignmiddle paddingright"', 1).'</td><td>';
|
|
|
|
print '<span style="'.$style1.'">'.$langs->trans("EMailSupport").'</span>';
|
|
print '<span class="small">';
|
|
print '<br><span class="opacitymedium">'.$langs->trans("TypeOfSupport").':</span> ';
|
|
print '<span style="'.$style2.'">'.$langs->trans("TypeSupportCommercial").'</span>';
|
|
print '<br><span class="opacitymedium">'.$langs->trans("TypeOfHelp").':</span>';
|
|
print $langs->trans("TypeHelpOnly");
|
|
print '<br><span class="opacitymedium">'.$langs->trans("Efficiency").':</span>';
|
|
print img_picto_common('', 'redstar', 'class="valignmiddle"', 1).img_picto_common('', 'redstar', 'class="valignmiddle"', 1).img_picto_common('', 'redstar', 'class="valignmiddle"', 1);
|
|
print '<br><span class="opacitymedium">'.$langs->trans("Price").':</span> ';
|
|
print img_picto_common('', 'star', 'class="valignmiddle"', 1).img_picto_common('', 'star', 'class="valignmiddle"', 1);
|
|
print '</span>';
|
|
|
|
print '</td></tr></table>';
|
|
|
|
print '</td>';
|
|
print '</tr><tr>';
|
|
$urlwiki = 'https://partners.dolibarr.org';
|
|
print '<td align="center" valign="top">';
|
|
print '<table class="nocellnopadd">';
|
|
print '<tr><td align="center">';
|
|
print '<br><span class="opacitymedium">'.$langs->trans("ToSeeListOfAvailableRessources").'</span><br>';
|
|
print '<br>';
|
|
print '<b><a href="'.$urlwiki.'">'.$langs->trans("ClickHere").'</a></b><br>';
|
|
print '<br>';
|
|
print '<br><br>';
|
|
print '</td></tr></table>';
|
|
print '</td>';
|
|
print '</tr>';
|
|
print '</table>'."\n";
|
|
|
|
|
|
print '</div><div class="inline-block blocksupport">';
|
|
|
|
|
|
// Other support
|
|
print '<table class="login tablesupport" width="100%" style="margin-top: 20px">';
|
|
print '<tr class="title tablesupport-title">';
|
|
print '<td width="100%" align="left" valign="middle">';
|
|
|
|
print '<table summary="special"><tr><td>'.img_picto('', 'pagemaster.png', 'class="valignmiddle paddingright"', 1).'</td><td>';
|
|
|
|
print '<span style="'.$style1.'">'.$langs->trans("OtherSupport").'</span>';
|
|
print '<span class="small">';
|
|
print '<br><span class="opacitymedium">'.$langs->trans("TypeOfSupport").':</span> ';
|
|
print '<span style="'.$style2.'">'.$langs->trans("TypeSupportCommercial").'</span>';
|
|
print '<br><span class="opacitymedium wordbreak">'.$langs->trans("TypeOfHelp").':</span>';
|
|
print $langs->trans("TypeHelpDevForm");
|
|
print '<br><span class="opacitymedium">'.$langs->trans("Efficiency").':</span>';
|
|
print img_picto_common('', 'redstar', 'class="valignmiddle"', 1).img_picto_common('', 'redstar', 'class="valignmiddle"', 1).img_picto_common('', 'redstar', 'class="valignmiddle"', 1).img_picto_common('', 'redstar', 'class="valignmiddle"', 1).img_picto_common('', 'redstar', 'class="valignmiddle"', 1);
|
|
print '<br><span class="opacitymedium">'.$langs->trans("Price").':</span> ';
|
|
print img_picto_common('', 'star', 'class="valignmiddle"', 1);
|
|
print '</span>';
|
|
|
|
print '</td></tr></table>';
|
|
|
|
print '</td>';
|
|
print '</tr><tr>';
|
|
$urlwiki = 'https://partners.dolibarr.org';
|
|
print '<td align="center" valign="top">';
|
|
print '<table class="nocellnopadd">';
|
|
print '<tr><td align="center">';
|
|
print '<br><span class="opacitymedium">'.$langs->trans("ToSeeListOfAvailableRessources").'</span><br>';
|
|
print '<br>';
|
|
print '<b><a href="'.$urlwiki.'">'.$langs->trans("ClickHere").'</a></b><br>';
|
|
print '<br>';
|
|
print '<br><br>';
|
|
print '</td></tr></table>';
|
|
print '</td>';
|
|
print '</tr>';
|
|
print '</table>'."\n";
|
|
print "\n";
|
|
|
|
|
|
print '<div style="clear: both"></div>';
|
|
print '</div>';
|
|
|
|
|
|
pFooter();
|