Files
Umbraco-CMS/umbraco/cms/Actions/IActionHandler.cs
PerPloug 1d6c3f655d WORK IN PROGRESS, GET THE STABLE SOURCE FROM THE DOWNLOADS TAB
4.0.3 release merged into 4.1.0 branch, css tweaks to tree and context menu

[TFS Changeset #64446]
2010-03-04 15:04:19 +00:00

30 lines
934 B
C#

using System;
using System.Collections;
using System.Collections.Generic;
using System.Web;
using System.Reflection;
using umbraco.BasePages;
using umbraco.BusinessLogic.Utils;
using umbraco.cms.businesslogic.web;
using umbraco.cms.businesslogic.workflow;
using umbraco.interfaces;
namespace umbraco.BusinessLogic.Actions
{
/// <summary>
/// Implement the IActionHandler interface in order to automatically get code
/// run whenever a document, member or media changed, deleted, created etc.
/// The Clases implementing IActionHandler are loaded at runtime which means
/// that there are no other setup when creating a custom actionhandler.
/// </summary>
/// <example>
///
/// </example>
public interface IActionHandler
{
bool Execute(Document documentObject, IAction action);
IAction[] ReturnActions();
string HandlerName();
}
}