heading_column = $heading_column; $this->addItem($item); } /** * Add row content. * * @param CTag|array $item Column tag, column data or array with them. * * @return CRow */ public function addItem($item) { if ($item instanceof CCol) { $this->colspan += $item->getColSpan(); parent::addItem($item); } elseif (is_array($item)) { foreach ($item as $el) { if ($el instanceof CCol) { $this->colspan += $el->getColSpan(); parent::addItem($el); } elseif ($el !== null) { $col = $this->createCell($el); $this->colspan += $col->getColSpan(); parent::addItem($col); } } } elseif ($item !== null) { $col = $this->createCell($item); $this->colspan += $col->getColSpan(); parent::addItem($col); } return $this; } /** * Create cell (td or th tag) with given content. * * @param CTag|array $el Cell content. * * @return CCol */ protected function createCell($el) { return ($this->heading_column !== null && $this->itemsCount() == $this->heading_column) ? (new CColHeader($el)) : (new CCol($el)); } /** * Get total colspan count across all cells. * * @return int */ public function getColSpan(): int { return $this->colspan; } }