Webiant Logo Webiant Logo
  1. No results found.

    Try your search with a different keyword or use * as a wildcard.

IAdminMenu.cs

namespace Nop.Web.Framework.Menu;

/// 
/// Admin menu interface
/// 
public partial interface IAdminMenu
{
    /// 
    /// Gets the root node
    /// 
    /// A value indicating whether to show hidden records (Visible == false)
    /// 
    /// A task that represents the asynchronous operation
    /// The task result contains the root menu item
    /// 
    Task GetRootNodeAsync(bool showHidden = false);

    /// 
    /// Generates an admin menu item URL 
    /// 
    /// The name of the controller
    /// The name of the action method
    /// Menu item URL
    string GetMenuItemUrl(string controllerName, string actionName);
}