Frontend\Modules\Faq\Actions\Category::getData PHP Метод

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

Load the data, don't forget to validate the incoming data
private getData ( )
    private function getData()
    {
        // validate incoming parameters
        if ($this->URL->getParameter(1) === null) {
            $this->redirect(FrontendNavigation::getURL(404));
        }
        // get by URL
        $this->record = FrontendFaqModel::getCategory($this->URL->getParameter(1));
        // anything found?
        if (empty($this->record)) {
            $this->redirect(FrontendNavigation::getURL(404));
        }
        $this->record['full_url'] = FrontendNavigation::getURLForBlock('Faq', 'Category') . '/' . $this->record['url'];
        $this->questions = FrontendFaqModel::getAllForCategory($this->record['id']);
    }