N°5920 - Add linkset's description as corresponding tab's tooltip in object details

This commit is contained in:
Molkobain
2023-01-25 19:24:50 +01:00
parent 2a825c6ba0
commit e72ed33a40
12 changed files with 108 additions and 29 deletions

View File

@@ -1035,10 +1035,13 @@ EOF
/**
* @inheritDoc
*
* @param string|null $sTabDescription {@see \Combodo\iTop\Application\UI\Base\Layout\TabContainer\Tab\Tab::$sDescription}
* @since 3.1.0 N°5920 Add $sTabDescription argument
*/
public function SetCurrentTab($sTabCode = '', $sTabTitle = null)
public function SetCurrentTab($sTabCode = '', $sTabTitle = null, ?string $sTabDescription = null)
{
return $this->m_oTabs->SetCurrentTab($sTabCode, $sTabTitle);
return $this->m_oTabs->SetCurrentTab($sTabCode, $sTabTitle, $sTabDescription);
}
/**