Prado\Web\Services\TPageService::getRequestedPagePath PHP 메소드

getRequestedPagePath() 공개 메소드

public getRequestedPagePath ( ) : string
리턴 string the requested page path
    public function getRequestedPagePath()
    {
        if ($this->_pagePath === null) {
            $this->_pagePath = strtr($this->determineRequestedPagePath(), '/\\', '..');
            if (empty($this->_pagePath)) {
                throw new THttpException(404, 'pageservice_page_required');
            }
        }
        return $this->_pagePath;
    }