Admin_ThemesController::getThemeFileService PHP 메소드

getThemeFileService() 공개 메소드

Provides the theme files service
public getThemeFileService ( ) : Newscoop\Service\Implementation\ThemeServiceLocalFileSystem
리턴 Newscoop\Service\Implementation\ThemeServiceLocalFileSystem The publication service to be used by this controller.
    public function getThemeFileService()
    {
        if ($this->_themeFileService === null) {
            $this->_themeFileService = $this->getResourceId()->getService(IThemeService::NAME);
        }
        return $this->_themeFileService;
    }