30 lines
920 B
C#
30 lines
920 B
C#
using Nop.Services.Plugins;
|
|
|
|
namespace Nop.Services.Cms;
|
|
|
|
/// <summary>
|
|
/// Provides an interface for creating widgets
|
|
/// </summary>
|
|
public partial interface IWidgetPlugin : IPlugin
|
|
{
|
|
/// <summary>
|
|
/// Gets a value indicating whether to hide this plugin on the widget list page in the admin area
|
|
/// </summary>
|
|
bool HideInWidgetList { get; }
|
|
|
|
/// <summary>
|
|
/// Gets widget zones where this widget should be rendered
|
|
/// </summary>
|
|
/// <returns>
|
|
/// A task that represents the asynchronous operation
|
|
/// The task result contains the widget zones
|
|
/// </returns>
|
|
Task<IList<string>> GetWidgetZonesAsync();
|
|
|
|
/// <summary>
|
|
/// Gets a type of a view component for displaying widget
|
|
/// </summary>
|
|
/// <param name="widgetZone">Name of the widget zone</param>
|
|
/// <returns>View component type</returns>
|
|
Type GetWidgetViewComponent(string widgetZone);
|
|
} |