N°2847 - Dashboards edition

This commit is contained in:
Eric
2020-11-03 16:14:45 +01:00
parent b7543b54e8
commit cfbfaad154
8 changed files with 123 additions and 139 deletions

View File

@@ -110,5 +110,22 @@ class DashboardColumn extends UIBlock
return $this;
}
/**
* @return bool
*/
public function IsLastRow(): bool
{
return $this->bLastRow;
}
/**
* @param bool $bLastRow
*
* @return DashboardColumn
*/
public function SetLastRow(bool $bLastRow): DashboardColumn
{
$this->bLastRow = $bLastRow;
return $this;
}
}