public static MvcHtmlString StartStopIconButton(this HtmlHelper htmlHelper, bool isStart, string id) { return(MvcHtmlString.Create(string.Format(InlineImageHtmlButton, IconMap.StartStop, IconMap.StartStopOf(isStart), id))); }
public static MvcHtmlString PlusMinusIcon(this HtmlHelper htmlHelper, bool isPlus) { return(MvcHtmlString.Create(string.Format(InlineImageHtml, IconMap.PlusMinus, IconMap.PlusMinusOf(isPlus)))); }
public static MvcHtmlString LogLevelIcon(this HtmlHelper htmlHelper, string logLevel) { return(MvcHtmlString.Create(string.Format(InlineImageHtml, IconMap.LogLevels, IconMap.LogLevelsOf(logLevel)))); }
public static MvcHtmlString OkCancelIcon(this HtmlHelper htmlHelper, bool isOk) { return(MvcHtmlString.Create(string.Format(InlineImageHtml, IconMap.OkCancel, IconMap.OkCancelOf(isOk)))); }
public static MvcHtmlString GoodBadIcon(this HtmlHelper htmlHelper, bool isGood) { return(MvcHtmlString.Create(string.Format(InlineImageHtml, IconMap.GoodBad, IconMap.GoodBadOf(isGood)))); }