Prado\Data\ActiveRecord\Scaffold\TScaffoldSearch::getListView PHP Метод

getListView() защищенный Метод

protected getListView ( ) : TScaffoldListView
Результат TScaffoldListView the scaffold list view this search box belongs to.
    protected function getListView()
    {
        if ($this->_list === null && ($id = $this->getListViewID()) !== null) {
            $this->_list = $this->getParent()->findControl($id);
            if ($this->_list === null) {
                throw new TConfigurationException('scaffold_unable_to_find_list_view', $id);
            }
        }
        return $this->_list;
    }