Webiant Logo Webiant Logo
  1. No results found.

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

CloudflareImagesDefaults.cs

namespace Nop.Plugin.Misc.CloudflareImages;

/// 
/// Represents plugin constants
/// 
public static class CloudflareImagesDefaults
{
    /// 
    /// Gets a plugin system name
    /// 
    public static string SystemName => "Misc.CloudflareImages";

    /// 
    /// Gets a period (in seconds) before the request times out
    /// 
    public static int RequestTimeout => 30;

    /// 
    /// Gets the base Cloudflare Images API URL
    /// 
    public static string BaseApiUrl => "https://api.cloudflare.com/client/v4/accounts/{0}/images/v1{1}";

    /// 
    /// Gets a image id pattern
    /// 
    public static string ImageIdPattern => "";

    /// 
    /// Gets a variant name pattern
    /// 
    public static string VariantNamePattern => "";
}