jellyfin/MediaBrowser.WebDashboard/Api/ConfigurationPageInfo.cs

59 lines
1.8 KiB
C#
Raw Normal View History

using MediaBrowser.Common.Plugins;
2016-10-26 08:01:42 +02:00
using MediaBrowser.Controller.Plugins;
using MediaBrowser.Model.Plugins;
namespace MediaBrowser.WebDashboard.Api
{
public class ConfigurationPageInfo
{
/// <summary>
/// Gets the name.
/// </summary>
/// <value>The name.</value>
public string Name { get; set; }
2017-09-15 08:31:28 +02:00
public bool EnableInMainMenu { get; set; }
2018-09-12 19:26:21 +02:00
public string MenuSection { get; set; }
public string MenuIcon { get; set; }
2017-09-15 08:31:28 +02:00
public string DisplayName { get; set; }
/// <summary>
/// Gets 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>
2013-04-13 23:15:30 +02:00
public string PluginId { get; set; }
public ConfigurationPageInfo(IPluginConfigurationPage page)
{
Name = page.Name;
2017-09-15 08:31:28 +02:00
ConfigurationPageType = page.ConfigurationPageType;
2015-03-08 18:58:45 +01:00
2017-09-15 08:31:28 +02: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 08:01:42 +02:00
public ConfigurationPageInfo(IPlugin plugin, PluginPageInfo page)
{
Name = page.Name;
2017-09-15 08:31:28 +02:00
EnableInMainMenu = page.EnableInMainMenu;
2018-09-12 19:26:21 +02:00
MenuSection = page.MenuSection;
MenuIcon = page.MenuIcon;
2017-09-15 08:31:28 +02:00
DisplayName = string.IsNullOrWhiteSpace(page.DisplayName) ? plugin.Name : page.DisplayName;
2016-10-26 08:01:42 +02:00
// Don't use "N" because it needs to match Plugin.Id
PluginId = plugin.Id.ToString();
}
}
}