luya\base\Module::getLayoutPath PHP Method

getLayoutPath() public method

the *@app* namespace views will be looked up for view files
See also: yii\base\Module::getLayoutPath()
public getLayoutPath ( ) : string
return string
    public function getLayoutPath()
    {
        if ($this->useAppLayoutPath) {
            $this->setLayoutPath('@app/views/' . $this->id . '/layouts');
        }
        return parent::getLayoutPath();
    }