Newscoop\Service\Implementation\SyncResourceServiceDoctrine::getThemePath PHP Method

getThemePath() public method

public getThemePath ( $themePath )
    function getThemePath($themePath)
    {
        Validation::notEmpty($themePath, 'themePath');
        $pathRsc = new Resource();
        $pathRsc->setName(self::THEME_PATH_RSC_NAME);
        $pathRsc->setPath($themePath);
        return $this->getSynchronized($pathRsc);
    }