Add ButtonGroup block

This commit is contained in:
Molkobain
2021-03-24 18:32:35 +01:00
parent 85d3cc92c4
commit 318d8ce3c9
10 changed files with 768 additions and 362 deletions

View File

@@ -90,11 +90,8 @@ class Button extends UIBlock
* @param string $sJsCode
* @param string $sOnClickJsCode
*/
public function __construct(
string $sLabel, string $sId = null, string $sTooltip = '', string $sIconClass = '',
string $sActionType = self::DEFAULT_ACTION_TYPE, string $sColor = self::DEFAULT_COLOR, string $sJsCode = '',
string $sOnClickJsCode = ''
) {
public function __construct(string $sLabel, string $sId = null, string $sTooltip = '', string $sIconClass = '', string $sActionType = self::DEFAULT_ACTION_TYPE, string $sColor = self::DEFAULT_COLOR, string $sJsCode = '', string $sOnClickJsCode = '')
{
parent::__construct($sId);
$this->sLabel = $sLabel;