Added type hinting to extrafields object

This commit is contained in:
Raphaël Doursenaud 2015-10-05 20:30:55 +02:00
parent d24f5538f9
commit 41354ca00d

View File

@ -3564,16 +3564,16 @@ abstract class CommonObject
else return 0; else return 0;
} }
/** /**
* Function to show lines of extrafields with output datas * Function to show lines of extrafields with output datas
* *
* @param object $extrafields Extrafield Object * @param Extrafields $extrafields Extrafield Object
* @param string $mode Show output (view) or input (edit) for extrafield * @param string $mode Show output (view) or input (edit) for extrafield
* @param array $params Optionnal parameters * @param array $params Optional parameters
* @param string $keyprefix Prefix string to add into name and id of field (can be used to avoid duplicate names) * @param string $keyprefix Prefix string to add into name and id of field (can be used to avoid duplicate names)
* *
* @return string * @return string
*/ */
function showOptionals($extrafields, $mode='view', $params=0, $keyprefix='') function showOptionals($extrafields, $mode='view', $params=0, $keyprefix='')
{ {
global $_POST, $conf; global $_POST, $conf;