Пример #1
0
 public OqtAdamFileSystem(IFileRepository oqtFileRepository, IFolderRepository oqtFolderRepository, IServerPaths serverPaths, IAdamPaths adamPaths) : base("Dnn.FilSys")
 {
     _serverPaths        = serverPaths;
     _adamPaths          = adamPaths;
     OqtFileRepository   = oqtFileRepository;
     OqtFolderRepository = oqtFolderRepository;
 }
Пример #2
0
 public ImportApp(IZoneMapper zoneMapper, IServerPaths serverPaths, IEnvironmentLogger envLogger, ZipImport zipImport, IGlobalConfiguration globalConfiguration) : base("Bck.Export")
 {
     _zoneMapper          = zoneMapper;
     _serverPaths         = serverPaths;
     _envLogger           = envLogger;
     _zipImport           = zipImport;
     _globalConfiguration = globalConfiguration;
 }
Пример #3
0
        public EavDiModel(ISite site, IHttpContextAccessor httpC, IHttp http, IServerPaths serverPaths, ILinkPaths linkPaths)
        {
            // itenant should exist
            var x = site.Id;
            var y = httpC.HttpContext.Request.Body;

            Http        = http;
            ServerPaths = serverPaths;
            LinkPaths   = linkPaths;
        }
Пример #4
0
 public EngineBaseDependencies(IServerPaths serverPaths,
                               ILinkPaths linkPaths,
                               TemplateHelpers templateHelpers,
                               IClientDependencyOptimizer clientDependencyOptimizer,
                               Lazy <AppPermissionCheck> appPermCheckLazy)
 {
     ServerPaths               = serverPaths;
     LinkPaths                 = linkPaths;
     TemplateHelpers           = templateHelpers;
     ClientDependencyOptimizer = clientDependencyOptimizer;
     AppPermCheckLazy          = appPermCheckLazy;
 }
Пример #5
0
        public ViewsExportImport(IServerPaths serverPaths,
                                 TemplateHelpers appHelpers,
                                 IEnvironmentLogger envLogger,
                                 Lazy <CmsManager> cmsManagerLazy,
                                 Lazy <JsonBundleSerializer> jsonBundleLazy,
                                 IContextOfSite context) : base("Bck.Views")
        {
            _serverPaths    = serverPaths;
            _appHelpers     = appHelpers;
            _envLogger      = envLogger;
            _cmsManagerLazy = cmsManagerLazy;
            _jsonBundleLazy = jsonBundleLazy;

            _site = context.Site;
            _user = context.User;
        }
Пример #6
0
 public ImportContent(IZoneMapper zoneMapper,
                      IServerPaths serverPaths,
                      IEnvironmentLogger envLogger,
                      Lazy <Import> importerLazy,
                      Lazy <XmlImportWithFiles> xmlImportWithFilesLazy,
                      ZipImport zipImport,
                      Lazy <JsonSerializer> jsonSerializerLazy,
                      IGlobalConfiguration globalConfiguration) : base("Bck.Export")
 {
     _zoneMapper             = zoneMapper;
     _serverPaths            = serverPaths;
     _envLogger              = envLogger;
     _importerLazy           = importerLazy;
     _xmlImportWithFilesLazy = xmlImportWithFilesLazy;
     _zipImport              = zipImport;
     _jsonSerializerLazy     = jsonSerializerLazy;
     _globalConfiguration    = globalConfiguration;
 }
Пример #7
0
 public MvcGlobalFolderRepository(IServerPaths serverPaths) => _serverPaths = serverPaths;
Пример #8
0
 public TemplateHelpers(IServerPaths serverPaths, ILinkPaths linkPaths, IGlobalConfiguration globalConfiguration) : base("Viw.Help")
 {
     ServerPaths          = serverPaths;
     _linkPaths           = linkPaths;
     _globalConfiguration = globalConfiguration;
 }
Пример #9
0
 public OqtAdamFileSystem(IFileRepository fileRepository, IFolderRepository folderRepository, IServerPaths oqtServerPaths) : base("Dnn.FilSys")
 {
     _oqtServerPaths  = oqtServerPaths;
     FileRepository   = fileRepository;
     FolderRepository = folderRepository;
 }
Пример #10
0
 public OqtaneRazorEngine(IServerPaths serverPaths, ILinkPaths linkPaths, TemplateHelpers templateHelpers) : base(serverPaths, linkPaths, templateHelpers)
 {
 }
Пример #11
0
 public IntAdamFileSystem(IServerPaths serverPaths, ISite site) : base("Int.FilSys")
 {
     _serverPaths = serverPaths;
     _site        = site;
 }
Пример #12
0
 public FeaturesBackend(IServerPaths serverPaths, IZoneMapper zoneMapper, IServiceProvider serviceProvider, IGlobalConfiguration globalConfiguration) : base(serviceProvider, "Bck.Feats")
 {
     _serverPaths         = serverPaths;
     _zoneMapper          = zoneMapper;
     _globalConfiguration = globalConfiguration;
 }
Пример #13
0
 public AdamPathsWwwroot(IServerPaths serverPaths) : base(serverPaths, LogNames.Basic)
 {
 }
Пример #14
0
 public AdamPathsBase(IServerPaths serverPaths) : this(serverPaths, LogNames.Basic)
 {
 }
Пример #15
0
 public MvcFileSystem(IServerPaths serverPaths) : base("Dnn.FilSys") => _serverPaths = serverPaths;
Пример #16
0
 public OqtAdamPaths(IServerPaths serverPaths) : base(serverPaths, LogNames.Basic)
 {
 }
Пример #17
0
 protected AdamPathsBase(IServerPaths serverPaths, string logPrefix) : base($"{logPrefix}.AdmPth")
 {
     _serverPaths = serverPaths;
 }