Beispiel #1
0
        public static bool EcommerceEnabled(this IHtmlHelper htmlHelper)
        {
            var viewOptions = ViewOptions.Lookup(htmlHelper.ViewContext.HttpContext);

            return(viewOptions != null && viewOptions.EcommerceEnabled);
        }
Beispiel #2
0
        public static bool PublicRegistrationEnabled(this IHtmlHelper htmlHelper)
        {
            var viewOptions = ViewOptions.Lookup(htmlHelper.ViewContext.HttpContext);

            return(viewOptions != null && viewOptions.PublicRegistrationEnabled);
        }