Files
Umbraco-CMS/umbraco/cms/businesslogic/macro/IMacroEngine.cs
hartvig 9dfe873de0 WIP IMacroEngine
[TFS Changeset #81536]
2010-12-06 13:49:34 +00:00

28 lines
616 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using umbraco.interfaces;
namespace umbraco.cms.businesslogic.macro
{
public interface IMacroEngine
{
string Name
{
get;
}
List<string> SupportedExtensions
{
get;
}
Dictionary<string, IMacroGuiRendering> SupportedProperties
{
get;
}
bool Validate(string code, INode currentPage, out string errorMessage);
string Execute(MacroModel macro, INode currentPage);
}
}