Webiant Logo Webiant Logo
  1. No results found.

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

FacebookAuthenticationViewComponent.cs

using Microsoft.AspNetCore.Mvc;
using Nop.Web.Framework.Components;

namespace Nop.Plugin.ExternalAuth.Facebook.Components;

/// 
/// Represents view component to display login button
/// 
public class FacebookAuthenticationViewComponent : NopViewComponent
{
    /// 
    /// Invoke view component
    /// 
    /// Widget zone name
    /// Additional data
    /// View component result
    public IViewComponentResult Invoke(string widgetZone, object additionalData)
    {
        return View("~/Plugins/ExternalAuth.Facebook/Views/PublicInfo.cshtml");
    }
}