示例#1
0
 /// <summary>Static getter for URL part substitution</summary>
 public static string GetUmbracoUrlName(IAbstractPage that)
 {
     return(that.GetPropertyValue <string>("umbracoUrlName"));
 }
示例#2
0
 /// <summary>Static getter for Hide from Menu</summary>
 public static bool GetUmbracoNaviHide(IAbstractPage that)
 {
     return(that.GetPropertyValue <bool>("umbracoNaviHide"));
 }
示例#3
0
 /// <summary>Static getter for Redirect to page</summary>
 public static object GetUmbracoRedirect(IAbstractPage that)
 {
     return(that.GetPropertyValue("umbracoRedirect"));
 }
示例#4
0
 /// <summary>Static getter for Title Override</summary>
 public static string GetOverrideTitle(IAbstractPage that)
 {
     return(that.GetPropertyValue <string>("overrideTitle"));
 }
示例#5
0
 /// <summary>Static getter for Redirect to first sub-page</summary>
 public static bool GetRedirectFirstSubPage(IAbstractPage that)
 {
     return(that.GetPropertyValue <bool>("redirectFirstSubPage"));
 }
示例#6
0
 /// <summary>Static getter for Hide from Footer</summary>
 public static bool GetHideFromFooter(IAbstractPage that)
 {
     return(that.GetPropertyValue <bool>("hideFromFooter"));
 }
示例#7
0
 /// <summary>Static getter for Browser Title Override</summary>
 public static string GetBrowserTitleOverride(IAbstractPage that)
 {
     return(that.GetPropertyValue <string>("browserTitleOverride"));
 }
示例#8
0
 /// <summary>Static getter for Alternate Page Title for Menus</summary>
 public static string GetAltTitleMenu(IAbstractPage that)
 {
     return(that.GetPropertyValue <string>("altTitleMenu"));
 }
示例#9
0
 /// <summary>Static getter for Alternate Internal Page Title</summary>
 public static string GetAltTitleInternal(IAbstractPage that)
 {
     return(that.GetPropertyValue <string>("altTitleInternal"));
 }
示例#10
0
 /// <summary>Static getter for Alternate Breadcrumb Page Title</summary>
 public static string GetAltTitleBreadcrumb(IAbstractPage that)
 {
     return(that.GetPropertyValue <string>("altTitleBreadcrumb"));
 }