/BlogEngine/BlogEngine.NET/widgets/Page List/widget.ascx.cs
# · C# · 54 lines · 28 code · 8 blank · 18 comment · 0 complexity · e43168b904691be5d64d2dfed5135827 MD5 · raw file
- // --------------------------------------------------------------------------------------------------------------------
- // <summary>
- // The widget.
- // </summary>
- // --------------------------------------------------------------------------------------------------------------------
-
- namespace Widgets.PageList
- {
- using App_Code.Controls;
-
- /// <summary>
- /// The widget.
- /// </summary>
- public partial class Widget : WidgetBase
- {
- #region Properties
-
- /// <summary>
- /// Gets a value indicating whether IsEditable.
- /// </summary>
- public override bool IsEditable
- {
- get
- {
- return true;
- }
- }
-
- /// <summary>
- /// Gets Name.
- /// </summary>
- public override string Name
- {
- get
- {
- return "Page List";
- }
- }
-
- #endregion
-
- #region Public Methods
-
- /// <summary>
- /// The load widget.
- /// </summary>
- public override void LoadWidget()
- {
- // Nothing to load
- }
-
- #endregion
- }
- }