3

在论坛上也问过这个问题,但目前还没有运气。我需要做的是在给定页面上设置每个内容块的 HTML 内容。看来我可以设置 html 值没问题,但保存它并不会更新实际页面。

我想知道是否是因为需要对控件进行某种保存调用。似乎没有任何方法可用于此类操作。

foreach (var c in duplicated.Page.Controls)
{
    // go through the properties, se the ID to grab the right text
    foreach (var p in c.Properties)
    {
        if (p.Name == "ID")
        {
            var content = pageContent.Where(content_pair => content_pair.Key == p.Value).SingleOrDefault();
            var control = pageManager.LoadControl(c);
            if (control is ContentBlock)
            {
                var contentBlock = pageManager.LoadControl(c) as ContentBlock;
                contentBlock.Html = content.Value;
            }
        }
    }
}
pageManager.SaveChanges(); */

WorkflowManager.MessageWorkflow(duplicated.Id, typeof(PageNode), null, "Publish", false, bag);
4

1 回答 1

4

下面的代码可以帮助你实现你所需要的。
它将首先按标题获取页面(我正在寻找标题为“重复”的页面,因为它是您的代码所暗示的)。
它会生成当前页面的新草稿,然后检查其控件。
然后在 foreach 循环中迭代被检测为内容块的控件。
如 foreach 循环内的注释中所写,您可以通过控件的显式 ID(通过名为“ID”的属性)或相关的共享内容块(通过名为“SharedContentID”的属性)或任何其他条件(或忽略完全是这种情况,这将导致更新页面上的所有控件。
一旦我们手头有了要更新的控件,您就可以根据项目的本地化设置来设置它的新值。
之后,草稿被保存并发布,并且可以选择为其创建一个新版本。

PageManager pageManager = PageManager.GetManager();
VersionManager vmanager = VersionManager.GetManager();
PageNode duplicated = pageManager.GetPageNodes().FirstOrDefault(p => p.Title == "duplicate");

if (duplicated != null)
{
    var draft = pageManager.EditPage(duplicated.Page.Id, true);
    string contentBlockTypeName = typeof(ContentBlock).FullName;

    PageDraftControl[] contentBlocks = draft.Controls.Where(contentBlock => contentBlock.ObjectType == contentBlockTypeName).ToArray();
    foreach (PageDraftControl contentBlock in contentBlocks)
    {
        Guid contentBlockId = contentBlock.Id;
        //User "SharedContentID" if you are looking up controls which are linked to a shared content block of a specific ID.
        //If you you are trying to locate a specific control by its own ID, use the explicit "ID" property instead of "SharedCotentID"
        if (contentBlock.Properties.Where(prop => prop.Name == "SharedContentID" && prop.Value.ToString() == contentItemIdstr).FirstOrDefault() != null)
        {
            ControlProperty htmlProperty = contentBlock.Properties.Where(prop => prop.Control.Id == contentBlockId && prop.Name == "Html").FirstOrDefault();
            if (htmlProperty != null)
            {
                if (AppSettings.CurrentSettings.Multilingual)
                {
                    htmlProperty.GetString("MultilingualValue").SetString(CultureInfo.CurrentUICulture, "New Value");
                }
                else
                {
                htmlProperty.Value = "New Value";
                }
            }
        }
    }
    draft = pageManager.SavePageDraft(draft);
    draft.ParentPage.LockedBy = Guid.Empty;
    pageManager.PublishPageDraft(draft);
    pageManager.DeletePageTempDrafts(draft.ParentPage);

    //Use the 2 next lines to create  a new version of your page, if you wish.
    //Otherwise the content will be updated on the current page version.
    vmanager.CreateVersion(draft, draft.ParentPage.Id, true);
    vmanager.SaveChanges();

    pageManager.SaveChanges();
}

我希望这段代码有所帮助。

阿隆。

于 2012-08-17T14:29:36.187 回答