2
0
forked from Wavyzz/dolibarr

NEW Each user can select its landing page.

This commit is contained in:
Laurent Destailleur
2016-07-26 21:12:52 +02:00
parent 92cf979214
commit 3d2dc3c66e
6 changed files with 67 additions and 10 deletions

View File

@@ -2668,10 +2668,10 @@ function img_searchclear($titlealt = 'default', $other = '')
* @param string $text Text info
* @param integer $infoonimgalt Info is shown only on alt of star picto, otherwise it is show on output after the star picto
* @param int $nodiv No div
* @param int $admin 1=Info for admin users. 0=Info for standard users (change only the look)
* @param string $admin '1'=Info for admin users. '0'=Info for standard users (change only the look), 'xxx'=Other
* @return string String with info text
*/
function info_admin($text, $infoonimgalt = 0, $nodiv=0, $admin=1)
function info_admin($text, $infoonimgalt = 0, $nodiv=0, $admin='1')
{
global $conf, $langs;
@@ -2680,7 +2680,7 @@ function info_admin($text, $infoonimgalt = 0, $nodiv=0, $admin=1)
return img_picto($text, 'info', 'class="hideonsmartphone"');
}
return ($nodiv?'':'<div class="'.($admin?'info':'').' hideonsmartphone">').img_picto($admin?$langs->trans('InfoAdmin'):$langs->trans('Note'), ($nodiv?'info':'info_black'), 'class="hideonsmartphone"').' '.$text.($nodiv?'':'</div>');
return ($nodiv?'':'<div class="'.(empty($admin)?'':($admin=='1'?'info':$admin)).' hideonsmartphone">').img_picto($admin?$langs->trans('InfoAdmin'):$langs->trans('Note'), ($nodiv?'info':'info_black'), 'class="hideonsmartphone"').' '.$text.($nodiv?'':'</div>');
}