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;
    }