luya\base\Module::getLayoutPath PHP 메소드

getLayoutPath() 공개 메소드

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