以特定语言以编程方式创建sitecore项目

时间:2014-10-16 13:35:07

标签: c# sitecore sitecore6

我正在尝试以编程方式创建一个sitecore项目。一切顺利。但我正在创作的项目是语言" EN-GB"但是创建的新项目是用语言" EN"。有没有办法在创建项目时设置语言值。

var currentDatabase = Sitecore.Configuration.Factory.GetDatabase(selectedItem.Database.Name);

    if (currentDatabase != null)
    {
        var rootItem = currentDatabase.GetItem(RootItemPath);

        if (rootItem != null)
        {
            //Create new item
            var item = rootItem.Add(selectedItem.Name, CommunityProjectTemplateId);

            if (item != null)
            {
                item.Fields.ReadAll();
                item.Editing.BeginEdit();

                try
                {
                    //Add values for the fields
                    item.Fields["Overview Body Content"].Value = selectedItem.GetStringField("ProjectOverview");
                }
                catch (Exception)
                {
                    item.Editing.EndEdit();
                }
            }
        }
    }

3 个答案:

答案 0 :(得分:9)

您需要在检索根项目之前切换上下文语言。

using (new LanguageSwitcher("en-gb"))
{
    var rootItem = currentDatabase.GetItem(RootItemPath);
    var item = rootItem.Add(selectedItem.Name, CommunityProjectTemplateId);

    // Do your editing on item here...
}

答案 1 :(得分:5)

如果您尝试在en-GB中添加项目,请确保" Root Item"你得到的是en-GB。

Language language;
Language.TryParse("en-GB", out language);
var rootItem = currentDatabase.GetItem(RootItemID, language);

之后,如果您尝试添加项目,则会使用该语言。 使用语言切换器也是一个好主意,但在改变语言环境时要小心。

答案 2 :(得分:1)

您可以在创建项目之前使用以下代码

var language = Sitecore.Globalization.Language.Parse( "en-GB" );    

Sitecore.Context.SetLanguage( language, true );

最后一行将上下文语言设置为en-GB。然后将使用该语言版本创建项目。