Renormalize

This commit is contained in:
Stephan
2018-06-29 19:52:40 +02:00
parent c1f3de7e5c
commit 7a615133ff
1616 changed files with 273322 additions and 273322 deletions

View File

@@ -1,57 +1,57 @@
using Umbraco.Web.UI;
namespace Umbraco.Web.Models.ContentEditing
{
public static class MessagesExtensions
{
public static void AddNotification(this INotificationModel model, string header, string msg, SpeechBubbleIcon type)
{
model.Notifications.Add(new Notification()
{
Header = header,
Message = msg,
NotificationType = type
});
}
public static void AddSuccessNotification(this INotificationModel model, string header, string msg)
{
model.Notifications.Add(new Notification()
{
Header = header,
Message = msg,
NotificationType = SpeechBubbleIcon.Success
});
}
public static void AddErrorNotification(this INotificationModel model, string header, string msg)
{
model.Notifications.Add(new Notification()
{
Header = header,
Message = msg,
NotificationType = SpeechBubbleIcon.Error
});
}
public static void AddWarningNotification(this INotificationModel model, string header, string msg)
{
model.Notifications.Add(new Notification()
{
Header = header,
Message = msg,
NotificationType = SpeechBubbleIcon.Warning
});
}
public static void AddInfoNotification(this INotificationModel model, string header, string msg)
{
model.Notifications.Add(new Notification()
{
Header = header,
Message = msg,
NotificationType = SpeechBubbleIcon.Info
});
}
}
}
using Umbraco.Web.UI;
namespace Umbraco.Web.Models.ContentEditing
{
public static class MessagesExtensions
{
public static void AddNotification(this INotificationModel model, string header, string msg, SpeechBubbleIcon type)
{
model.Notifications.Add(new Notification()
{
Header = header,
Message = msg,
NotificationType = type
});
}
public static void AddSuccessNotification(this INotificationModel model, string header, string msg)
{
model.Notifications.Add(new Notification()
{
Header = header,
Message = msg,
NotificationType = SpeechBubbleIcon.Success
});
}
public static void AddErrorNotification(this INotificationModel model, string header, string msg)
{
model.Notifications.Add(new Notification()
{
Header = header,
Message = msg,
NotificationType = SpeechBubbleIcon.Error
});
}
public static void AddWarningNotification(this INotificationModel model, string header, string msg)
{
model.Notifications.Add(new Notification()
{
Header = header,
Message = msg,
NotificationType = SpeechBubbleIcon.Warning
});
}
public static void AddInfoNotification(this INotificationModel model, string header, string msg)
{
model.Notifications.Add(new Notification()
{
Header = header,
Message = msg,
NotificationType = SpeechBubbleIcon.Info
});
}
}
}