Table of Contents

Class PageInsertExtensions

Namespace
Dynamicweb.Content.Data
Assembly
Dynamicweb.dll
[Obsolete("Do not use")]
public static class PageInsertExtensions
Inheritance
PageInsertExtensions
Inherited Members

Methods

ContentTypeFormattedValue(Page)

Determines the insert value for the Page.ContentType
[Obsolete("Do not use")]
public static string ContentTypeFormattedValue(this Page page)

Parameters

page Page
The page for which to determine the insert value

Returns

string
null (Nothing) if ContentType has not been set, otherwise the actual value of the ContentType property

NavigationGroupSelectorInsertValue(Page)

Determines the insert value for the Page.NavigationGroupSelector depending on other values
[Obsolete("Do not use")]
public static string NavigationGroupSelectorInsertValue(this Page page)

Parameters

page Page
The page for which to determine the insert value

Returns

string
null (Nothing) if NavigationSettings has not been set, otherwise a string representation of group ids

NavigationIncludeProductsInsertValue(Page)

Determines the insert value for the Page.NavigationIncludeProducts depending on other values
[Obsolete("Do not use")]
public static bool NavigationIncludeProductsInsertValue(this Page page)

Parameters

page Page
The page for which to determine the insert value

Returns

bool
null (Nothing) if NavigationSettings has not been set, otherwise a value indicating if navigation should include products

NavigationMaxLevelsInsertValue(Page)

Determines the insert value for the Page.NavigationMaxLevels depending on other values
[Obsolete("Do not use")]
public static string NavigationMaxLevelsInsertValue(this Page page)

Parameters

page Page
The page for which to determine the insert value

Returns

string
null (Nothing) if NavigationSettings has not been set, otherwise a string representation of the number of levels to display in the navigation tree

NavigationParentTypeInsertValue(Page)

Determines the insert value for the Page.NavigationParentType depending on other values
[Obsolete("Do not use")]
public static string NavigationParentTypeInsertValue(this Page page)

Parameters

page Page
The page for which to determine the insert value

Returns

string
null (Nothing) if NavigationSettings has not been set, otherwise a string representation of the EcommerceNavigationParentType enum value

NavigationProductPageInsertValue(Page)

Determines the insert value for the Page.NavigationProductPage depending on other values
[Obsolete("Do not use")]
public static string NavigationProductPageInsertValue(this Page page)

Parameters

page Page
The page for which to determine the insert value

Returns

string
null (Nothing) if NavigationSettings has not been set, otherwise a link to the Product page

NavigationProviderInsertValue(Page)

Determines the insert value for the Page.NavigationProvider depending on other values
[Obsolete("Do not use")]
public static string NavigationProviderInsertValue(this Page page)

Parameters

page Page
The page for which to determine the insert value

Returns

string
null (Nothing) if NavigationSettings has not been set, otherwise the id of the shop being the navigation provider

NavigationShopSelectorInsertValue(Page)

Determines the insert value for the Page.NavigationShopSelector depending on other values
[Obsolete("Do not use")]
public static string NavigationShopSelectorInsertValue(this Page page)

Parameters

page Page
The page for which to determine the insert value

Returns

string
null (Nothing) if NavigationSettings has not been set, otherwise the id of the shop being the root node

SerializedCreationRules(Page)

Determines the insert value for the Page.CreationRules depending on other values
[Obsolete("Do not use")]
public static string SerializedCreationRules(this Page page)

Parameters

page Page
The page for which to determine the insert value

Returns

string
if Page.CreationRules has a value, a serialized representation of that value vill be returned, otherwise an empty string

UseEcomGroupsInsertValue(Page)

Determines the insert value for the Page.UseEcomGroups depending on other values
[Obsolete("Do not use")]
public static bool? UseEcomGroupsInsertValue(this Page page)

Parameters

page Page
The page for which to determine the insert value

Returns

bool?
null (Nothing) if NavigationSettings has not been set, otherwise true or false
To top