consolidate Infrastructure interface and implementation classes
This commit is contained in:
@ -2,12 +2,31 @@ using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Text.RegularExpressions;
|
||||
using System.Text;
|
||||
using Oqtane.Infrastructure.Interfaces;
|
||||
using Oqtane.Interfaces;
|
||||
using Oqtane.Models;
|
||||
|
||||
namespace Oqtane.Infrastructure
|
||||
{
|
||||
public interface ITokenReplace
|
||||
{
|
||||
void AddSource(ITokenSource source);
|
||||
|
||||
void AddSource(Func<IDictionary<string, object>> sourceFunc);
|
||||
|
||||
void AddSource(IDictionary<string, object> source);
|
||||
|
||||
void AddSource(string key, object value);
|
||||
|
||||
void AddSource(string name, ITokenSource source);
|
||||
|
||||
void AddSource(string name, Func<IDictionary<string, object>> sourceFunc);
|
||||
|
||||
void AddSource(string name, IDictionary<string, object> source);
|
||||
|
||||
void AddSource(string name, string key, object value);
|
||||
|
||||
string ReplaceTokens(string source);
|
||||
}
|
||||
|
||||
public class TokenReplace : ITokenReplace
|
||||
{
|
||||
public const string GenericName = "generic";
|
||||
|
Reference in New Issue
Block a user