为了执行自动发布,您的最终状态应包含一个工作流操作,该操作为您完成任务。你可以看看
示例工作流
(默认情况下随Sitecore提供)-
经核准的
状态它包含子项
自动发布
,有两个字段。
类型字符串:
Sitecore.Workflows.Simple.PublishAction, Sitecore.Kernel
设置实际上执行发布的类。您可以从该类继承并实现自己的行为,提供额外的参数等。
我建议您使用dotPeek或Reflector并查找此类实现
以便您可以调整自己的代码。
参数:
deep=0
..表示递归地发布子项。
更新:
让我们看看示例工作流自动发布操作中的反编译类:
public class PublishAction
{
public void Process(WorkflowPipelineArgs args)
{
Item dataItem = args.DataItem;
Item innerItem = args.ProcessorItem.InnerItem;
Database[] targets = this.GetTargets(dataItem);
PublishManager.PublishItem(dataItem, targets, new Language[1]
{
dataItem.Language
}, (this.GetDeep(innerItem) ? 1 : 0) != 0, 0 != 0);
}
private bool GetDeep(Item actionItem)
{
return actionItem["deep"] == "1" || WebUtil.ParseUrlParameters(actionItem["parameters"])["deep"] == "1";
}
private Database[] GetTargets(Item item)
{
using (new SecurityDisabler())
{
Item obj = item.Database.Items["/sitecore/system/publishing targets"];
if (obj != null)
{
ArrayList arrayList = new ArrayList();
foreach (BaseItem baseItem in obj.Children)
{
string name = baseItem["Target database"];
if (name.Length > 0)
{
Database database = Factory.GetDatabase(name, false);
if (database != null)
arrayList.Add((object)database);
else
Log.Warn("Unknown database in PublishAction: " + name, (object)this);
}
}
return arrayList.ToArray(typeof(Database)) as Database[];
}
}
return new Database[0];
}
}
获取目标()
上面的默认示例中的方法会发布到下面指定的所有目标
/sitecore/系统/发布目标
路径如上所述,您可以使用自己的实现创建自己的类,并从工作流操作定义项引用该类。