yii\widgets\BaseListView::renderEmpty PHP Метод

renderEmpty() публичный Метод

Renders the HTML content indicating that the list view has no data.
См. также: emptyText
public renderEmpty ( ) : string
Результат string the rendering result
    public function renderEmpty()
    {
        $options = $this->emptyTextOptions;
        $tag = ArrayHelper::remove($options, 'tag', 'div');
        return Html::tag($tag, $this->emptyText, $options);
    }