aDashboardRows = []; $this->iRows = 0; } /** * * @param \Combodo\iTop\Application\UI\Base\Layout\Dashboard\DashboardRow $oDashboardRow * * @return DashboardLayout */ public function AddDashboardRow(DashboardRow $oDashboardRow): DashboardLayout { $oDashboardRow->SetRowIndex($this->iRows); $this->aDashboardRows[] = $oDashboardRow; $this->iRows++; return $this; } public function GetSubBlocks() { return $this->aDashboardRows; } }