jellyfin/Jellyfin.Api/Models/ConfigurationPageInfo.cs

86 lines
2.8 KiB
C#
Raw Normal View History

2020-12-06 18:48:54 -05:00
using MediaBrowser.Common.Plugins;
2016-10-26 02:01:42 -04:00
using MediaBrowser.Controller.Plugins;
using MediaBrowser.Model.Plugins;
namespace Jellyfin.Api.Models
{
/// <summary>
/// The configuration page info.
/// </summary>
public class ConfigurationPageInfo
{
/// <summary>
/// Initializes a new instance of the <see cref="ConfigurationPageInfo"/> class.
/// </summary>
/// <param name="page">Instance of <see cref="IPluginConfigurationPage"/> interface.</param>
public ConfigurationPageInfo(IPluginConfigurationPage page)
{
Name = page.Name;
2017-09-15 02:31:28 -04:00
ConfigurationPageType = page.ConfigurationPageType;
2015-03-08 13:58:45 -04:00
2017-09-15 02:31:28 -04:00
if (page.Plugin != null)
{
DisplayName = page.Plugin.Name;
// Don't use "N" because it needs to match Plugin.Id
PluginId = page.Plugin.Id.ToString();
}
}
2016-10-26 02:01:42 -04:00
/// <summary>
/// Initializes a new instance of the <see cref="ConfigurationPageInfo"/> class.
/// </summary>
/// <param name="plugin">Instance of <see cref="IPlugin"/> interface.</param>
/// <param name="page">Instance of <see cref="PluginPageInfo"/> interface.</param>
2020-12-06 18:48:54 -05:00
public ConfigurationPageInfo(IPlugin? plugin, PluginPageInfo page)
2016-10-26 02:01:42 -04:00
{
Name = page.Name;
2017-09-15 02:31:28 -04:00
EnableInMainMenu = page.EnableInMainMenu;
2018-09-12 13:26:21 -04:00
MenuSection = page.MenuSection;
MenuIcon = page.MenuIcon;
2020-12-14 18:13:29 -05:00
DisplayName = string.IsNullOrWhiteSpace(page.DisplayName) ? plugin?.Name : page.DisplayName;
2016-10-26 02:01:42 -04:00
// Don't use "N" because it needs to match Plugin.Id
2020-12-06 18:48:54 -05:00
PluginId = plugin?.Id.ToString();
2016-10-26 02:01:42 -04:00
}
/// <summary>
/// Gets or sets the name.
/// </summary>
/// <value>The name.</value>
public string Name { get; set; }
/// <summary>
/// Gets or sets a value indicating whether the configurations page is enabled in the main menu.
/// </summary>
public bool EnableInMainMenu { get; set; }
/// <summary>
/// Gets or sets the menu section.
/// </summary>
public string? MenuSection { get; set; }
/// <summary>
/// Gets or sets the menu icon.
/// </summary>
public string? MenuIcon { get; set; }
/// <summary>
/// Gets or sets the display name.
/// </summary>
public string? DisplayName { get; set; }
/// <summary>
/// Gets or sets the type of the configuration page.
/// </summary>
/// <value>The type of the configuration page.</value>
public ConfigurationPageType ConfigurationPageType { get; set; }
/// <summary>
/// Gets or sets the plugin id.
/// </summary>
/// <value>The plugin id.</value>
public string? PluginId { get; set; }
}
}