Backend\Modules\Blog\Actions\Index::loadDataGrids PHP Метод

loadDataGrids() приватный Метод

Loads the datagrids for the blogposts
private loadDataGrids ( )
    private function loadDataGrids()
    {
        $this->loadDataGridAllPosts();
        $this->loadDataGridDrafts();
        // the most recent blogposts, only shown when we have more than 1 page in total
        if ($this->dgPosts->getNumResults() > $this->dgPosts->getPagingLimit()) {
            $this->loadDataGridRecentPosts();
        }
    }