2
0
forked from Wavyzz/dolibarr

NEW Bulk actions available on supplier orders

This commit is contained in:
Laurent Destailleur
2017-04-09 13:12:25 +02:00
parent bb7c164752
commit 52c86cb3f5
12 changed files with 913 additions and 446 deletions

View File

@@ -2649,6 +2649,22 @@ function img_printer($titlealt = "default", $other='')
return img_picto($titlealt,'printer.png',$other);
}
/**
* Show delete logo
*
* @param string $titlealt Text on alt and title of image. Alt only if param notitle is set to 1. If text is "TextA:TextB", use Text A on alt and Text B on title.
* @param string $other Add more attributes on img
* @return string Retourne tag img
*/
function img_split($titlealt = 'default', $other = 'class="pictosplit"')
{
global $conf, $langs;
if ($titlealt == 'default') $titlealt = $langs->trans('Split');
return img_picto($titlealt, 'split.png', $other);
}
/**
* Show help logo with cursor "?"
*