New: Better link to help wiki

This commit is contained in:
Laurent Destailleur 2009-05-18 11:40:33 +00:00
parent 5d47ed6e83
commit 0c74892580
3 changed files with 14 additions and 7 deletions

View File

@ -74,6 +74,8 @@ No=No
All=All
Home=Home
Help=Help
OnlineHelp=Online help
PageWiki=Wiki page
Always=Always
Never=Never
Under=under

View File

@ -73,6 +73,8 @@ No=Non
All=Tout
Home=Accueil
Help=Aide
OnlineHelp=Aide en ligne
PageWiki=Page Wiki
Always=Toujours
Never=Jamais
Under=sous

View File

@ -769,9 +769,6 @@ function top_htmlhead($head, $title='', $disablejs=0, $disablehead=0, $arrayofjs
print '<!-- Includes for PWC (Used for confirm popup) -->'."\n";
// PWC css
print '<link rel="stylesheet" type="text/css" href="'.DOL_URL_ROOT.'/theme/'.$conf->theme.'/alert.css">'."\n";
// Scriptaculous used by PWC
// print '<script type="text/javascript" src="'.DOL_URL_ROOT.'/includes/scriptaculous/src/effects.js"></script>'."\n";
// print '<script type="text/javascript" src="'.DOL_URL_ROOT.'/includes/scriptaculous/src/controls.js"></script>'."\n";
// PWC js
print '<script type="text/javascript" src="'.DOL_URL_ROOT.'/includes/pwc/window.js"></script>'."\n";
}
@ -824,7 +821,7 @@ function top_menu($head, $title='', $target='')
/*
* Barre de menu superieure
* Top menu
*/
print "\n".'<!-- Start top horizontal menu -->'."\n";
print '<div class="tmenu">'."\n";
@ -1006,10 +1003,11 @@ function left_menu($menu_array, $helppagename='', $moresearchform='')
// If complete URL
$helpbaseurl='%s';
$helppage=$helppagename;
$mode='local';
}
else
{
// If relative URL
// If WIKI URL
$helppage='';
if (eregi('^es',$langs->defaultlang))
{
@ -1026,17 +1024,22 @@ function left_menu($menu_array, $helppagename='', $moresearchform='')
$helpbaseurl='http://wiki.dolibarr.org/index.php/%s';
if (eregi('EN:([^|]+)',$helppagename,$reg)) $helppage=$reg[1];
}
$mode='wiki';
}
// Link to help pages
if ($helpbaseurl && $helppage)
{
print '<div class="help">';
print '<a class="help" target="_blank" title="'.$langs->trans("GoToHelpPage").'" href="';
print '<a class="help" target="_blank" title="'.$langs->trans("GoToHelpPage");
if ($mode == 'wiki') print ' - '.$langs->trans("PageWiki").' '.$helppage;
print '" href="';
print sprintf($helpbaseurl,$helppage);
print '">';
print img_picto('',DOL_URL_ROOT.'/theme/common/helpdoc.png','',1).' ';
print $langs->trans("Help").'</a>';
print $langs->trans($mode == 'wiki' ? 'OnlineHelp': 'Help');
if ($mode == 'wiki') print ' ('.dol_trunc($helppage,8).')';
print '</a>';
print '</div>';
}
}