kartik\grid\ColumnTrait::renderPageSummaryCell PHP Method

renderPageSummaryCell() public method

Renders the page summary cell.
public renderPageSummaryCell ( ) : string
return string the rendered result
    public function renderPageSummaryCell()
    {
        $prepend = ArrayHelper::remove($this->pageSummaryOptions, 'prepend', '');
        $append = ArrayHelper::remove($this->pageSummaryOptions, 'append', '');
        return Html::tag('td', $prepend . $this->renderPageSummaryCellContent() . $append, $this->pageSummaryOptions);
    }