skeeks\cms\base\Controller::render PHP Method

render() public method

public render ( string $view, array $params = [] ) : string
$view string
$params array
return string
    public function render($view, $params = [])
    {
        if ($this->module instanceof Application) {
            return parent::render($view, $params);
        }
        if (strpos($view, '/') && !strpos($view, '@app/views')) {
            return parent::render($view, $params);
        }
        $viewDir = "@app/views/modules/" . $this->module->id . '/' . $this->id;
        $viewApp = $viewDir . '/' . $view;
        if (isset(\Yii::$app->view->theme->pathMap['@app/views'])) {
            $tmpPaths = [];
            foreach (\Yii::$app->view->theme->pathMap['@app/views'] as $path) {
                $tmpPaths[] = $path . "/modules/" . $this->module->id . '/' . $this->id;
            }
            $tmpPaths[] = $this->viewPath;
            \Yii::$app->view->theme->pathMap = ArrayHelper::merge(\Yii::$app->view->theme->pathMap, [$viewDir => $tmpPaths]);
        }
        return parent::render($viewApp, $params);
    }
Controller