New: Enhance help center

This commit is contained in:
Laurent Destailleur 2009-05-08 21:41:54 +00:00
parent f43d69faef
commit 146e786f11
8 changed files with 74 additions and 14 deletions

View File

@ -1,4 +1,4 @@
#Fri May 08 17:10:28 CEST 2009
#Fri May 08 23:29:44 CEST 2009
eclipse.preferences.version=1
encoding//dev/initdemo/initdemo.sql=UTF-8
encoding//dev/skeletons/modMyModule.class.php=ISO-8859-1
@ -208,6 +208,7 @@ encoding//htdocs/langs/en_AU/suppliers.lang=UTF-8
encoding//htdocs/langs/en_AU/trips.lang=UTF-8
encoding//htdocs/langs/en_AU/users.lang=UTF-8
encoding//htdocs/langs/en_AU/withdrawals.lang=UTF-8
encoding//htdocs/langs/en_US=UTF-8
encoding//htdocs/langs/en_US/admin.lang=UTF-8
encoding//htdocs/langs/en_US/agenda.lang=UTF-8
encoding//htdocs/langs/en_US/banks.lang=UTF-8
@ -318,6 +319,7 @@ encoding//htdocs/langs/fi_FI/suppliers.lang=UTF-8
encoding//htdocs/langs/fi_FI/trips.lang=UTF-8
encoding//htdocs/langs/fi_FI/users.lang=UTF-8
encoding//htdocs/langs/fi_FI/withdrawals.lang=UTF-8
encoding//htdocs/langs/fr_FR=UTF-8
encoding//htdocs/langs/fr_FR/admin.lang=UTF-8
encoding//htdocs/langs/fr_FR/agenda.lang=UTF-8
encoding//htdocs/langs/fr_FR/banks.lang=UTF-8
@ -336,6 +338,7 @@ encoding//htdocs/langs/fr_FR/donations.lang=UTF-8
encoding//htdocs/langs/fr_FR/ecm.lang=UTF-8
encoding//htdocs/langs/fr_FR/errors.lang=UTF-8
encoding//htdocs/langs/fr_FR/exports.lang=UTF-8
encoding//htdocs/langs/fr_FR/help.lang=UTF-8
encoding//htdocs/langs/fr_FR/install.lang=UTF-8
encoding//htdocs/langs/fr_FR/interventions.lang=UTF-8
encoding//htdocs/langs/fr_FR/ldap.lang=UTF-8
@ -500,6 +503,7 @@ encoding//htdocs/langs/pl_PL/suppliers.lang=UTF-8
encoding//htdocs/langs/pl_PL/trips.lang=UTF-8
encoding//htdocs/langs/pl_PL/users.lang=UTF-8
encoding//htdocs/langs/pl_PL/withdrawals.lang=UTF-8
encoding//htdocs/langs/pt_PT=UTF-8
encoding//htdocs/langs/pt_PT/admin.lang=UTF-8
encoding//htdocs/langs/pt_PT/agenda.lang=UTF-8
encoding//htdocs/langs/pt_PT/banks.lang=UTF-8
@ -517,6 +521,7 @@ encoding//htdocs/langs/pt_PT/donations.lang=UTF-8
encoding//htdocs/langs/pt_PT/ecm.lang=UTF-8
encoding//htdocs/langs/pt_PT/errors.lang=UTF-8
encoding//htdocs/langs/pt_PT/exports.lang=UTF-8
encoding//htdocs/langs/pt_PT/help.lang=UTF-8
encoding//htdocs/langs/pt_PT/install.lang=UTF-8
encoding//htdocs/langs/pt_PT/interventions.lang=UTF-8
encoding//htdocs/langs/pt_PT/ldap.lang=UTF-8
@ -644,4 +649,4 @@ encoding//htdocs/webservices/server.wsdl=UTF-8
encoding//mysql/data/data.sql=UTF-8
encoding//scripts/banque/graph-solde.php=ISO-8859-1
encoding//scripts/mailing/mailing-send.php=ISO-8859-1
encoding/<project>=ISO-8859-1
encoding/<project>=UTF-8

View File

@ -0,0 +1,7 @@
# Dolibarr language file - en_US - help
CHARSET=UTF-8
CommunitySupport=Community suuport
EMailSupport=Emails support
RemoteControlSupport=Real time and remote support
ToSeeListOfAvailableRessources=To contact/see available ressources:
ClickHere=Click here

View File

@ -1,3 +1,7 @@
# Dolibarr language file - fr_FR - help
CHARSET=UTF-8
HelpInvoice=Facturation
CommunitySupport=Support communautaire
EMailSupport=Support emails
RemoteControlSupport=Support temps réel à distance
ToSeeListOfAvailableRessources=Pour contacter/voir les ressources disponibles:
ClickHere=Cliquez ici

View File

@ -1,3 +1,2 @@
# Dolibarr language file - pt_PT - help
CHARSET=UTF-8
HelpInvoice=Facturação

View File

@ -26,6 +26,7 @@
include_once("./inc.php");
$langs->load("other");
$langs->load("help");
pHeader("Dolibarr Help Service Center",$_SERVER["PHP_SELF"]);
@ -41,44 +42,48 @@ print '<table border="1">';
// Line of possible services
print '<tr>';
print '<td align="center">';
print '<b>Community support</b>';
print '<b>'.$langs->trans("CommunitySupport").'</b>';
print '</td>';
print '<td align="center">';
print '<b>EMailing support</b>';
print '<b>'.$langs->trans("EMailSupport").'</b>';
print '</td>';
print '<td align="center">';
print '<b>Remote control support</b>';
print '<b>'.$langs->trans("RemoteControlSupport").'</b>';
print '</td>';
print '</tr>';
// Area of support cells
print '<tr>';
print '<td width="33%" align="center" valign="top">';
print '<td width="33%" align="center" valign="top" style="background:#FFFFFF">';
print '<table class="nocellnopadd"><tr><td align="center" valign="top">';
print img_picto('','/theme/common/who.png','',1);
print '</td></tr><tr><td align="center">';
print '<br>'.$langs->trans("ForDocumentationSeeWiki",'http://wiki.dolibarr.org','http://wiki.dolibarr.org').'<br>';
print '<br>'.$langs->trans("ForAnswersSeeForum",'http://www.dolibarr.org','http://www.dolibarr.org').'<br>';
$urlwiki='http://wiki.dolibarr.org';
if ($langs->defaultlang == 'fr_FR') $urlwiki='http://wiki.dolibarr.org/index.php/Accueil';
if ($langs->defaultlang == 'es_ES') $urlwiki='http://wiki.dolibarr.org/index.php/Portada';
print '<br>'.$langs->trans("ForDocumentationSeeWiki",$urlwiki,$urlwiki).'<br>';
print '<br>'.$langs->trans("ForAnswersSeeForum",'http://www.dolibarr.org/forum/','http://www.dolibarr.org/forum/').'<br>';
print '</td></tr></table>';
print '</td>';
print '<td width="34%" align="center" valign="top">';
print '<td width="34%" align="center" valign="top" style="background:#FFFFFF">';
print '<table class="nocellnopadd"><tr><td align="center" valign="top">';
print img_picto('','/theme/common/pagemaster.png','',1);
print img_picto('','/theme/common/mail.png','',1);
print '</td></tr><tr><td align="center">';
print '<br>'.$langs->trans("FeatureNotYetAvailable").'.';
print '</td></tr></table>';
print '</td>';
print '<td width="33%" align="center" valign="top">';
print '<td width="33%" align="center" valign="top" style="background:#FFFFFF">';
print '<table class="nocellnopadd"><tr><td align="center" valign="top">';
print img_picto('','/theme/common/internet.png','',1);
print '</td></tr><tr><td align="center">';
print '<br>'.$langs->trans("FeatureNotYetAvailable").'.';
print '<br>'.$langs->trans("ToSeeListOfAvailableRessources").' ';
print '<a href="online.php">'.$langs->trans("ClickHere").'</a>';
print '</td></tr></table>';
print '</td>';

40
htdocs/support/online.php Normal file
View File

@ -0,0 +1,40 @@
<?php
/* Copyright (C) 2008-2009 Laurent Destailleur <eldy@users.sourceforge.net>
*
* 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.
*/
/**
* \file htdocs/install/phpinfo.php
* \ingroup install
* \brief Provide an Online Help support
* \version $Id$
*/
include_once("./inc.php");
$langs->load("other");
$langs->load("help");
pHeader("Dolibarr Help Service Center",$_SERVER["PHP_SELF"]);
print '<br><br><br>';
print $langs->trans("FeatureNotYetAvailable");
pFooter();
?>

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.8 KiB

After

Width:  |  Height:  |  Size: 2.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.3 KiB