N°4482 - Polishing : Export page

This commit is contained in:
acognet
2022-01-14 11:52:55 +01:00
parent c1c264d6d8
commit 4923ac7015
2 changed files with 9 additions and 2 deletions

View File

@@ -25,7 +25,9 @@ class InputWithLabel extends UIBlock
protected $oInput;
/** @var bool Label before input ? */
protected $bBeforeInput;
/**@String $sDescription for tooltip*/
/**@var string $sDescription for tooltip
* @since 3.0.1
*/
protected $sDescription;
/**
@@ -106,6 +108,7 @@ class InputWithLabel extends UIBlock
}
/**
* @since 3.0.1
* @return mixed
*/
public function GetDescription()
@@ -114,6 +117,7 @@ class InputWithLabel extends UIBlock
}
/**
* @since 3.0.1
* @param mixed $sDescription
*/
public function SetDescription($sDescription)
@@ -122,6 +126,7 @@ class InputWithLabel extends UIBlock
return $this;
}
/**
* @since 3.0.1
* @return bool
*/
public function HasDescription(): bool

View File

@@ -18,7 +18,9 @@ trait tInputLabel
protected $bIsLabelBefore = true;
/** @var string|null Label to display with the input (null for no label) */
protected $sLabel = null;
/**@String $sDescription for tooltip*/
/**@var string $sDescription for tooltip
* @since 3.0.1
*/
protected $sDescription;
/**