jellyfin/MediaBrowser.WebDashboard/Api/ConfigurationPageInfo.cs

55 lines
1.6 KiB
C#
Raw Normal View History

2016-10-26 02:01:42 -04:00
using MediaBrowser.Common.Plugins;
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 02:31:28 -04:00
public bool EnableInMainMenu { get; set; }
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 17:15:30 -04:00
public string PluginId { get; set; }
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
public ConfigurationPageInfo(IPlugin plugin, PluginPageInfo page)
{
Name = page.Name;
2017-09-15 02:31:28 -04:00
EnableInMainMenu = page.EnableInMainMenu;
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
PluginId = plugin.Id.ToString();
}
}
}