Webiant Logo Webiant Logo
  1. No results found.

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

BaseAdminController.cs

using Microsoft.AspNetCore.Mvc;
using Microsoft.Extensions.Options;
using Newtonsoft.Json;
using Nop.Core.Domain.Common;
using Nop.Core.Infrastructure;
using Nop.Web.Framework;
using Nop.Web.Framework.Controllers;
using Nop.Web.Framework.Mvc.Filters;

namespace Nop.Web.Areas.Admin.Controllers;

[Area(AreaNames.ADMIN)]
[AutoValidateAntiforgeryToken]
[ValidateIpAddress]
[AuthorizeAdmin]
[ValidateVendor]
[SaveSelectedTab]
[NotNullValidationMessage]
public abstract partial class BaseAdminController : BaseController
{
    /// 
    /// Creates an object that serializes the specified object to JSON.
    /// 
    /// The object to serialize.
    /// The created object that serializes the specified data to JSON format for the response.
    public override JsonResult Json(object data)
    {
        //use IsoDateFormat on writing JSON text to fix issue with dates in grid
        var useIsoDateFormat = EngineContext.Current.Resolve()?.UseIsoDateFormatInJsonResult ?? false;
        var serializerSettings = EngineContext.Current.Resolve>()?.Value?.SerializerSettings
                                 ?? new JsonSerializerSettings();

        if (!useIsoDateFormat)
            return base.Json(data, serializerSettings);

        serializerSettings.DateFormatHandling = DateFormatHandling.IsoDateFormat;
        serializerSettings.DateTimeZoneHandling = DateTimeZoneHandling.Unspecified;

        return base.Json(data, serializerSettings);
    }

}