Admin_ThemesController::getThemeFileService PHP Method

getThemeFileService() public method

Provides the theme files service
public getThemeFileService ( ) : Newscoop\Service\Implementation\ThemeServiceLocalFileSystem
return 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;
    }